* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  margin: 0;
}

@font-face {
  font-family: 'Krona One';
  src: url('../Assets/Fonts/KronaOne-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'La Belle Aurore';
  src: url('../Assets/Fonts/LaBelleAurore-Regular.ttf') format('truetype');
}

body {
  font-family: fantasy;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: white;
  position: relative;
  background: linear-gradient(to bottom, #131e2c, #131e2c);
  min-height: 100vh;
}

body[data-vocation="nautica"] {
  --hero-title-gradient: linear-gradient(90deg, #ffffff, #837dcc, #ff6969);
  --hero-tagline-color: #ffffff;
  --hero-background: linear-gradient(to bottom, #0d1625, #242424);
}

body[data-vocation="electronics"] {
  --hero-title-gradient: linear-gradient(90deg, #ffffff, #4fc3f7, #26a69a);
 --hero-tagline-color: #ffffff;
  --hero-background: linear-gradient(to bottom, #0d1625, #09222c);
}

body[data-vocation="automotive"] {
  --hero-title-gradient: linear-gradient(90deg, #ffffff, #ad695d, #d8834a);
 --hero-tagline-color: #ffffff;
  --hero-background: linear-gradient(to bottom, #0d1625, #110a06);
}

body[data-vocation="fisheries"] {
  --hero-title-gradient: linear-gradient(90deg, #ffffff, #50b9ff, #fcff55);
 --hero-tagline-color: #ffffff;
  --hero-background: linear-gradient(to bottom, #0d1625, #0c0b01);
}

body[data-vocation="teknika"] {
  --hero-title-gradient: linear-gradient(90deg, #ffffff, #f58686, #ff3232);
 --hero-tagline-color: #ffffff;
  --hero-background: linear-gradient(to bottom, #0d1625, #0e0101);
}

body[data-vocation="design"] {
  --hero-title-gradient: linear-gradient(90deg, #ffffff, #f586b4, #8132ff);
 --hero-tagline-color: #ffffff;
  --hero-background: linear-gradient(to bottom, #0d1625, #120316);
}

body[data-vocation="culinary"] {
  --hero-title-gradient: linear-gradient(90deg, #ffffff, #ddf586, #39ff32);
 --hero-tagline-color: #ffffff;
  --hero-background: linear-gradient(to bottom, #0d1625, #010a01);
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(21, 80, 148, 0.9) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(59, 87, 114, 0.9) 0%, transparent 40%);
  backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

#loading-screen.fade-out {
  animation: coolFadeOut 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.loader {
  position: relative;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  z-index: 3;
}

.progress-ring {
  width: 100%;
  height: 100%;
  border: 10px solid rgba(255, 255, 255, 0.452);
  border-top-color: #4d86f0;
  border-top-style: groove;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loading-logo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}

.fade-out .loader {
  animation: loaderDissolve 1.2s ease-out forwards;
}

.fade-out .progress-ring {
  animation: spin 1.2s linear infinite, ringCollapse 1.2s ease-out forwards;
}

.fade-out .loading-logo img {
  animation: logoShrink 1.2s ease-out forwards;
}

/* Vignette Overlay Image */
.Vignette_Image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  pointer-events: none;
}

.Vignette_Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Navbar settings */
.Navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  min-height: 60px;
  z-index: 1099;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
}

.Navbar {
  position: relative;
  top: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overscroll-behavior: contain;
  pointer-events: all;
}

/* Back Button */
.back-btn {
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background: linear-gradient(to bottom, rgba(43, 56, 82, 0.8), rgba(23, 32, 56, 0.8));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: fixed;
  z-index: 1102;
}

.back-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.Navbar-container.active .back-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Search Box */
.search-box {
  position: absolute;
  top: -10px;
  right: 95px;
  width: calc(100vw - 105px - 10px);
  height: 70px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(43, 56, 82, 0.9),
    rgba(23, 32, 56, 0.9)
  );
  border-radius: 500px;
  border: 2px solid rgb(255, 255, 255);
  padding: 6px 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(120px) scale(0.1);
  transition: all 0.2s ease;
  transform-origin: center right;
  z-index: 1101;
}

.search-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) scale(0.8);
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-family: sans-serif;
  font-size: 1.3rem;
  padding: 8px 10px;
  flex: 1;
  width: 100%;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.6);
}

.search-box .search-btn {
  border: none;
  background: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 10px;
  scale: 1.5;
}

/* Hamburger Button */
.hamburger-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background: linear-gradient(to bottom, rgba(43, 56, 82, 0.8), rgba(23, 32, 56, 0.8));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1102;
}

.hamburger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.hamburger-btn.active {
  position: relative;
  border: none;
  transform: scale(1.3);
  background: linear-gradient(to bottom, rgba(60, 70, 100, 0.9), rgba(30, 40, 70, 0.9));
}

.hamburger-btn.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(90deg, rgb(0, 110, 255) 0%, rgb(0, 110, 255) 25%, rgb(238, 255, 0) 50%, rgb(0, 110, 255) 75%, rgb(0, 110, 255) 100%);
  background-size: 400% 100%;
  animation: movingBorder 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.hamburger-btn:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.menu-item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background: linear-gradient(
    to bottom,
    rgba(43, 56, 82, 0.8),
    rgba(23, 32, 56, 0.8)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-btn {
  top: 0;
  right: 55px;
  transform: translateY(-10px) translateX(115px);
  scale: 0;
  z-index: 1101;
}

.cart-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(60px);
  scale: 1;
  transition-duration: 0.3s;
}

/* Home Button */
.home-btn {
  top: 0;
  left: 5px;
  transform: translateY(-10px) translateX(-15px);
  scale: 0;
  z-index: 1101;
}

.home-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(90px);
  scale: 1;
  transition-duration: 0.4s;
}

/* Hero Section */
.Category-Hero {
  position: relative;
  background: var(--hero-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  border-bottom: 2px solid rgba(179, 179, 179, 0.3);
}

.hero-content {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.underwater-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.Category-Hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background:
    linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.144), rgba(255, 255, 255, 0));
  border: 1px solid var(--hero-glass-border);
  -webkit-backdrop-filter: saturate(130%);
  backdrop-filter: saturate(130%);
  animation: glassSlide 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  z-index: 1;
  pointer-events: none;
}

.Vocation-Icon {
  display: block;
  margin: 12px auto 16px auto;
  width: 150px;
  filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, 0.789));
  animation: floatIcon 4s ease-in-out infinite;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-family: 'Krona One', sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 5px 12px rgba(0, 0, 0, 0.789);
  position: relative;
  z-index: 3;
}

.hero-title::before,
.hero-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #69aaff, transparent);
  transform: translateY(-50%);
}

.hero-title::before { left: -80px; }
.hero-title::after { right: -80px; }

.hero-tagline {
  font-family: 'La Belle Aurore', cursive;
  font-size: 1.4rem;
  opacity: 0.8;
  margin-top: 10px;
  text-align: center;
  color: var(--hero-tagline-color);
  text-shadow: 0px 5px 12px rgba(0, 0, 0, 0.789);
  z-index: 3;
  position: relative;
}

.ocean-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
}

/* Product List Section */
.Product-List {
  position: relative;
  background: var(--hero-background);
  min-height: 100vh;
  padding: 30px 0;
  z-index: 1;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 30px);
  margin-bottom: 70px;
  flex-wrap: wrap;
  padding: 0 clamp(10px, 2vw, 20px);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: clamp(5px, 1vw, 10px);
  background: rgba(0, 0, 0, 0.3);
  padding: clamp(10px, 1.5vw, 15px) clamp(15px, 2vw, 20px);
  border-radius: 15px;
  border: 1px solid rgba(179, 179, 179, 0.3);
  backdrop-filter: blur(10px);
  min-width: 0;
  position: relative;
}

.filter-group label {
  font-family: 'Krona One', fantasy;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-group select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: white;
  padding: clamp(5px, 0.8vw, 8px) clamp(10px, 1.5vw, 12px);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-family: 'Krona One', sans-serif;
  outline: none;
  cursor: pointer;
  transition: all 0.1s ease;
  min-width: 100px;
  flex: 1;
}

.filter-group select option {
  background: rgb(42, 42, 42);
  color: white;
}

.filter-group select:hover {
  background: rgba(0, 0, 0, 0.3);
}

.filter-group::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgb(0, 110, 255) 0%,
    rgb(0, 110, 255) 25%,
    rgb(238, 255, 0) 50%,
    rgb(0, 110, 255) 75%,
    rgb(0, 110, 255) 100%
  );
  background-size: 400% 100%;
  animation: movingBorder 3s linear infinite;
  z-index: -1;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 3px;
  box-sizing: border-box;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 100px 10px;
  justify-items: center;
}

.products-grid::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  border: 3px solid rgba(192, 192, 192, 0.2);
  border-radius: 15px;
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(192, 192, 192, 0.05) 0px,
      rgba(192, 192, 192, 0.05) 5px,
      transparent 5px,
      transparent 10px
    );
  z-index: -1;
  pointer-events: none;
}

.product-card {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #0B327C;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

.background-layer {
  position: absolute;
  top: 0;
  left: 20%;
  width: 150%;
  height: 100%;
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 500px;
  z-index: 0;
  opacity: 0.2;
  filter: blur(4px);
}

.product-image, .product-info {
  position: relative;
  z-index: 1;
}

.product-image {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 5px solid #fff;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s ease-in-out;
}

.product-info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.product-name {
  font-family: 'Krona One', sans-serif;
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: left;
  filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.459));
}

.product-stock {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 10px;
  font-family: 'Krona One', sans-serif;
  font-size: 1rem;
  color: #9fdfff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: left;
  filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.459));
}

.product-stock i {
  font-size: 1.5rem;
}

.product-stock.in-stock i.bi-check-circle-fill {
  color: #00ff64;
}

.product-stock.out-of-stock i.bi-x-circle-fill {
  color: #ff5252;
}

.product-price {
  width: 100%;
  font-size: 1.5rem;
  font-family: monospace;
  color: #00FF1E;
  text-align: left;
  margin: 0;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.3);
  min-width: 0;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.473));
  border: none;
  border-radius: 20px;
  padding: 10px;
}

.product-image img:hover {
  transform: scale(1.2);
}

.btn-detail {
  width: 100%;
  padding: 5px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  border: 2px solid white;
  border-radius: 20px;
  font-family: 'Krona One', sans-serif;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  text-transform: uppercase;
}

.btn-detail i {
  font-size: 1.8rem;
}

.btn-detail:hover {
  background: linear-gradient(to bottom, #93B5FF, #3A5FC4);
  text-decoration: underline;
  transform: scale(1.05);
}

.btn-detail:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  border-color: #999999;
}

/* Fish Animation */
.fish {
  position: absolute;
  white-space: pre;
  font-family: monospace;
  font-weight: bold;
  line-height: 1.2;
  pointer-events: none;
  font-size: 20px;
  animation: swim linear forwards;
  color: rgba(179, 179, 179, 0.6);
}

.fish.flip {
  transform: scaleX(-1);
  animation: swim-reverse linear forwards;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, #5F73A4, #1C3372);
  color: #fff;
  padding: 5px 0;
  text-align: center;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-Header {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo {
  width: clamp(40px, 5vw, 50px);
  height: auto;
}

.footer-title {
  font-size: clamp(1.25rem, 1.6vw, 2rem);
  font-family: 'Krona One', sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: underline;
  line-height: 1;
}

.contact-btn {
  margin: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  color: white;
  border: 2px solid white;
  border-radius: 25px;
  padding: 9px 61px;
  font-size: 15px;
  font-family: 'Krona One';
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  gap: 8px;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
  color: #ffffff;
  text-decoration: underline;
}

.footer .social-btns .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  border: 2px solid white;
  border-radius: 25px;
  padding: 14px 25px;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: fit-content;
  width: fit-content;
  transition: all 0.1s;
}

.footer .social-btns a.YouTube:hover .bi {
  background: linear-gradient(45deg, #ff3a3a, #cc0000);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .social-btns a.TikTok:hover .bi {
  background: linear-gradient(45deg, #40f9ff, #000000, #c71585);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .social-btns a.Instagram:hover .bi {
  background: linear-gradient(45deg, #f09433, #dc2743, #cc2366, #c623cc, #5718bc);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .social-btns a.WhatsApp:hover .bi {
  background: linear-gradient(45deg, #25d366, #1ca851, #1a7e42, #18683f, #0e532b);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .copyright {
  font-size: 0.8rem;
  margin-top: 20px;
  font-family: 'Krona One';
  opacity: 0.7;
}

.footer-tagline {
  margin: 7px;
  font-size: clamp(1.1rem, 1.2vw, 1.5rem);
  font-family: 'La Belle Aurore', cursive;
  opacity: 0.85;
}

.footer-nav-box {
  display: inline-block;
}

.footer-nav-text {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  font-size: 1.1rem;
  font-family: 'Krona One', sans-serif;
  text-align: center;
  border: 2px solid white;
  border-radius: 25px;
  padding: 7px 15px;
  margin: 13px;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  font-weight: bold;
  margin-bottom: 12px;
  color: white;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-family: 'Krona One', sans-serif;
  text-align: center;
  border: 2px solid white;
  border-radius: 25px;
  padding: 15px 15px;
  margin: 1px;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05) rotate(-2deg);
  color: #ffffff;
  text-decoration: underline;
}

/* Animations */
@keyframes glassSlide {
  0% { transform: translateX(-100%) skewX(-10deg); }
  100% { transform: translateX(600%) skewX(-10deg); }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  100% { transform: translateY(-10px) translateX(20px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes coolFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes loaderDissolve {
  0% { transform: scale(1); opacity: 1; }
  40% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(0.4); opacity: 0; }
}

@keyframes ringCollapse {
  0% { 
    transform: rotate(0deg) scale(1); 
    border-width: 10px;
    opacity: 1;
  }
  40% { 
    transform: rotate(144deg) scale(1.2); 
    border-width: 15px;
    opacity: 0.8;
  }
  100% { 
    transform: rotate(360deg) scale(0.2); 
    border-width: 2px;
    opacity: 0;
  }
}

@keyframes moveParticles {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

@keyframes logoShrink {
  0% { 
    transform: scale(1) rotate(0deg); 
    opacity: 1;
    filter: brightness(1);
  }
  30% { 
    transform: scale(1.15) rotate(45deg); 
    opacity: 0.9;
    filter: brightness(1.3);
  }
  70% { 
    transform: scale(0.7) rotate(180deg); 
    opacity: 0.3;
    filter: brightness(0.7);
  }
  100% { 
    transform: scale(0.1) rotate(270deg); 
    opacity: 0;
    filter: brightness(0.3);
  }
}

@keyframes backgroundBubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  70% {
    opacity: 0.5;
    transform: translateY(-70vh) scale(1.1);
  }
  100% {
    transform: translateY(-100vh) scale(1.3);
    opacity: 0;
  }
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    transform: translateY(-10px) translateX(calc(var(--drift) * 0.1)) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50px) translateX(calc(var(--drift) * 0.5)) scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-120px) translateX(var(--drift)) scale(0.8);
    opacity: 0;
  }
}

@keyframes swim {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(calc(100vw + 200%));
  }
}

@keyframes swim-reverse {
  0% {
    transform: translateX(calc(100vw + 200%)) scaleX(-1);
  }
  100% {
    transform: translateX(-200%) scaleX(-1);
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

@keyframes seaweedSway {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-8deg);
  }
}

@keyframes movingBorder {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: no-preference) {
  .marquee-text span {
    transition: transform 0.5s ease, color 0.5s ease, text-shadow 0.5s ease;
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .vocation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .vocation-card {
    padding: 25px;
  }
  
  .vocation-header {
    gap: 15px;
  }
  
  .vocation-logo {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .vocation-info h3 {
    font-size: 1.3rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    margin-bottom: 40px;
  }
  
  .vocation-section {
    padding: 60px 0 80px 0;
  }
  
  .vocation-card {
    padding: 20px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 1025px) {
  .search-box {
    width: 725px;
  }
}