/* Global Color Variables */
@import url("https://fonts.googleapis.com/css2?family=Freeman&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Just+Me+Again+Down+Here&display=swap");

:root {
  --primary-dark: #000000;
  --secondary-dark: #2a2a2a;
  --accent-gold: #f5df9f;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --border-dark: #333333;
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --faq-background: #222123;
  --faq-item-background: #2f2d30;
  --faq-item-text: #faeade;
  --brown: #6a442f;
  /* Product Carousel Colors */
  --product-card-bg: #ffffff;
  --product-header-gradient-start: #f5df9f;
  --product-header-gradient-end: #f5df9f;
  --product-pedestal-bg: #6a442f;
  --product-image-bg-start: #ffffff;
  --product-image-bg-end: #f9f9f9;
  --product-price-green: #22c55e;
  --product-price-gray: #000000;
  --product-shadow: rgba(0, 0, 0, 0.15);
  --product-shadow-hover: rgba(0, 0, 0, 0.25);
  --product-button-bg: rgba(255, 255, 255, 0.9);
  --product-button-white: #ffffff;
}

.original-price {
  text-decoration: line-through !important;
  color: var(--text-gray) !important;
}

.shop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn-prod {
  border: 1px solid var(--accent-gold) !important;
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--accent-gold) !important;
  background-color: #000000 !important ;
  padding: 0.8rem 2rem;
  border-radius: 10px !important;
  cursor: pointer !important;
  margin: 0 auto;

  margin-top: 3rem;
  margin-bottom: 2rem;

  cursor: pointer !important;

  z-index: 100;
  transition: all 0.3s ease !important;
  text-decoration: none !important;

  display: block;
}

.btn-prod:hover {
  background-color: var(--accent-gold) !important;
  color: #000000 !important;
}

.shop {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shop .container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.shop .vector-background {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.shop .vector-background-img {
  height: 700px;
  max-height: 100%;
  width: 100vw;
  object-fit: fill;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  padding: 0%;
  margin: 0%;

  width: 100%;
  height: 100%;

  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.main-title {
  font-size: 5.5rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Freeman", sans-serif;
}
/* 
  .main-title-text {
    animation: main-title-text 1s ease-in-out forwards !important;
  } */

.main-title-highlight {
  background-color: var(--primary-dark) !important;

  display: flex;
  justify-content: center;
  align-items: center;
  rotate: -5deg;
  margin-top: -1rem;
  font-family: "Freeman", sans-serif;

  /* animation: main-title-highlight-text 1s ease-in-out forwards; */
}

.main-title-highlight-text {
  color: var(--brown) !important;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  margin-left: 0rem;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-gold);
  font-family: "Freeman", sans-serif;

  margin: 0.5rem;

  /* animation: main-title-highlight-text 1s ease-in-out forwards; */
}

@keyframes main-title-highlight-text {
  0% {
    width: 0;
    overflow: hidden;
  }
  100% {
    width: 100%;
    overflow: visible;
  }
}

@keyframes main-title-text {
  0% {
    width: 0;
    overflow: hidden;
  }
  100% {
    width: 100%;
    overflow: visible;
  }
}

/* Typewriter effect for individual letters */
@keyframes typewriter-letter {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure typewriter letters work properly */
.typewriter-letter {
  display: inline-block !important;
  opacity: 0;
  transform: translateY(20px);
}

.letter-space {
  display: inline-block !important;
  width: 0.25em;
}

/* -----------------------------------------Hero Section ------------------------------------------ */

/* Navigation Bar */
.header {
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0);

  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: -5px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.315) !important;
  padding: 1rem 0;

  width: 80vw;
  max-width: 1000px;

  backdrop-filter: blur(10px);

  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 0px solid #ffffff73 !important;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  width: 60px;
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #fff !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
}

.nav-icons i {
  color: #fff !important;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-icons i:hover {
  color: var(--accent-gold);
}

/* Hero Background Elements */
.hero {
  background: var(--primary-dark);
  /* min-height: 100vh; */
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pop-up {
  position: absolute;
  top: 100px;
  right: 5vw;
  width: auto;
  height: 250px;
  background-color: rgb(0, 0, 0);
  margin-left: 5vw;
  max-width: 600px;

  border-radius: 10px;
  border: 1px solid #ffffff73;

  z-index: 20;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

@media (max-width: 768px) {
  .pop-up {
    display: none;
  }

  .navbar {
    background-color: transparent !important;
    padding: 1rem 0;

    width: 100vw;
    max-width: 100vw;

    backdrop-filter: blur(10px);

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid #ffffff73;
    border-radius: 0px;
    border-left: none;
    border-right: none;
  }
}

.pop-up .pop-up-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  position: relative;
}

.pop-up-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 100%;
}

.pop-up .content-txt {
  height: 100%;
  max-height: 100%;
  justify-content: center;
  align-items: center;

  padding: 1rem;

  width: 0;
  display: none;
}

.pop-up .content-txt.active {
  display: flex;
  width: 100%;

  animation: popup-animation 1s ease-in-out forwards;
}

.pop-up-content-container.active {
  animation: popup-animation 1s ease-in-out forwards;
}

@keyframes popup-animation {
  0% {
    width: 100%;
    opacity: 0;
    transform: translatex(100%);
  }
  100% {
    width: 100%;
    opacity: 1;
    transform: translateX(0);
  }
}

.pop-up .content-txt p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-gold) !important;
  text-align: left;
  line-height: 1.2;

  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  text-wrap: balance;
}

.pop-up-content-open {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  width: 30px;
  object-fit: contain;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  transition: transform 0.3s ease;
}

.pop-up-content-open:hover {
  transform: scale(1.1);
}

.pop-up-content-open.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pop-up-content-open img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.pop-up-content-close {
  position: absolute;
  top: 10px;
  right: 10px;

  height: 30px;
  width: 30px;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: rgb(199, 197, 197);
  border-radius: 50%;

  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.pop-up-content-close.active {
  opacity: 1;
  pointer-events: all;
}

.pop-up-content-close:hover {
  background-color: rgb(179, 177, 177);
  transform: scale(1.05);
}

.pop-up-content-close span {
  font-size: 1.4rem;
  color: rgb(202, 16, 16);
}

.pop-up .pop-up-content-title {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.pop-up .pop-up-content-title.top-title {
  padding-top: 1rem;
  margin-bottom: -3rem;
}

.pop-up .pop-up-content-title span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up .pop-up-content img {
  width: 80%;
  height: 100px;
  object-fit: contain;
}

.hero .overlay-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: start;

  z-index: 1;
}

.hero .overlay-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;

  position: relative;
  z-index: 1;
}

.hero .overlay-container .left-overlay {
  width: 50vw;
  height: 70%;
  object-fit: contain;

  position: absolute;
  left: -15vw;
  top: 0;
}

.hero .overlay-container .center-overlay {
  width: 100%;
  height: 50%;
  object-fit: contain;

  position: absolute;
  left: 0%;
  top: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .overlay-container .right-overlay {
  width: 50vw;
  height: 70%;
  object-fit: contain;

  position: absolute;
  right: -15vw;
  top: 0;
}

.moveLeft {
  animation: moveLeft 1.5s ease-in-out forwards;
}

.moveRight {
  animation: moveRight 1.5s ease-in-out forwards;
}

.moveCenter {
  animation: moveCenter 1.5s ease-in-out forwards;
}

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

@keyframes moveRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes moveCenter {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

/* Hero Main Content */
.hero .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  height: 900px;
  width: 100%;
  display: flex;
  justify-content: center;

  align-items: stretch;

  position: relative;
  z-index: 3;
}

.hero .top-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  object-fit: fill;
  z-index: 2;
}

.hero .bottom-shadow {
  position: absolute;
  left: 0;
  top: 40vh;
  width: 100%;
  height: 100vh;
  object-fit: fill;
  z-index: 7;
  /* background-color: red; */
}

.hero .hero-main {
  height: 100%;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;

  position: relative;
  z-index: 5;
}

.hero .hero-tagline {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

/* Hero Tagline */
.hero .hero-tagline h1 {
  font-size: 4rem;
  height: 100%;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

  z-index: 5;
}

.hero .hero-tagline p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  position: relative;
  z-index: 5;
}

.hero .hero-tagline p img {
  width: 50px;
  height: 50px;
}

.hero .hero-tagline p span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: var(--accent-gold);
}

/* Hero Product Display */
.hero .hero-product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.hero .product-main {
  position: relative;
  z-index: 3;
}

.hero .feature-product-container {
  z-index: 3;

  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 0px;
}

.hero .feature-product {
  height: 500px;
  width: auto;

  rotate: 10deg;

  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.moveup {
  animation: moveUp 1s ease-in-out !important;
  transition: all 0.3s ease;
  transform-origin: center;
  transform: translateY(0px) rotate(10deg);
}

@keyframes moveUp {
  0% {
    transform: translateY(100%) rotate(0deg);
    display: none;
  }
  50% {
    display: flex;
  }
  100% {
    transform: translateY(0px) rotate(10deg);
  }
}

.zoomIn {
  animation: zoomIn 1s ease-in-out !important;
  transition: all 0.3s ease;
  transform-origin: center;
  transform: scale(1);
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.hero .main-product {
  width: 250px;
  height: 350px;
  object-fit: contain;
  transform: rotate(-15deg);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero .product-overlay {
  position: absolute;
  z-index: 2;
  transform: translateX(-50px) translateY(-30px) rotate(15deg);
}

.hero .overlay-product {
  width: 200px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Bottom Product Showcase */
.hero .product-showcase {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0;
  z-index: 50;

  width: 100%;
}

.hero .showcase-container-wrapper {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.hero .showcase-container {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;

  overflow: visible !important;
}

.home .showcase-content {
  width: 100% !important;
  padding: 0 0.5rem !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem !important;

  position: relative !important;
  z-index: 3 !important;
}

/* .hero .black-shadow-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;

    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.648476) 77.18%,
      rgba(0, 0, 0, 0.69) 100%
    );
    transform: matrix(0.02, -1, 1, 0.01, 0, 0);

    z-index: 10;
  }

  .hero .black-shadow-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 100%;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.648476) 77.18%, rgba(0, 0, 0, 0.69) 100%);
  transform: matrix(-0.02, -1, -1, 0.01, 0, 0);


    z-index: 10;
  } */

.hero .product-card {
  /* background: rgba(255, 255, 255, 0.05); */
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 0.5rem !important;
  position: relative !important;
  overflow: visible !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  height: 400px !important;
}

.hero .product-card:hover {
  transform: translateY(-5px);
}

.hero .card-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 1;

  border-radius: 12px;
}

.hero .product-card:nth-child(1) .card-highlight {
  clip-path: polygon(0 0, 100% 30px, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 30px, 100% 100%, 0% 100%);
  height: 400px;
}

.hero .product-card:nth-child(2) .card-highlight {
  clip-path: polygon(0 0, 100% 20px, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 20px, 100% 100%, 0% 100%);
  height: 340px;
}

.hero .product-card:nth-child(3) .card-highlight {
  height: 320px;
}

.hero .product-card:nth-child(4) .card-highlight {
  clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
  height: 340px;
}

.hero .product-card:nth-child(5) .card-highlight {
  clip-path: polygon(0 30px, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 30px, 100% 0, 100% 100%, 0% 100%);
  height: 400px;
}

.hero .card-highlight.red {
  background: radial-gradient(
    87.09% 84.64% at 50% 48.59%,
    #96372e 0%,
    #5d221d 55.84%,
    #30120f 100%
  );
}

.hero .card-highlight.yellow {
  background: radial-gradient(
    85.28% 82.74% at 49.92% 29.69%,
    rgba(251, 185, 17, 0.78) 0%,
    #823c0a 100%
  );
}

.hero .card-highlight.green {
  background: radial-gradient(
    94.3% 91.23% at 50% 48.38%,
    #a06b43 0%,
    #3a2718 100%
  );
}

.hero .card-highlight.magenta {
  background: radial-gradient(
    72.75% 68.55% at 50% 47.11%,
    #c82e2b 0%,
    #621615 100%
  );
}

.hero .card-highlight.yellow-id {
  background: radial-gradient(
    108.71% 104.75% at 50% 48.18%,
    #c2d30e 0%,
    #a96d0c 100%
  );
}

.hero .product-image {
  width: 100%;
  height: 90%;
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem;

  position: relative;
  z-index: 30;
}

.hero .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  transition: all 0.3s ease;
}

.hero .product-card:hover .product-image img {
  transform: translateY(-80px) scale(1);
  rotate: -30deg;
  transition: all 0.3s ease;
  width: 70%;
  height: 70%;
  z-index: 100;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero .product-info {
  position: relative;
  z-index: 3;

  height: 10%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}

.hero .content-container {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  display: none;

  background-color: #fff;
  border-radius: 12px;
  padding: 0.5rem 0;
  gap: 0.15rem;
}

.hero .product-card:hover .product-info {
  height: 100%;
  margin-top: -100%;
}

.hero .product-card:hover .content-container {
  display: flex;
}

.hero .product-info h3 {
  color: var(--accent-gold);
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero .product-card:hover .product-info h3 {
  font-size: 3rem;
  line-height: 1;
}

.hero .content-container p {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  padding: 0.15rem 0.5rem;
}

.hero .content-container .br2 {
  background-color: #f1f1f1;
}

.hero .content-container .label {
  font-size: 0.8rem;
  font-weight: bold;
}

.hero .content-container .value {
  font-size: 0.8rem;
  font-weight: bold;
}

/* Removed Swiper-specific styles - now using grid layout */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  /* Hero Main Content */
  .hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    height: 700px;
    width: 100%;
    display: flex;
    justify-content: center;

    align-items: stretch;

    position: relative;
  }

  .hero .hero-tagline h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .hero .showcase-container-wrapper {
    width: 95% !important;
    height: 100% !important;
    margin: 0 auto !important;
  }

  .hero .showcase-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;

    overflow: visible !important;
  }

  .home .showcase-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 !important;
  }

  .hero .feature-product {
    height: 400px;
    width: auto;

    rotate: 25deg;

    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  }

  .hero .main-product {
    width: 150px;
    height: 200px;
  }

  .hero .overlay-product {
    width: 120px;
    height: 160px;
  }

  /* Scale down product cards for mobile */
  .hero .product-card {
    padding: 0.4rem !important;
    height: auto !important;
    min-height: 200px !important;
    overflow: visible !important;
    z-index: 100 !important;
    box-sizing: border-box !important;
  }

  .hero .product-card .card-highlight {
    height: 200px !important;
  }

  .hero .product-card:nth-child(1) .card-highlight {
    height: 200px !important;
  }

  .hero .product-card:nth-child(2) .card-highlight {
    height: 170px !important;
  }

  .hero .product-card:nth-child(3) .card-highlight {
    height: 160px !important;
  }

  .hero .product-card:nth-child(4) .card-highlight {
    height: 170px !important;
  }

  .hero .product-card:nth-child(5) .card-highlight {
    height: 200px !important;
  }

  /* Scale down product images */
  .hero .product-card .product-image {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0.3rem !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .hero .product-card .product-image img {
    max-width: 60px !important;
    width: auto !important;
    height: 100% !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  /* Scale down product info text */
  .hero .product-card .product-info {
    width: 100% !important;
  }

  .hero .product-card .product-info h3 {
    font-size: 0.6rem !important;
    margin-bottom: 0.3rem !important;
    line-height: 1.2 !important;
  }

  .hero .product-card .product-info .content-container {
    font-size: 0.5rem !important;
  }

  .hero .product-card .product-info .content-container p {
    margin-bottom: 0.2rem !important;
  }

  .hero .product-card .product-info .content-container .label,
  .hero .product-card .product-info .content-container .value {
    font-size: 0.5rem !important;
  }

  .hero .product-card:hover .product-image img {
    transform: translateY(-15px) scale(1);
    rotate: -30deg;
    transition: all 0.3s ease;
    width: 70%;
    height: 70%;
    z-index: 100;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
  }
}

/* -----------------------------------------Shop By Goal Section ------------------------------------------ */
.shop-by-goal {
  min-height: 100vh;
  background-color: var(--primary-dark);
  padding: 5rem 0 2rem 0;
  margin-bottom: 4rem;
}

.shop-by-goal .container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* -----------------------------------------Products Section ------------------------------------------ */
.shop-by-goal .products-section {
  width: 100%;
  height: 100%;
  margin-bottom: 0rem;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.shop-by-goal .product-row {
  height: 100%;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shop-by-goal .product-card {
  height: 400px;
  background-color: transparent;
  padding: 1.5rem;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.shop-by-goal .product-card:hover {
  transform: translateY(-5px);
}

.shop-by-goal .product-image {
  height: 70%;
  text-align: center;
  margin-bottom: 1rem;

  animation: zoomInProduct 1s ease;
}

@keyframes zoomInProduct {
  from {
    transform: scale(0.7);
  }
  to {
    transform: scale(1);
  }
}

.shop-by-goal .product-image img {
  max-width: 200px;
  height: 100%;
  object-fit: contain;
}

.shop-by-goal .product-info {
  height: 30%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.shop-by-goal .product-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--accent-gold);
} /* Global Color Variables */
@import url("https://fonts.googleapis.com/css2?family=Freeman&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Just+Me+Again+Down+Here&display=swap");

:root {
  --primary-dark: #000000;
  --secondary-dark: #2a2a2a;
  --accent-gold: #f5df9f;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --border-dark: #333333;
  --shadow-dark: rgba(0, 0, 0, 0.5);
}

.original-price {
  text-decoration: line-through !important;
  color: var(--text-gray) !important;
}

.shop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn-prod {
  border: 1px solid var(--accent-gold) !important;
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--accent-gold) !important;
  background-color: #000000 !important ;
  padding: 0.8rem 2rem;
  border-radius: 10px !important;
  cursor: pointer !important;
  margin: 0 auto;

  margin-top: 3rem;
  margin-bottom: 2rem;

  cursor: pointer !important;

  z-index: 100;
  transition: all 0.3s ease !important;
}

.btn-prod:hover {
  background-color: var(--accent-gold) !important;
  color: #000000 !important;
}

.shop {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shop .container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.shop .vector-background {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.shop .vector-background-img {
  height: 700px;
  max-height: 100%;
  width: 100vw;
  object-fit: fill;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  padding: 0%;
  margin: 0%;

  width: 100%;
  height: 100%;

  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.main-title {
  font-size: 5.5rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Freeman", sans-serif;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 3.5rem !important;
  }
}
/* 
  .main-title-text {
    animation: main-title-text 1s ease-in-out forwards !important;
  } */

.main-title-highlight {
  background-color: #000000;

  display: flex;
  justify-content: center;
  align-items: center;
  rotate: -5deg;
  margin-top: -1rem;
  font-family: "Freeman", sans-serif;

  /* animation: main-title-highlight-text 1s ease-in-out forwards; */
}

.main-title-highlight-text {
  color: var(--brown) !important;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  margin-left: 0rem;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-gold);
  font-family: "Freeman", sans-serif;

  margin: 0.5rem;

  /* animation: main-title-highlight-text 1s ease-in-out forwards; */
}

@keyframes main-title-highlight-text {
  0% {
    width: 0;
    overflow: hidden;
  }
  100% {
    width: 100%;
    overflow: visible;
  }
}

@keyframes main-title-text {
  0% {
    width: 0;
    overflow: hidden;
  }
  100% {
    width: 100%;
    overflow: visible;
  }
}

/* Typewriter effect for individual letters */
@keyframes typewriter-letter {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure typewriter letters work properly */
.typewriter-letter {
  display: inline-block !important;
  opacity: 0;
  transform: translateY(20px);
}

.letter-space {
  display: inline-block !important;
  width: 0.25em;
}

/* -----------------------------------------Hero Section ------------------------------------------ */

/* Navigation Bar */
.header {
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0);

  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: -5px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem 0;

  width: 80vw;
  max-width: 1000px;

  backdrop-filter: blur(10px);

  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px solid #ffffff73;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  width: 60px;
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
}

.nav-icons i {
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-icons i:hover {
  color: var(--accent-gold);
}

/* Hero Background Elements */
.hero {
  background: var(--primary-dark);
  /* min-height: 100vh; */
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pop-up {
  position: absolute;
  top: 100px;
  right: 5vw;
  width: auto;
  height: 250px;
  background-color: rgb(0, 0, 0);
  margin-left: 5vw;
  max-width: 600px;

  border-radius: 10px;
  border: 1px solid #ffffff73;

  z-index: 20;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

@media (max-width: 768px) {
  .pop-up {
    display: none;
  }

  .navbar {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;

    width: 100vw;
    max-width: 100vw;

    backdrop-filter: blur(10px);

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid #ffffff73;
    border-radius: 0px;
    border-left: none;
    border-right: none;
  }
}

.pop-up .pop-up-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  position: relative;
}

.pop-up-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 100%;
}

.pop-up .content-txt {
  height: 100%;
  max-height: 100%;
  justify-content: center;
  align-items: center;

  padding: 1rem;

  width: 0;
  display: none;
}

.pop-up .content-txt.active {
  display: flex;
  width: 100%;

  animation: popup-animation 1s ease-in-out forwards;
}

.pop-up-content-container.active {
  animation: popup-animation 1s ease-in-out forwards;
}

@keyframes popup-animation {
  0% {
    width: 100%;
    opacity: 0;
    transform: translatex(100%);
  }
  100% {
    width: 100%;
    opacity: 1;
    transform: translateX(0);
  }
}

.pop-up .content-txt p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-gold) !important;
  text-align: left;
  line-height: 1.2;

  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  text-wrap: balance;
}

.pop-up-content-open {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  width: 30px;
  object-fit: contain;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  transition: transform 0.3s ease;
}

.pop-up-content-open:hover {
  transform: scale(1.1);
}

.pop-up-content-open.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pop-up-content-open img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.pop-up-content-close {
  position: absolute;
  top: 10px;
  right: 10px;

  height: 30px;
  width: 30px;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: rgb(199, 197, 197);
  border-radius: 50%;

  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.pop-up-content-close.active {
  opacity: 1;
  pointer-events: all;
}

.pop-up-content-close:hover {
  background-color: rgb(179, 177, 177);
  transform: scale(1.05);
}

.pop-up-content-close span {
  font-size: 1.4rem;
  color: rgb(202, 16, 16);
}

.pop-up .pop-up-content-title {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.pop-up .pop-up-content-title.top-title {
  padding-top: 1rem;
  margin-bottom: -3rem;
}

.pop-up .pop-up-content-title span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up .pop-up-content img {
  width: 80%;
  height: 100px;
  object-fit: contain;
}

.hero .overlay-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: start;

  z-index: 1;
}

.hero .overlay-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;

  position: relative;
  z-index: 1;
}

.hero .overlay-container .left-overlay {
  width: 50vw;
  height: 70%;
  object-fit: contain;

  position: absolute;
  left: -15vw;
  top: 0;
}

.hero .overlay-container .center-overlay {
  width: 100%;
  height: 50%;
  object-fit: contain;

  position: absolute;
  left: 0%;
  top: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .overlay-container .right-overlay {
  width: 50vw;
  height: 70%;
  object-fit: contain;

  position: absolute;
  right: -15vw;
  top: 0;
}

.moveLeft {
  animation: moveLeft 1.5s ease-in-out forwards;
}

.moveRight {
  animation: moveRight 1.5s ease-in-out forwards;
}

.moveCenter {
  animation: moveCenter 1.5s ease-in-out forwards;
}

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

@keyframes moveRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes moveCenter {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

/* Hero Main Content */
.hero .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  height: 900px;
  width: 100%;
  display: flex;
  justify-content: center;

  align-items: stretch;

  position: relative;
  z-index: 3;
}

.hero .top-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  object-fit: fill;
  z-index: 2;
}

.hero .bottom-shadow {
  position: absolute;
  left: 0;
  top: 40vh;
  width: 100%;
  height: 100vh;
  object-fit: fill;
  z-index: 7;
  /* background-color: red; */
}

.hero .hero-main {
  height: 100%;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;

  position: relative;
  z-index: 5;
}

.hero .hero-tagline {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

/* Hero Tagline */
.hero .hero-tagline h1 {
  font-size: 4rem;
  height: 100%;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

  z-index: 5;
}

.hero .hero-tagline p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  position: relative;
  z-index: 5;
}

.hero .hero-tagline p img {
  width: 50px;
  height: 50px;
}

.hero .hero-tagline p span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: var(--accent-gold);
}

/* Hero Product Display */
.hero .hero-product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.hero .product-main {
  position: relative;
  z-index: 3;
}

.hero .feature-product-container {
  z-index: 3;

  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 0px;
}

.hero .feature-product {
  height: 500px;
  width: auto;

  rotate: 10deg;

  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.moveup {
  animation: moveUp 1s ease-in-out !important;
  transition: all 0.3s ease;
  transform-origin: center;
  transform: translateY(0px) rotate(10deg);
}

@keyframes moveUp {
  0% {
    transform: translateY(100%) rotate(0deg);
    display: none;
  }
  50% {
    display: flex;
  }
  100% {
    transform: translateY(0px) rotate(10deg);
  }
}

.zoomIn {
  animation: zoomIn 1s ease-in-out !important;
  transition: all 0.3s ease;
  transform-origin: center;
  transform: scale(1);
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.hero .main-product {
  width: 250px;
  height: 350px;
  object-fit: contain;
  transform: rotate(-15deg);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero .product-overlay {
  position: absolute;
  z-index: 2;
  transform: translateX(-50px) translateY(-30px) rotate(15deg);
}

.hero .overlay-product {
  width: 200px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Bottom Product Showcase */
.hero .product-showcase {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0;
  z-index: 50;

  width: 100%;
}

.hero .showcase-container-wrapper {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.hero .showcase-container {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;

  overflow: visible !important;
}

.home .showcase-content {
  width: 100% !important;
  padding: 0 0.5rem !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem !important;

  position: relative !important;
  z-index: 3 !important;
}

/* .hero .black-shadow-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;

    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.648476) 77.18%,
      rgba(0, 0, 0, 0.69) 100%
    );
    transform: matrix(0.02, -1, 1, 0.01, 0, 0);

    z-index: 10;
  }

  .hero .black-shadow-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 100%;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.648476) 77.18%, rgba(0, 0, 0, 0.69) 100%);
  transform: matrix(-0.02, -1, -1, 0.01, 0, 0);


    z-index: 10;
  } */

.hero .product-card {
  /* background: rgba(255, 255, 255, 0.05); */
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 0.5rem !important;
  position: relative !important;
  overflow: visible !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  height: 400px !important;
}

.hero .product-card:hover {
  transform: translateY(-5px);
}

.hero .card-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 1;

  border-radius: 12px;
}

.hero .product-card:nth-child(1) .card-highlight {
  clip-path: polygon(0 0, 100% 30px, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 30px, 100% 100%, 0% 100%);
  height: 400px;
}

.hero .product-card:nth-child(2) .card-highlight {
  clip-path: polygon(0 0, 100% 20px, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 20px, 100% 100%, 0% 100%);
  height: 340px;
}

.hero .product-card:nth-child(3) .card-highlight {
  height: 320px;
}

.hero .product-card:nth-child(4) .card-highlight {
  clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
  height: 340px;
}

.hero .product-card:nth-child(5) .card-highlight {
  clip-path: polygon(0 30px, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 30px, 100% 0, 100% 100%, 0% 100%);
  height: 400px;
}

.hero .card-highlight.red {
  background: radial-gradient(
    87.09% 84.64% at 50% 48.59%,
    #96372e 0%,
    #5d221d 55.84%,
    #30120f 100%
  );
}

.hero .card-highlight.yellow {
  background: radial-gradient(
    85.28% 82.74% at 49.92% 29.69%,
    rgba(251, 185, 17, 0.78) 0%,
    #823c0a 100%
  );
}

.hero .card-highlight.green {
  background: radial-gradient(
    94.3% 91.23% at 50% 48.38%,
    #a06b43 0%,
    #3a2718 100%
  );
}

.hero .card-highlight.magenta {
  background: radial-gradient(
    72.75% 68.55% at 50% 47.11%,
    #c82e2b 0%,
    #621615 100%
  );
}

.hero .card-highlight.yellow-id {
  background: radial-gradient(
    108.71% 104.75% at 50% 48.18%,
    #c2d30e 0%,
    #a96d0c 100%
  );
}

.hero .product-image {
  width: 100%;
  height: 90%;
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem;

  position: relative;
  z-index: 30;
}

.hero .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  transition: all 0.3s ease;
}

.hero .product-card:hover .product-image img {
  transform: translateY(-80px) scale(1);
  rotate: -30deg;
  transition: all 0.3s ease;
  width: 70%;
  height: 70%;
  z-index: 100;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero .product-info {
  position: relative;
  z-index: 3;

  height: 10%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}

.hero .content-container {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  display: none;

  background-color: #fff;
  border-radius: 12px;
  padding: 0.5rem 0;
  gap: 0.15rem;
}

.hero .product-card:hover .product-info {
  height: 100%;
  margin-top: -100%;
}

.hero .product-card:hover .content-container {
  display: flex;
}

.hero .product-info h3 {
  color: var(--accent-gold);
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero .product-card:hover .product-info h3 {
  font-size: 3rem;
  line-height: 1;
}

.hero .content-container p {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  padding: 0.15rem 0.5rem;
}

.hero .content-container .br2 {
  background-color: #f1f1f1;
}

.hero .content-container .label {
  font-size: 0.8rem;
  font-weight: bold;
}

.hero .content-container .value {
  font-size: 0.8rem;
  font-weight: bold;
}

/* Removed Swiper-specific styles - now using grid layout */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  /* Hero Main Content */
  .hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    height: 700px;
    width: 100%;
    display: flex;
    justify-content: center;

    align-items: stretch;

    position: relative;
  }

  .hero .hero-tagline h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .hero .showcase-container-wrapper {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 0.5rem !important;
  }

  .hero .showcase-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    overflow: visible !important;
    width: 100% !important;
  }

  /* Maintain grid layout on mobile - same structure, scaled down */
  .home .showcase-content {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 0.3rem !important;
    align-items: center !important;
    padding: 0 0.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero .content-container p {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.15rem !important;
    font-size: 0.8rem !important;
    text-align: center !important;
  }

  .hero .content-container span {
    font-size: 1px !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .hero .feature-product {
    height: 400px;
    width: auto;
    max-width: 70vw;

    rotate: 15deg;

    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  }

  .hero .main-product {
    width: 150px;
    height: 200px;
  }

  .hero .overlay-product {
    width: 120px;
    height: 160px;
  }

  /* Scale down product cards for mobile */
  .hero .product-card {
    padding: 0.4rem !important;
    height: auto !important;
    min-height: 200px !important;
    overflow: visible !important;
    z-index: 100 !important;
  }

  .hero .product-card .card-highlight {
    height: 200px !important;
  }

  .hero .product-card:nth-child(1) .card-highlight {
    height: 200px !important;
  }

  .hero .product-card:nth-child(2) .card-highlight {
    height: 170px !important;
  }

  .hero .product-card:nth-child(3) .card-highlight {
    height: 160px !important;
  }

  .hero .product-card:nth-child(4) .card-highlight {
    height: 170px !important;
  }

  .hero .product-card:nth-child(5) .card-highlight {
    height: 200px !important;
  }

  /* Scale down product images */
  .hero .product-card .product-image {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0.3rem !important;
  }

  .hero .product-card .product-image img {
    max-width: 60px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* Scale down product info text */
  .hero .product-card .product-info {
    width: 100% !important;
  }

  .hero .product-card .product-info h3 {
    font-size: 0.6rem !important;
    margin-bottom: 0.3rem !important;
    line-height: 1.2 !important;
  }

  .hero .product-card .product-info .content-container {
    font-size: 0.5rem !important;
  }

  .hero .product-card .product-info .content-container p {
    margin-bottom: 0.2rem !important;
  }

  .hero .product-card .product-info .content-container .label,
  .hero .product-card .product-info .content-container .value {
    font-size: 0.5rem !important;
  }

  .hero .product-card:hover .product-image img {
    transform: translateY(-15px) scale(1);
    rotate: -30deg;
    transition: all 0.3s ease;
    width: 70%;
    height: 70%;
    z-index: 100;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
  }
}

/* -----------------------------------------Shop By Goal Section ------------------------------------------ */
.shop-by-goal {
  min-height: 100vh;
  background-color: var(--primary-dark);
  padding: 5rem 0 2rem 0;
  margin-bottom: 4rem;
}

.shop-by-goal .container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* -----------------------------------------Products Section ------------------------------------------ */
.shop-by-goal .products-section {
  width: 100%;
  height: 100%;
  margin-bottom: 0rem;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.shop-by-goal .product-row {
  height: 100%;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shop-by-goal .product-card {
  height: 400px;
  background-color: transparent;
  padding: 1.5rem;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.shop-by-goal .product-card:hover {
  transform: translateY(-5px);
}

.shop-by-goal .product-image {
  height: 70%;
  text-align: center;
  margin-bottom: 1rem;

  animation: zoomInProduct 1s ease;
}

@keyframes zoomInProduct {
  from {
    transform: scale(0.7);
  }
  to {
    transform: scale(1);
  }
}

.shop-by-goal .product-image img {
  max-width: 200px;
  height: 100%;
  object-fit: contain;
}

.shop-by-goal .product-info {
  height: 30%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.shop-by-goal .product-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--accent-gold);
}

.shop-by-goal .product-details {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.shop-by-goal .flavor {
  color: var(--accent-gold);
  font-size: 0.8rem;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  display: none !important;
}

.shop-by-goal .nutrition-info {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.shop-by-goal .price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-light);
}

.shop-by-goal .main-image {
  width: 30%;
  height: auto;
  margin-bottom: 2rem;

  position: relative;
  z-index: 1;
}

.shop-by-goal .main-image-container {
  width: 100%;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shop-by-goal .main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  animation: upDown 3s ease-in-out infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* --------------------------------------------------------------Responsive Design -------------------------------------------------------------- */
.shop-by-goal .shop-by-goal-mobile {
  display: none;
}

.shop-by-goal .shop-by-goal-desktop {
  display: flex;
}

@media (max-width: 768px) {
  .shop-by-goal {
    min-height: auto;
    background-color: var(--primary-dark);
    padding: 4rem 0 0rem 0;
  }

  .shop-by-goal .container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0rem;
    gap: 0rem !important;

    box-sizing: border-box;
  }

  .shop-by-goal .section-header {
    margin-bottom: 0rem !important;
  }

  .shop-by-goal .products-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0rem !important;
    width: 100%;
    padding: 0rem 0rem;

    margin-bottom: 0rem !important;
  }

  .shop-by-goal .product-row {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem !important;
  }

  .shop-by-goal .shop-by-goal-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0rem 0rem;
  }

  .shop-by-goal .shop-by-goal-mobile-swiper {
    width: 100%;
    height: 100%;
  }

  .shop-by-goal .shop-by-goal-mobile .product-card-container.swiper-wrapper {
    height: 100%;
    width: auto;
  }

  .shop-by-goal .shop-by-goal-mobile .product-card-mobile.swiper-slide {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .shop-by-goal .shop-by-goal-mobile .product-card {
    width: 100%;
    height: 350px;
    background-color: transparent;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;

    box-sizing: border-box;
  }

  .shop-by-goal .shop-by-goal-mobile .product-card:hover {
    transform: translateY(-5px);
  }

  .shop-by-goal .shop-by-goal-mobile .swiper-pagination {
    bottom: 10px !important;
  }

  .shop-by-goal .shop-by-goal-mobile .swiper-pagination-bullet {
    background: var(--accent-gold);
    opacity: 0.5;
  }

  .shop-by-goal .shop-by-goal-mobile .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-gold);
  }

  .shop-by-goal .shop-by-goal-desktop {
    display: none;
  }

  .shop-by-goal .shop-by-goal-desktop {
    display: none;
  }

  .shop-by-goal .product-image {
    height: 60%;
    width: 100%;
  }

  .shop-by-goal .product-image img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .shop-by-goal .main-title {
    font-size: 2rem;
  }

  .shop-by-goal .product-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shop-by-goal .goals-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shop-by-goal .product-details,
  .shop-by-goal .nutrition-info,
  .shop-by-goal .benefits {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* main image */
  .shop-by-goal .main-image {
    width: 100%;
    height: 100%;

    margin-top: -3rem !important;
  }

  .shop-by-goal .main-image-img {
    display: none;
  }

  .shop-by-goal .main-image-container {
    width: 100%;
    height: 100%;
  }

  .shop-by-goal .main-image-container img {
    width: 100%;
    height: 100%;
  }
}

/* Swiper Goals Section - Card Scaling */
.goals-section.swiper {
  display: block !important;
  grid-template-columns: none !important;

  position: relative;
}

.goals-section.swiper .swiper-wrapper {
  overflow-y: visible !important;
  height: 100% !important;
}

.goals-section .swiper-slide {
  transition: all 0.3s ease;
  transform: scale(0.8);
  opacity: 0.7;
  width: 30%;
}

@keyframes identifier {
  0% {
    scale: 0.5;
  }
  100% {
    scale: 1;
  }
}

.goals-section .swiper-slide-active {
  transform: scale(1.5);
  opacity: 1;
  z-index: 2;
  animation: identifier 1s ease;
  width: 40%;
  height: 100%;
}

.goals-section .swiper-slide-prev,
.goals-section .swiper-slide-next {
  transform: scale(0.7);
  opacity: 0.8;
  height: 100%;
}

.goals-section .goal-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;

  position: relative;
}

.goals-section .goal-image {
  height: 80%;
  width: 100%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.goals-section .swiper-slide-active .goal-image {
  height: 100%;
}

.goals-section .goal-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2);
  transition: all 0.3s ease;
  transform: scale(0.6);

  padding-bottom: 1.5rem;

  margin-bottom: 2rem !important;
}

.goals-section .swiper-slide-active .goal-image img {
  height: 100%;
  filter: brightness(1) contrast(1.1);
  transform: scale(0.9);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem !important;

  box-sizing: border-box;
}

.goals-section .goal-title {
  font-size: 1rem !important;
  font-weight: 500;
  color: #f3e4af !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;

  font-family: "freeman", cursive;

  position: absolute;
  bottom: 2rem;
  right: 0%;
  transform: translateX(0%);
  width: auto;
  text-align: center;
  box-sizing: border-box;
  background-color: #71684b;
  padding: 0.25rem 1rem;
  border-radius: 1px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.goals-section .swiper-slide-active .goal-title {
  position: absolute;
  bottom: 1rem;
  text-align: center;
  transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .goals-section .swiper-slide {
    transform: scale(0.9);
  }

  .goals-section .swiper-slide-active {
    transform: scale(1.1);
  }

  .goals-section .swiper-slide-prev,
  .goals-section .swiper-slide-next {
    transform: scale(0.95);
  }

  .goals-section .goal-image img {
    max-width: 100px;
  }

  .goals-section .swiper-slide-active .goal-image img {
    max-width: 120px;
    object-fit: contain !important;
  }
}

@media (max-width: 480px) {
  .goals-section .swiper-slide {
    transform: scale(0.95);
  }

  .goals-section .swiper-slide-active {
    transform: scale(1.05);
  }

  .goals-section .goal-image img {
    width: 30vw;
    object-fit: contain !important;
  }
}

/* -----------------------------------------Shop By Budget & Combos Sections ------------------------------------------ */
/* Common styles for both budget and combos sections */
.shop-by-budget,
.shop-by-combos {
  background-color: var(--primary-dark);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Specific padding differences */
.shop-by-budget {
  padding: 2rem 0;
}

.shop-by-combos {
  padding: 5rem 0 0rem 0;
}

/* Common container styles */
.shop-by-budget .container,
.shop-by-combos .container {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Common products layout */
.shop-by-budget .products-budget,
.shop-by-combos .products-combos {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* Common products container */
.shop-by-budget .budget-products-container,
.shop-by-combos .combos-products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: -3rem;
  width: 100%;
  height: 100%;
}

/* Common main image container */
.shop-by-budget .budget-main-image-container,
.shop-by-combos .combos-main-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Common main image styles */
.shop-by-budget .budget-main-image-container img,
.shop-by-combos .combos-main-image-container img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  animation: bottleUpDown 3s ease-in-out infinite;
}

@keyframes bottleUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Common main image text styles */
.shop-by-budget .budget-main-image-container h2,
.shop-by-combos .combos-main-image-container h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-align: center !important;
  width: 100% !important;
}

.shop-by-budget .budget-main-image-container p,
.shop-by-combos .combos-main-image-container p {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-light);
}

/* Common card styles */
.shop-by-budget .card-budget,
.shop-by-combos .card-combos {
  width: 90% !important;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Common card image styles */
.shop-by-budget .card-budget img,
.shop-by-combos .card-combos img {
  width: 100%;
  height: 50% !important;
  object-fit: contain;
  animation: zoomInProduct 1s ease;
}

/* Common card text styles */
.shop-by-budget .card-budget h2,
.shop-by-combos .card-combos h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent-gold);
  max-width: 350px;
  text-align: center !important;
}

.shop-by-budget .card-budget p,
.shop-by-combos .card-combos p {
  font-size: 1rem;
  font-weight: 500 !important;
  color: var(--text-light);
  max-width: 350px;
  text-align: center !important;
}

.shop-by-budget .card-budget p.flavor,
.shop-by-combos .card-combos p.flavor {
  display: none !important;
}

.shop-by-budget .card-budget .price,
.shop-by-combos .card-combos .price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-light);
}

/* Common wrapper styles */
.shop-by-budget .shop-budget-wrapper,
.shop-by-combos .shop-combos-wrapper {
  width: 100%;
  height: 100%;
  margin-top: 3rem;
  position: relative;
  max-width: 580px;
}

/* Common swiper styles */
.shop-by-budget .shop-budget-wrapper .budget-swiper,
.shop-by-combos .shop-combos-wrapper .combos-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.shop-by-budget .shop-budget-wrapper .swiper-wrapper,
.shop-by-combos .shop-combos-wrapper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

/* Common slide styles */
.shop-by-budget .shop-budget-wrapper .card-budget-slide,
.shop-by-combos .shop-combos-wrapper .card-combos-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget,
.shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Common slide image styles */
.shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget img,
.shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

/* Common slide title styles with specific differences */
.shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget h2 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-top: 0.5rem;

  font-family: "freeman", cursive !important;

  background-color: #71684b;
  padding: 0.25rem 1rem;
}

.shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos h2 {
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  color: var(--accent-gold);
  margin-top: 0.5rem;

  font-family: "freeman", cursive !important;

  background-color: #71684b;
  padding: 0.25rem 1rem;
}

/* Common navigation button styles */
.shop-by-budget .shop-budget-wrapper .swiper-button-next,
.shop-by-budget .shop-budget-wrapper .swiper-button-prev,
.shop-by-combos .shop-combos-wrapper .swiper-button-next,
.shop-by-combos .shop-combos-wrapper .swiper-button-prev {
  width: auto;
  height: 30px;
  top: 45%;
  transform: translateY(-50%);
  margin-top: 0;
}

.shop-by-budget .shop-budget-wrapper .swiper-button-next,
.shop-by-combos .shop-combos-wrapper .swiper-button-next {
  right: -2rem;
}

.shop-by-budget .shop-budget-wrapper .swiper-button-prev,
.shop-by-combos .shop-combos-wrapper .swiper-button-prev {
  left: -2rem;
}

.shop-by-budget .shop-budget-wrapper .swiper-button-prev img,
.shop-by-combos .shop-combos-wrapper .swiper-button-prev img {
  transform: rotate(180deg);
  object-fit: contain;
}

.shop-by-budget .shop-budget-wrapper .swiper-button-next::after,
.shop-by-budget .shop-budget-wrapper .swiper-button-prev::after,
.shop-by-combos .shop-combos-wrapper .swiper-button-next::after,
.shop-by-combos .shop-combos-wrapper .swiper-button-prev::after {
  display: none;
}

/* Mobile styles for budget and combos sections */
.shop-by-budget .shop-by-budget-mobile,
.shop-by-combos .shop-by-combos-mobile {
  display: none;
}

.shop-by-budget .shop-by-budget-desktop,
.shop-by-combos .shop-by-combos-desktop {
  display: flex;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.combos-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;

  justify-items: center;
  align-content: center;
}

.combos-grid h2 {
  font-size: 1rem !important;
  text-align: center !important;
  width: 100% !important;
}

.combos-grid p {
  font-size: 1rem !important;
  text-align: center !important;
  width: 100% !important;
}

/* Common responsive styles */
@media (max-width: 768px) {
  .shop-by-budget,
  .shop-by-combos {
    min-height: auto;
    padding: 4rem 0 0rem 0;
  }

  .shop-by-budget .container,
  .shop-by-combos .container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    gap: 0rem !important;
    box-sizing: border-box;
  }

  .shop-by-budget .section-header,
  .shop-by-combos .section-header {
    margin-bottom: 0rem !important;
  }

  .shop-by-budget .products-budget,
  .shop-by-combos .products-combos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0rem !important;
    width: 100%;
    padding: 0rem 0rem;
    margin-bottom: 0rem !important;
  }

  /* Show mobile, hide desktop */
  .shop-by-budget .shop-by-budget-mobile,
  .shop-by-combos .shop-by-combos-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0rem 0rem;
  }

  .shop-by-budget .shop-by-budget-desktop,
  .shop-by-combos .shop-by-combos-desktop {
    display: none;
  }

  /* Mobile swiper styles */
  .shop-by-budget .shop-by-budget-mobile-swiper,
  .shop-by-combos .shop-by-combos-mobile-swiper {
    width: 100%;
    height: 100%;
  }

  .shop-by-budget .shop-by-budget-mobile .product-card-container.swiper-wrapper,
  .shop-by-combos
    .shop-by-combos-mobile
    .product-card-container.swiper-wrapper {
    height: 100%;
    width: auto;
  }

  .shop-by-budget .shop-by-budget-mobile .product-card-mobile.swiper-slide,
  .shop-by-combos .shop-by-combos-mobile .product-card-mobile.swiper-slide {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .shop-by-budget .shop-by-budget-mobile .product-card,
  .shop-by-combos .shop-by-combos-mobile .product-card {
    width: 100%;
    height: 350px;
    background-color: transparent;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .shop-by-budget .shop-by-budget-mobile .product-card:hover,
  .shop-by-combos .shop-by-combos-mobile .product-card:hover {
    transform: translateY(-5px);
  }

  .shop-by-budget .shop-by-budget-mobile .swiper-pagination,
  .shop-by-combos .shop-by-combos-mobile .swiper-pagination {
    bottom: 10px !important;
  }

  .shop-by-budget .shop-by-budget-mobile .swiper-pagination-bullet,
  .shop-by-combos .shop-by-combos-mobile .swiper-pagination-bullet {
    background: var(--accent-gold);
    opacity: 0.5;
  }

  .shop-by-budget .shop-by-budget-mobile .swiper-pagination-bullet-active,
  .shop-by-combos .shop-by-combos-mobile .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-gold);
  }

  .shop-by-budget .shop-by-budget-mobile .product-image,
  .shop-by-combos .shop-by-combos-mobile .product-image {
    height: 60%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shop-by-budget .shop-by-budget-mobile .product-image img,
  .shop-by-combos .shop-by-combos-mobile .product-image img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .shop-by-budget .shop-by-budget-mobile .product-info,
  .shop-by-combos .shop-by-combos-mobile .product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Show both mobile and desktop swipers on mobile */
  .shop-by-budget .shop-budget-wrapper,
  .shop-by-combos .shop-combos-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .shop-by-budget .shop-budget-wrapper .budget-swiper,
  .shop-by-combos .shop-combos-wrapper .combos-swiper {
    padding: 0rem !important;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }

  .shop-by-budget .shop-budget-wrapper .budget-swiper .swiper-wrapper,
  .shop-by-combos .shop-combos-wrapper .combos-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    padding: 0rem !important;
    display: flex;
    flex-direction: row;
  }

  .shop-by-budget .shop-budget-wrapper .swiper-button-next,
  .shop-by-combos .shop-combos-wrapper .swiper-button-next {
    top: -2rem;
    right: 1rem;
  }

  .shop-by-budget .shop-budget-wrapper .swiper-button-prev,
  .shop-by-combos .shop-combos-wrapper .swiper-button-prev {
    top: -2rem;
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .shop-by-budget .shop-budget-wrapper .budget-swiper,
  .shop-by-combos .shop-combos-wrapper .combos-swiper {
    padding: 0 1rem;
  }

  .shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget img,
  .shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos img {
    height: 80px;
  }

  .shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget h2,
  .shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos h2 {
    font-size: 0.9rem;
  }
}

/* Common swiper scaling styles */
.budget-swiper.swiper,
.combos-swiper.swiper {
  display: block !important;
  grid-template-columns: none !important;
  padding: 1rem 0;
}

.budget-swiper .swiper-slide,
.combos-swiper .swiper-slide {
  transition: all 0.3s ease;
  transform: scale(0.6);
  opacity: 0.7;
}

.budget-swiper .swiper-slide-active,
.combos-swiper .swiper-slide-active {
  transform: scale(1.1) !important;
  opacity: 1;
  z-index: 2;
}

.budget-swiper .swiper-slide-prev,
.budget-swiper .swiper-slide-next,
.combos-swiper .swiper-slide-prev,
.combos-swiper .swiper-slide-next {
  transform: scale(0.9) !important;
  opacity: 0.8;
}

.budget-swiper .card-budget-slide,
.combos-swiper .card-combos-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.budget-swiper .card-budget-slide .card-budget,
.combos-swiper .card-combos-slide .card-combos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.budget-swiper .card-budget-slide .card-budget img,
.combos-swiper .card-combos-slide .card-combos img {
  transition: all 0.3s ease;
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

.budget-swiper .swiper-slide-active .card-budget-slide .card-budget img,
.combos-swiper .swiper-slide-active .card-combos-slide .card-combos img {
  max-width: 150px;
  filter: brightness(1) contrast(1.1);
}

.budget-swiper .card-budget-slide .card-budget h2,
.combos-swiper .card-combos-slide .card-combos h2 {
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent-gold);
  margin-top: 0.5rem;
}

.budget-swiper .swiper-slide-active .card-budget-slide .card-budget h2,
.combos-swiper .swiper-slide-active .card-combos-slide .card-combos h2 {
  font-size: 1rem;
  color: var(--accent-gold);
  font-weight: 500;
}

/* Common transition styles */
.budget-products-container,
.combos-products-container {
  transition: opacity 0.3s ease;
}

.budget-card,
.combos-card {
  transition: all 0.3s ease;
}

/* Common responsive zoom effects */
@media (max-width: 768px) {
  .budget-swiper .swiper-slide,
  .combos-swiper .swiper-slide {
    transform: scale(0.7);
  }

  .budget-swiper .swiper-slide-active,
  .combos-swiper .swiper-slide-active {
    transform: scale(1.1);
  }

  .budget-swiper .swiper-slide-prev,
  .budget-swiper .swiper-slide-next,
  .combos-swiper .swiper-slide-prev,
  .combos-swiper .swiper-slide-next {
    transform: scale(0.8);
  }

  .budget-swiper .swiper-slide-active .card-budget-slide .card-budget img,
  .combos-swiper .swiper-slide-active .card-combos-slide .card-combos img {
    max-width: 120px;
  }

  .budget-swiper .swiper-slide-active .card-budget-slide .card-budget h2,
  .combos-swiper .swiper-slide-active .card-combos-slide .card-combos h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .budget-swiper .swiper-slide,
  .combos-swiper .swiper-slide {
    transform: scale(0.6);
  }

  .budget-swiper .swiper-slide-active,
  .combos-swiper .swiper-slide-active {
    transform: scale(1);
  }

  .budget-swiper .swiper-slide-prev,
  .budget-swiper .swiper-slide-next,
  .combos-swiper .swiper-slide-prev,
  .combos-swiper .swiper-slide-next {
    transform: scale(0.7);
  }

  .budget-swiper .swiper-slide-active .card-budget-slide .card-budget img,
  .combos-swiper .swiper-slide-active .card-combos-slide .card-combos img {
    max-width: 100px;
  }

  .budget-swiper .swiper-slide-active .card-budget-slide .card-budget h2,
  .combos-swiper .swiper-slide-active .card-combos-slide .card-combos h2 {
    font-size: 1rem;
  }
}

/* -----------------------------------------Goals Section ------------------------------------------ */
.shop-by-goal .goals-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  height: 300px;
}

.shop-by-goal .goal-image {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0rem;
  cursor: pointer;
}

.shop-by-goal .goal-image img {
  width: auto;
  height: 300px;
  object-fit: fill;
  filter: brightness(0.8) contrast(1.2);
}

.shop-by-goal .goal-title {
  font-size: 1rem;
  font-weight: bold;

  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-by-goal .shop-by-goal-swiper-button-next {
  position: absolute;
  top: 80%;
  right: -3rem;
}

.shop-by-goal .shop-by-goal-swiper-button-prev {
  position: absolute;
  top: 80%;
  left: -3rem;
}

.shop-by-goal .shop-by-goal-swiper-button-next:after,
.shop-by-goal .shop-by-goal-swiper-button-prev:after {
  display: none;
}

.shop-by-goal .shop-by-goal-swiper-button-next img,
.shop-by-goal .shop-by-goal-swiper-button-prev img {
  width: 2rem;
  height: 2rem;
}

.shop-by-goal .shop-by-goal-swiper-button-next .right-arrow {
  transform: rotate(180deg) !important;
}

@media (max-width: 768px) {
  .shop-by-goal .shop-by-goal-swiper-button-next {
    top: 30%;
    right: 1rem;
  }

  .shop-by-goal .shop-by-goal-swiper-button-prev {
    top: 30%;
    left: 1rem;
  }
}

/* -----------------------------------------Words From Founder Section ------------------------------------------ */
.words-from-founder {
  height: 100%;
  background-color: var(--primary-dark);
  padding: 5rem 0;
  display: flex;
  align-items: center;
}

.words-from-founder .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.words-from-founder .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.words-from-founder .main-title {
  font-weight: bold;
  color: #d4c08d;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.words-from-founder .founder-highlight {
  background-color: #e0d9c4;
  color: #000000;
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
  margin-left: 0.5rem;
  display: inline-block;

  rotate: -5deg;
}

.words-from-founder .founder-content {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 1rem;
}

.words-from-founder .testimonial-box {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.words-from-founder .founder-profile {
  position: absolute;
  top: -50px;
  left: 50px;
  z-index: 10;
}

.words-from-founder .founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  object-fit: contain;

  background-color: #ffffff;
  box-sizing: border-box;
}

.words-from-founder .testimonial-text {
  height: 100%;
  width: 90%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #000000;
  font-size: 1.1rem;
  line-height: 1.8;
  box-sizing: border-box;

  padding-top: 2rem;
}

.words-from-founder .testimonial-text p {
  margin-bottom: 1rem;
  text-align: left;
}

.words-from-founder .founder-signature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.words-from-founder .founder-name {
  display: block;
  color: #8a2be2;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.words-from-founder .founder-title {
  display: block;
  color: #333333;
  font-size: 0.9rem;
  font-weight: normal;
}

.words-from-founder .founder-image-container {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 30%;
  height: 100%;
}

.words-from-founder .founder-running {
  background-color: #ff4500;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.words-from-founder .founder-running-img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  border-radius: 12px;

  position: absolute;
  bottom: 0;
  right: 0;
}

/* Responsive Design for Words From Founder */
@media (max-width: 768px) {
  .words-from-founder {
    height: 100%;
    background-color: var(--primary-dark);
    padding: 2rem 0;
    display: flex;
    align-items: center;
  }

  .words-from-founder .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.8rem;
  }

  .words-from-founder .main-title {
    font-size: 2.5rem;
  }

  .words-from-founder .founder-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }

  .words-from-founder .testimonial-box {
    padding: 1rem 0.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    box-sizing: border-box;
    position: relative;
  }

  .words-from-founder .founder-image-container {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    margin-top: 150px;
  }

  .words-from-founder .founder-running {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .words-from-founder .main-title {
    font-size: 2rem;
  }

  .words-from-founder .founder-highlight {
    padding: 0.25rem 1rem;
    font-size: 0.9em;
  }

  .words-from-founder .testimonial-text {
    font-size: 1rem;
  }
}

/* -----------------------------------------Products Range Section ------------------------------------------ */
.products-range {
  background: var(--primary-dark);
  padding: 5rem 0;
  height: 100%;
}

.products-range .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.products-range .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.products-range .main-title {
  font-size: 6rem;
  font-weight: bold;
  color: #e9d7a2;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.95;
  position: relative;
  display: inline-block;
}

.products-range .main-title .title-line {
  display: block;
  position: relative;
}

.products-range .main-title .products-banner {
  display: inline-block;
  background: #ede2b7;
  color: #a89c6b;
  font-size: 3rem;
  font-weight: bold;
  padding: 0.3em 1.5em 0.2em 1.5em;
  border-radius: 0px;
  transform: rotate(-8deg);
  margin-top: 0.2em;
  margin-bottom: 0.1em;
  letter-spacing: 1px;
}

.products-range .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  margin-top: 2.5rem;
}

.products-range .product-item {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-range .product-image img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.products-range .product-info {
  width: 100%;
  text-align: left;
  margin-bottom: 0.7rem;
}

.products-range .product-name {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.products-range .product-reviews {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.products-range .stars {
  color: #ffd700;
  font-size: 1rem;
}

.products-range .review-count {
  color: #bdbdbd;
  font-size: 0.95rem;
}

.products-range .product-price {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}

.products-range .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.products-range .add-to-cart {
  width: 100%;
  background: transparent;
  border: 1.5px solid #bdbdbd;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7em 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
}

.products-range .buy-now {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7em 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
}

.products-range .add-to-cart:hover {
  background: #ede2b7;
  color: #222;
  border-color: #ede2b7;
}

.products-range .buy-now:hover {
  background: #ede2b7;
  color: #222;
  border-color: #ede2b7;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-range .main-title {
    font-size: 4rem;
  }
  .products-range .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .products-range {
    background: var(--primary-dark);
    padding: 2rem 0;
    height: 100%;
  }

  .products-range .container {
    padding: 0 0.8rem;
  }

  .products-range .main-title {
    font-size: 2.2rem;
  }
  .products-range .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
  .products-range .product-image img {
    width: 90%;
    height: 150px;
  }

  .products-range .product-name {
    color: var(--text-light);
    font-size: 1rem;
    height: 2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .products-range .product-reviews {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.2rem;
    padding-top: 0.5rem;
  }

  .products-range .stars {
    color: #ffd700;
    font-size: 0.8rem;
  }

  .products-range .product-price {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.7rem;
  }

  .products-range .add-to-cart {
    width: 90%;
    background: transparent;
    border: 1.5px solid #bdbdbd;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5em 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
  }

  .products-range .add-to-cart:hover {
    background: #ede2b7;
    color: #222;
    border-color: #ede2b7;
  }
}

/* -----------------------------------------Reviews Section ------------------------------------------ */
.reviews {
  background-color: var(--primary-dark);
  padding: 5rem 0;
  height: 100%;
  width: 100%;

  background-image: url(images/review-vector.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.reviews .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-top: 7vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews .section-header {
  text-align: center;
  margin-bottom: 2.5rem;

  padding-top: 20rem;
}

.reviews .main-title {
  font-size: 4.5rem;
  color: #6a442f;
}

.reviews .main-title-highlight-text {
  font-size: 3.5rem;
  margin: 0;
  padding: 0.15rem 1.5rem;
}

.reviews .reviews-grid {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 1rem;
}

.reviews .reviews-grid .review-row {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;

  gap: 1rem;
}

.reviews .reviews-grid .review-row .left-column {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews .reviews-grid .review-row .right-column {
  width: 30%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews .reviews-grid .review-row .left-column .left-column-row {
  width: 100%;
  height: 100%;
  gap: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.reviews .reviews-grid .review-row .left-column .left-column-row .card-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem 1rem;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 80px;

  object-fit: contain;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media (max-width: 768px) {
.reviews
  .google-img {
   display: none !important;
}
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image
  .stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  margin-top: 0.5rem;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image
  .stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image
  .stars
  i {
  color: #fbbc05;
  font-size: 1.3rem;
}

.reviews .reviews-grid .review-row .left-column .left-column-row .card-item p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #373737;
  text-align: center;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-author
  p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #373737;
  text-align: center;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-author
  .name {
  font-weight: 800;
}

.review-author img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
}

.reviews .reviews-grid .review-row .left-column .left-row-card {
  margin-top: 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  background-color: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reviews .reviews-grid .review-row .left-column .left-row-card .review-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews .reviews-grid .review-row .left-column .left-row-card .review-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;

  width: 100%;
  height: 100%;
}

.reviews .reviews-grid .review-row .left-column .left-row-card .review-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #373737;
  text-align: left;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-row-card
  .review-text
  p
  span {
  font-weight: 600;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-row-card
  .review-text
  p
  span.review-date {
  font-size: 1rem;
  line-height: 1.2;
  color: #373737;
  text-align: left;
  font-weight: 500;
}

.reviews .reviews-grid .review-row .right-column .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reviews .reviews-grid .review-row .right-column .card h3 {
  font-size: 3.5rem;
  color: #696969;
  text-align: center;
}

.reviews .reviews-grid .review-row .right-column .card p {
  font-size: 1.7rem;
  font-weight: 500;
  color: #373737;
  text-align: center;
}

.reviews .reviews-grid .review-row .right-column .card .rating {
  font-size: 5rem;
  font-weight: 700;
  color: #4285f4;
  text-align: center;
}

.reviews .reviews-grid .review-row .right-column .card .stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews .reviews-grid .review-row .right-column .card .stars i {
  color: #fcd503;
  font-size: 1.8rem;
}

.reviews .reviews-grid .review-row .right-column .card .google-image {
  width: 100px;
  height: 100px;
  display: flex;
}

.reviews .reviews-grid .review-row .right-column .card .google-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .reviews .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
    margin-top: 7vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reviews .reviews-grid {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 1rem;
  }

  .reviews .reviews-grid .review-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;

    gap: 1rem;
  }

  .reviews .reviews-grid .review-row .left-column {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reviews .reviews-grid .review-row .right-column {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reviews .reviews-grid .review-row .left-column .left-column-row {
    width: 100%;
    height: 100%;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Carousel Styles */
.reviews-carousel-mobile {
  display: none;
}

@media (max-width: 768px) {
  /* Hide desktop layout on mobile */
  .reviews-desktop {
    display: none !important;
  }

  /* Show mobile carousel */
  .reviews-carousel-mobile {
    display: block;
    width: 100%;
    padding: 0 1rem;
  }

  .reviews-carousel-mobile .swiper {
    width: 100%;
    padding-bottom: 50px;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    display: flex;
    align-items: stretch !important;
  }

  .reviews-carousel-mobile .swiper-slide {
    width: 100%;
    height: auto !important;
    min-height: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .reviews-carousel-mobile .card-item {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 0.5rem;
  }

  .reviews-carousel-mobile .card-item.left-row-card {
    flex-direction: column;
    gap: 1rem;
  }

  .reviews-carousel-mobile .card-item.left-row-card .review-text {
    align-items: center;
    text-align: center;
  }

  .reviews-carousel-mobile .card-item p {
    text-align: center;
    color: var(--brown) !important;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    padding: 0 1rem;
    margin: 0;
    width: 100%;
    height: 100%;
  }

  .reviews-carousel-mobile .card-item .stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
  }

  .reviews-carousel-mobile .card-item .stars i {
    color: #fcd503;
    font-size: 1.8rem;
  }

  /* Swiper Navigation Buttons */
  .reviews-carousel-mobile .swiper-button-next,
  .reviews-carousel-mobile .swiper-button-prev {
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .reviews-carousel-mobile .swiper-button-next:hover,
  .reviews-carousel-mobile .swiper-button-prev:hover {
    background: rgba(245, 223, 159, 0.2);
    transform: scale(1.1);
  }

  .reviews-carousel-mobile .swiper-button-next::after,
  .reviews-carousel-mobile .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
  }

  /* Swiper Pagination */
  .reviews-carousel-mobile .swiper-pagination {
    bottom: 10px;
  }

  .reviews-carousel-mobile .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    opacity: 0.5;
    transition: all 0.3s ease;
  }

  .reviews-carousel-mobile .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
  }
}

/* Products Carousel Styles */
.products-carousel-wrapper {
  width: 100%;
  margin-top: 3rem;
  padding: 2rem 0;
  position: relative;
}

.productsSwiper {
  width: 100%;
  padding: 2rem 0 4rem 0;
  overflow: visible;
}

.productsSwiper .swiper-wrapper {
  align-items: center;
}

.productsSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  width: 380px;
  flex-shrink: 0;
}

.productsSwiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.5;
  transform: scale(0.85);
}

.productsSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.product-card-carousel {
  width: 100%;
  max-width: 380px;
  background: var(--product-card-bg);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px var(--product-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-carousel:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px var(--product-shadow-hover);
}

/* Product Header */
.product-header {
  background: linear-gradient(
    135deg,
    var(--product-header-gradient-start) 0%,
    var(--product-header-gradient-end) 100%
  );
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;

  display: none !important;
}

.product-flavor {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--brown);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Product Image Container */
.product-image-container {
  position: relative;
  padding: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to bottom,
    var(--product-image-bg-start) 0%,
    var(--product-image-bg-end) 100%
  );

  height: auto;
  width: 100%;
}

.product-pedestal {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  max-height: 100%;
  max-width: 100%;
  background: var(--product-pedestal-bg);
  border-radius: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none !important;
  z-index: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter: none !important;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Product Details */
.product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: transparent !important;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-dark);
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0;
}

.product-pricing .current-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--product-price-green);
  line-height: 1;
}

.product-pricing .original-price {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--product-price-gray);
  text-decoration: line-through;
  line-height: 1;
}

.shop-now-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.shop-now-btn:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--product-shadow);
}

/* Swiper Navigation Buttons */
.productsSwiper .swiper-button-next,
.productsSwiper .swiper-button-prev {
  color: var(--brown);
  width: 50px;
  height: 50px;
  background: var(--product-button-bg);
  border-radius: 50%;
  box-shadow: 0 4px 15px var(--product-shadow);
  transition: all 0.3s ease;
}

.productsSwiper .swiper-button-next:hover,
.productsSwiper .swiper-button-prev:hover {
  background: var(--product-button-white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px var(--shadow-dark);
}

.productsSwiper .swiper-button-next::after,
.productsSwiper .swiper-button-prev::after {
  font-size: 24px;
  font-weight: bold;
}

.productsSwiper .swiper-button-next {
  right: 10px;
}

.productsSwiper .swiper-button-prev {
  left: 10px;
}

/* Mobile Responsive Styles for Products Carousel */
@media (max-width: 767px) {
  .productsSwiper .swiper-slide {
    width: 85%;
    max-width: 60vw;
  }

  .productsSwiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.4;
    transform: scale(0.9);
  }

  .productsSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }

  .products-carousel-wrapper .product-details {
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }

  .product-card-carousel {
    max-width: 100%;
  }

  .product-header {
    padding: 1rem 1.2rem;
  }

  .product-flavor {
    font-size: 1.8rem;
  }

  .product-tagline {
    font-size: 0.75rem;
  }

  .product-image-container {
    padding: 0;
  }

  .product-pedestal {
    width: 100%;
    height: 100%;
  }

  .product-img {
    width: 100%;
    height: auto;
  }

  .product-details {
    padding: 1.2rem;
  }

  .products-carousel-wrapper .product-title {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .product-pricing .current-price {
    font-size: 1rem;
  }

  .product-pricing .original-price {
    font-size: 1rem;
  }

  .shop-now-btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
  }

  .productsSwiper .swiper-button-next,
  .productsSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .productsSwiper .swiper-button-next::after,
  .productsSwiper .swiper-button-prev::after {
    font-size: 20px;
  }

  .productsSwiper .swiper-button-next {
    right: 5px;
  }

  .productsSwiper .swiper-button-prev {
    left: 5px;
  }
}

/* -----------------------------------------FAQ Section ------------------------------------------ */
.faq-section {
  background: transparent !important;
  padding: 5rem 0 3rem 0;
  min-height: 100vh;
  background-color: var(--faq-background) !important;
}

.faq-section .container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-section .main-title {
  font-size: 4.5rem;
}

.faq-section .main-title-highlight-text {
  font-size: 4rem;
  margin: 0.5rem;
  padding: 0.15rem 1.5rem;
  color: var(--brown) !important;
}

.faq-section .questions-banner {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--brown);
  font-size: 3.5rem;
  font-weight: bold;
  padding: 0.2em 1.2em 0.1em 1.2em;
  border-radius: 0px;
  transform: rotate(-8deg);
  margin-top: 0.1em;
  letter-spacing: 1px;
}

.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .faq-item {
  background: var(--faq-item-background) !important;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 50px !important;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.faq-section .faq-item:hover {
  transform: translateY(0px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-section .faq-question {
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: var(--faq-item-background) !important;
  border-bottom: 0px solid var(--faq-item-background) !important;

  position: relative;
  height: auto;
  min-height: 100px;
}

.faq-section .faq-question h3 {
  color: var(--faq-item-text) !important;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
  line-height: 1.4;
  box-sizing: border-box;

  padding-left: 1rem;
}

.faq-section .toggle-icon {
  color: var(--faq-item-text) !important;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-left: 1rem;

  display: none !important;
}

.faq-section .toggle-icon.active {
  transform: rotate(45deg);
  color: #90ee90;
}

.faq-section .faq-answer {
  max-height: auto !important;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--faq-item-background) !important;

  padding: 0 !important;
  text-align: center;
  padding: 0 1rem !important;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* FAQ Hover Effects */
.faq-section .faq-item:hover .faq-answer {
  max-height: 200px; /* Adjust this value based on your content */
}

.faq-section .faq-item:hover .toggle-icon {
  transform: rotate(45deg);
  color: #90ee90;
}

.faq-section .faq-answer p {
  padding: 0 !important;
  margin: 0;
  color: var(--faq-item-text) !important;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.faq-section .connect-section {
  background: var(--accent-gold) !important;
  border-radius: 12px;
  padding: 0 !important;
  margin-top: 0 !important;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.faq-section .connect-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 100%;
}

.faq-section .connect-content p {
  color: var(--brown) !important;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.faq-section .connect-btn {
  background: var(--brown) !important;
  color: var(--accent-gold) !important;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-section .connect-btn:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

.faq-section .connect-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-section .connect-btn:hover i {
  transform: translateX(3px);
}

/* Responsive Design for FAQ */
@media (max-width: 1200px) {
  .faq-section .main-title {
    font-size: 3.5rem;
  }
  .faq-section .questions-banner {
    font-size: 2.8rem;
  }
  .faq-section .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .faq-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.8rem;
  }

  .faq-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .faq-section .toggle-icon {
    color: #2d1b69;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-left: 0rem;
  }

  .faq-section .faq-question {
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
    padding-top: 1rem;
  }

  /* FAQ Hover Effects - Mobile */
  .faq-section .faq-item:hover .faq-answer {
    max-height: 150px; /* Smaller height for mobile */
  }

  .faq-section .faq-item:hover .toggle-icon {
    transform: rotate(45deg);
    color: #90ee90;
  }

  .faq-section .questions-banner {
    font-size: 1rem;
    padding: 0.15em 1em 0.1em 1em;
    margin-top: 0;
  }
  .faq-section .faq-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0rem;
  }
  .faq-section .connect-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .faq-section .connect-section {
    padding: 1.5rem 1rem;
  }
}

/* -----------------------------------------Footer Section ------------------------------------------ */
.footer {
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  padding: 4rem 0 2rem 0;
  margin: 0%;
  color: #fff;

  box-sizing: border-box;

  position: relative;
  overflow: hidden;
}

.footer .footer-left-overlay-image {
  position: absolute;
  bottom: -2rem;
  left: -3rem;
  height: 100%;
  z-index: 5;
}

.footer .footer-left-overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;

  position: relative;
  z-index: 10;
}

.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 0rem;

  justify-content: space-between;
  align-items: start;
}

/* Logo Column */
.footer .logo-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer .logo .logo-hashtag {
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 800;
}

.footer .social-media {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

.footer .social-icon {
  background: #33333300;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;

  height: 30px;
  width: 30px;
  border: 1px solid #ffffff73;
}

.footer .social-icon:hover {
  background: #444444;
  transform: translateY(-2px);
}

.footer .social-icon i {
  font-size: 0.9rem;
  color: #fff;
}

.footer .social-icon:hover i {
  color: #3fc3d7;
}

/* Links Column */
.footer .links-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer .column-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer .footer-links li a {
  color: #fff !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
}

.footer .footer-links li a:hover {
  color: #00bfff;
}

.footer .footer-links li a.active-link {
  color: #00bfff;
}

/* Contact Column */
.footer .contact-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer .contact-info p {
  color: #fff !important;
  font-size: 1rem;
  margin: 0;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
}

/* Form Column */
.footer .form-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer .form-group {
  display: flex;
  flex-direction: column;
}

.footer .form-group input,
.footer .form-group textarea {
  background: var(--primary-dark);
  border: 1px solid #666666;
  border-radius: 6px;
  padding: 1rem;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.footer .form-group input::placeholder,
.footer .form-group textarea::placeholder {
  color: #cccccc;
}

.footer .form-group input:focus,
.footer .form-group textarea:focus {
  outline: none;
  border-color: #00bfff;
}

.footer .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.footer .send-btn {
  color: #000;
  border: none;

  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;

  width: auto !important;
  max-width: 120px !important;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #3fc3d7;
  box-shadow: 0px 10px 80px rgba(17, 184, 209, 0.4);
  border-radius: 70px;
  font-family: "Montserrat", sans-serif;
}

.footer .send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

/* Copyright Bar */
.footer .copyright-bar {
  padding-top: 2rem;
  text-align: center;
}

.footer .copyright-line {
  height: 1px;
  background: #666666 !important;
  margin-bottom: 2rem;
}

.footer .copyright-text {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

.footer .designer-link {
  color: #00bfff !important;
  text-decoration: none;
  font-weight: bold;
}

.footer .designer-link:hover {
  text-decoration: underline;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer .form-column {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer .form-column {
    grid-column: span 1;
  }

  .footer .social-media {
    justify-content: center;
  }

  .footer .logo {
    justify-content: center;
  }

  .footer .column-title {
    text-align: center;
  }

  .footer .footer-links {
    align-items: center;
  }

  .footer .contact-info {
    align-items: center;
    text-align: center;
  }

  .footer .footer-left-overlay-image {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    height: 100%;

    width: 100%;

    display: flex;
    justify-content: start;
    align-items: end;
    z-index: 5;
  }

  .footer .footer-left-overlay-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 3rem 0 1.5rem 0;
  }

  .footer .container {
    padding: 0 1rem;
  }

  .footer .logo-text {
    font-size: 1.5rem;
  }

  .footer .social-icon {
    width: 40px;
    height: 40px;
  }

  .footer .send-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* -----------------------------------------Experts Section ------------------------------------------ */
.experts-header-section {
  background: var(--primary-dark);
  padding: 5rem 0 0rem 0;
  height: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.experts-header-section .container {
  max-width: 100vw;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Header Section with Title and Chess Piece */
.experts-header-section .experts-header {
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0rem;
  position: relative;
}

.experts-header-section .title-section {
  position: relative;
  width: 100%;
  z-index: 2;
}

.experts-header-section .main-title {
  font-size: 7.5rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.9;
  position: relative;
  z-index: 3;
}

.experts-header-section .title-line {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0rem;
  margin-top: 2rem;
  width: 100%;
}

.experts-header-section .title-line.top .title-line-text {
  font-size: calc(70vw / 20 * 2) !important;
}

.experts-header-section .title-line.bottom .title-line-text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.experts-header-section .title-line.bottom .title-line-text-span {
  width: 60vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(60vw / 8 * 2);
  white-space: nowrap;
}

.experts-header-section .title-line img {
  width: auto;
  height: calc(70vw / 17 * 1.7);
  object-fit: contain;
}

.experts-header-section .title-line.bottom img {
  height: calc(60vw / 8 * 1.5);
  width: 40vw;
  object-fit: fill;
}

.experts-header-section .chess-icon {
  position: relative;
  z-index: 3;
  width: 30vw;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-left: auto;
}

.experts-header-section .chess-icon-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  margin-right: -1rem;
}

.experts-header-section .chess-icon .king-icon {
  position: absolute;
  top: calc(70vw / 17 * -0.5);
  left: 0;
  width: 100%;
  height: calc(70vw / 17 * 1.7);
}

/* Desktop vs Mobile Display Control */
.desktop-experts {
  display: flex;
}

.mobile-experts {
  display: none;
}

/* Horizontal Cards Layout - Desktop */
.experts-portraits-section {
  background: var(--primary-dark);
  padding: 0rem 0 0rem 0;
  height: auto;
  position: relative;
  overflow: hidden;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.experts-portraits-section .container {
  max-width: 100vw;
  padding: 0;
  width: 100%;
  height: 100%;

  top: 0 !important;
}

.experts-portraits-section .experts-portraits {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  box-sizing: border-box;
}

.experts-portraits-section .cards {
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  gap: 0rem;
  height: 100%;
  margin-top: 8rem;
  justify-content: center;
  align-items: center;
}

.experts-portraits-section .cards li {
  list-style: none;
  flex: 1;
  width: 100%;
}

.experts-portraits-section .card {
  height: 100%;
  min-height: auto;
  padding: 0px;

  border-radius: 20px;

  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;

  padding: 0.5rem;
}

.experts-portraits-section .card:nth-child(1) {
  transform: rotate(-7deg);
  margin-right: -5rem;
  margin-left: 2vw;
}

.experts-portraits-section .card:nth-child(2) {
  transform: rotate(10deg);
  margin-left: -3rem;
}

.experts-portraits-section .card:nth-child(3) {
  transform: rotate(-10deg);
  margin-left: -4rem;
}

.experts-portraits-section .card:nth-child(4) {
  margin-right: -2rem;
  margin-left: -4rem;
  z-index: 10;
}

.experts-portraits-section .card:nth-child(5) {
  z-index: 5;
  transform: rotate(8deg);
  margin-right: 2vw;
}

.experts-portraits-section .card:hover {
  transform: scale(1.02) rotate(0deg) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  z-index: 100 !important;
}

.experts-portraits-section .card:hover img {
  filter: grayscale(0%) !important;
  z-index: 10 !important;
}

.experts-portraits-section .card:nth-child(1):hover {
  transform: rotate(0deg) scale(1.02) !important;
  z-index: 10 !important;
}

/* Card Content Layout */
.experts-portraits-section .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  position: relative;
  aspect-ratio: 2/3;

  padding: 0.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  margin: 0;

  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    #e6c200 100%
  ) !important;
}

.experts-portraits-section .portrait-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 0rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experts-portraits-section .portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;

  border-radius: 20px;
}

.experts-portraits-section .portrait-image-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.experts .card.grayscale .portrait-image img {
  filter: grayscale(100%);
}

.experts .card.color .portrait-image img {
  filter: grayscale(0%);
}

.experts .inset-circle {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: var(--accent-gold);

  z-index: 105;
}

.experts .inset-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Text Styling */
.experts .card-text {
  margin-top: 2rem;
  color: var(--text-light);
}

.experts .card-text h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.experts .card-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .experts .main-title {
    font-size: 3.5rem;
  }

  .experts .cards {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .experts .cards li {
    max-width: 280px;
    min-width: 220px;
  }

  .experts .portrait-image {
    width: 100%;
    height: 100%;
  }

  .experts .inset-circle {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  /* Show mobile, hide desktop */
  .desktop-experts {
    display: none;
  }

  .mobile-experts {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0rem 0 0rem 0;
    height: auto;
  }

  .experts-header-section {
    background: var(--primary-dark);
    padding: 0rem 0 0rem 0;
    height: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .experts .main-title {
    font-size: 2.5rem;
  }

  .experts .experts-header {
    flex-direction: column;
    gap: 2rem;
    margin: 0;
    margin-bottom: 1rem;
    align-items: center;
  }

  .experts-header-section .title-line {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
  }

  .experts .chess-piece {
    align-self: flex-end;
  }

  .experts-portraits-section-mobile {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    background-color: var(--primary-dark);

    padding: 0;
    margin: 2rem 0 0 0;
  }

  .experts-portraits-section-mobile .experts-portraits {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel {
    width: 100%;
    height: 100%;
    padding: 0;

    position: relative !important;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-wrapper {
    width: 100%;
    height: 100%;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide
    .mobile-expert-card {
    width: 100%;
    max-width: 95vw;
    height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide
    .mobile-expert-card
    .mobile-portrait-image {
    width: 100%;
    height: 100%;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide
    .mobile-expert-card
    .mobile-portrait-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 3px solid var(--accent-gold);
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide
    .mobile-expert-card
    .mobile-inset-circle {
    position: absolute;
    bottom: 15px;
    left: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--text-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: var(--accent-gold);
    z-index: 10;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .swiper-slide
    .mobile-expert-card
    .mobile-inset-circle
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Blog Section Styles */
.blog {
  width: 100%;
  padding: 80px 0;
  background: #000;
  position: relative;
}

.blog .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-family: "Freeman", sans-serif;
}

.blog-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-gray);
  font-family: "Freeman", sans-serif;
}

.blog-swiper-container {
  position: relative;
}

.blog-swiper {
  width: 100%;
  padding-bottom: 80px;
}

.blog-swiper .swiper-wrapper.r {
  display: flex;
  align-items: stretch !important;
}

.blog-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.blog-date {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-gray);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

.blog-edit {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-gold);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.4;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  flex: 1;
}

.blog-excerpt {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 2px;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: var(--accent-gold);
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.blog-page {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-gray);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.blog-page.active {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.blog-page:hover:not(.active) {
  background: rgba(245, 223, 159, 0.2);
  color: var(--primary-dark);
}

.blog-nav-arrow {
  font-size: 1.2rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: color 0.3s ease;
  margin-left: 10px;
}

.blog-nav-arrow:hover {
  color: var(--accent-gold);
}

/* Mobile Responsiveness for Blog */
@media (max-width: 768px) {
  .blog {
    padding: 60px 0;
  }

  .blog .container {
    padding: 0 20px;
  }

  .blog-title {
    font-size: 2.5rem;
  }

  .blog-subtitle {
    font-size: 1rem;
  }

  .blog-header {
    margin-bottom: 40px;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  .blog-excerpt {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .blog .container {
    padding: 0 15px;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-image {
    height: 160px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-pagination {
    gap: 10px;
  }

  .blog-page {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .experts .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 !important;
    width: 70%;
  }

  .experts .card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .experts-portraits-section .card {
    z-index: 10 !important;
  }
}

/* Mobile Pagination Styles */

.experts-portraits-section-mobile
  .experts-portraits
  .mobile-experts-carousel
  .swiper-pagination {
  bottom: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.experts-portraits-section-mobile
  .experts-portraits
  .mobile-experts-carousel
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--accent-gold);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.experts-portraits-section-mobile
  .experts-portraits
  .mobile-experts-carousel
  .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-gold);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .products-range .buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .products-range .add-to-cart {
    width: 100%;
    background: transparent;
    border: 1.5px solid #bdbdbd;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.7em 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
  }

  .products-range .buy-now {
    width: 100%;
    background: transparent;
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.7em 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
  }
}

@media (min-width: 768px) {
  .desktop {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}

.shop-by-goal .product-details {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.shop-by-goal .flavor {
  color: var(--accent-gold);
  font-size: 1rem;
}

.shop-by-goal .nutrition-info {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.shop-by-goal .price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-light);
}

.shop-by-goal .main-image {
  width: 30%;
  height: auto;
  margin-bottom: 2rem;

  position: relative;
  z-index: 1;
}

.shop-by-goal .main-image-container {
  width: 100%;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shop-by-goal .main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  animation: upDown 3s ease-in-out infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* --------------------------------------------------------------Responsive Design -------------------------------------------------------------- */
.shop-by-goal .shop-by-goal-mobile {
  display: none;
}

.shop-by-goal .shop-by-goal-desktop {
  display: flex;
}

@media (max-width: 768px) {
  .shop-by-goal {
    min-height: auto;
    background-color: var(--primary-dark);
    padding: 4rem 0 0rem 0;
  }

  .shop-by-goal .container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0rem;
    gap: 0rem !important;

    box-sizing: border-box;
  }

  .shop-by-goal .section-header {
    margin-bottom: 0rem !important;
  }

  .shop-by-goal .products-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0rem !important;
    width: 100%;
    padding: 0rem 0rem;

    margin-bottom: 0rem !important;
  }

  .shop-by-goal .product-row {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem !important;
  }

  .shop-by-goal .shop-by-goal-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0rem 0rem;
  }

  .shop-by-goal .shop-by-goal-mobile-swiper {
    width: 100%;
    height: 100%;
  }

  .shop-by-goal .shop-by-goal-mobile .product-card-container.swiper-wrapper {
    height: 100%;
    width: auto;
  }

  .shop-by-goal .shop-by-goal-mobile .product-card-mobile.swiper-slide {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .shop-by-goal .shop-by-goal-mobile .product-card {
    width: 100%;
    height: 350px;
    background-color: transparent;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;

    box-sizing: border-box;
  }

  .shop-by-goal .shop-by-goal-mobile .product-card:hover {
    transform: translateY(-5px);
  }

  .shop-by-goal .shop-by-goal-mobile .swiper-pagination {
    bottom: 10px !important;
  }

  .shop-by-goal .shop-by-goal-mobile .swiper-pagination-bullet {
    background: var(--accent-gold);
    opacity: 0.5;
  }

  .shop-by-goal .shop-by-goal-mobile .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-gold);
  }

  .shop-by-goal .shop-by-goal-desktop {
    display: none;
  }

  .shop-by-goal .shop-by-goal-desktop {
    display: none;
  }

  .shop-by-goal .product-image {
    height: 60%;
    width: 100%;
  }

  .shop-by-goal .product-image img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .shop-by-goal .main-title {
    font-size: 2rem;
  }

  .shop-by-goal .product-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shop-by-goal .goals-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shop-by-goal .product-details,
  .shop-by-goal .nutrition-info,
  .shop-by-goal .benefits {
    flex-direction: column;
    gap: 0.5rem;

    display: none !important;
  }

  /* main image */
  .shop-by-goal .main-image {
    width: 100%;
    height: 100%;

    margin-top: -3rem !important;
  }

  .shop-by-goal .main-image-img {
    display: none;
  }

  .shop-by-goal .main-image-container {
    width: auto;
    height: 250px;
  }

  .shop-by-goal .main-image-container img {
    width: 100%;
    height: 100%;
    display: block !important;
  }
}

/* Swiper Goals Section - Card Scaling */
.goals-section.swiper {
  display: block !important;
  grid-template-columns: none !important;

  position: relative;
}

.goals-section.swiper .swiper-wrapper {
  overflow-y: visible !important;
  height: 100% !important;
}

.goals-section .swiper-slide {
  transition: all 0.3s ease;
  transform: scale(0.8);
  opacity: 0.7;
  width: 30%;
}

@keyframes identifier {
  0% {
    scale: 0.5;
  }
  100% {
    scale: 1;
  }
}

.goals-section .swiper-slide-active {
  transform: scale(1.5);
  opacity: 1;
  z-index: 2;
  animation: identifier 1s ease;
  width: 40%;
  height: 100%;
}

.goals-section .swiper-slide-prev,
.goals-section .swiper-slide-next {
  transform: scale(0.7);
  opacity: 0.8;
  height: 100%;
}

.goals-section .goal-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;

  position: relative;
}

.goals-section .goal-image {
  height: 80%;
  width: 100%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.goals-section .swiper-slide-active .goal-image {
  height: 100%;
}

.goals-section .goal-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2);
  transition: all 0.3s ease;
  transform: scale(0.6);

  padding-bottom: 1.5rem;

  margin-bottom: 2rem !important;
}

.goals-section .swiper-slide-active .goal-image img {
  height: 100%;
  filter: brightness(1) contrast(1.1);
  transform: scale(0.9);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem !important;

  box-sizing: border-box;
}

.goals-section .goal-title {
  font-size: 1rem !important;
  font-weight: 500;
  color: #f3e4af !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;

  font-family: "freeman", cursive;

  position: absolute;
  bottom: 2rem;
  right: 0%;
  transform: translateX(0%);
  width: auto;
  text-align: center;
  box-sizing: border-box;
  background-color: #71684b;
  padding: 0.25rem 1rem;
  border-radius: 1px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.goals-section .swiper-slide-active .goal-title {
  position: absolute;
  bottom: 1rem;
  text-align: center;
  transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .goals-section .swiper-slide {
    transform: scale(0.9);
  }

  .goals-section .swiper-slide-active {
    transform: scale(1.1);
  }

  .goals-section .swiper-slide-prev,
  .goals-section .swiper-slide-next {
    transform: scale(0.95);
  }

  .goals-section .goal-image img {
    max-width: 100px;
  }

  .goals-section .swiper-slide-active .goal-image img {
    max-width: 120px;
    object-fit: contain !important;
  }
}

@media (max-width: 480px) {
  .goals-section .swiper-slide {
    transform: scale(0.95);
  }

  .goals-section .swiper-slide-active {
    transform: scale(1.05);
  }

  .goals-section .goal-image img {
    width: 30vw;
    object-fit: contain !important;
  }
}

/* -----------------------------------------Shop By Budget & Combos Sections ------------------------------------------ */
/* Common styles for both budget and combos sections */
.shop-by-budget,
.shop-by-combos {
  background-color: var(--primary-dark);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Specific padding differences */
.shop-by-budget {
  padding: 2rem 0;
}

.shop-by-combos {
  padding: 5rem 0 0rem 0;
}

/* Common container styles */
.shop-by-budget .container,
.shop-by-combos .container {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Common products layout */
.shop-by-budget .products-budget,
.shop-by-combos .products-combos {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* Common products container */
.shop-by-budget .budget-products-container,
.shop-by-combos .combos-products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: -3rem;
  width: 100%;
  height: 100%;
}

/* Common main image container */
.shop-by-budget .budget-main-image-container,
.shop-by-combos .combos-main-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Common main image styles */
.shop-by-budget .budget-main-image-container img,
.shop-by-combos .combos-main-image-container img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  animation: bottleUpDown 3s ease-in-out infinite;
}

@keyframes bottleUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Common main image text styles */
.shop-by-budget .budget-main-image-container h2,
.shop-by-combos .combos-main-image-container h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-gold);
}

.shop-by-budget .budget-main-image-container p,
.shop-by-combos .combos-main-image-container p {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-light);
}

/* Common card styles */
.shop-by-budget .card-budget,
.shop-by-combos .card-combos {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Common card image styles */
.shop-by-budget .card-budget img,
.shop-by-combos .card-combos img {
  width: 100%;
  height: 70%;
  object-fit: contain;
  animation: zoomInProduct 1s ease;
}

/* Common card text styles */
.shop-by-budget .card-budget h2,
.shop-by-combos .card-combos h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent-gold);
}

.shop-by-budget .card-budget p,
.shop-by-combos .card-combos p {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-light);
}

.shop-by-budget .card-budget .price,
.shop-by-combos .card-combos .price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-light);
}

/* Common wrapper styles */
.shop-by-budget .shop-budget-wrapper,
.shop-by-combos .shop-combos-wrapper {
  width: 100%;
  height: 100%;
  margin-top: 3rem;
  position: relative;
  max-width: 580px;
}

/* Common swiper styles */
.shop-by-budget .shop-budget-wrapper .budget-swiper,
.shop-by-combos .shop-combos-wrapper .combos-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.shop-by-budget .shop-budget-wrapper .swiper-wrapper,
.shop-by-combos .shop-combos-wrapper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

/* Common slide styles */
.shop-by-budget .shop-budget-wrapper .card-budget-slide,
.shop-by-combos .shop-combos-wrapper .card-combos-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget,
.shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Common slide image styles */
.shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget img,
.shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

/* Common slide title styles with specific differences */
.shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget h2 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-top: 0.5rem;

  font-family: "freeman", cursive !important;

  background-color: #71684b;
  padding: 0.25rem 1rem;
}

.shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos h2 {
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  color: var(--accent-gold);
  margin-top: 0.5rem;

  font-family: "freeman", cursive !important;

  background-color: #71684b;
  padding: 0.25rem 1rem;
}

/* Common navigation button styles */
.shop-by-budget .shop-budget-wrapper .swiper-button-next,
.shop-by-budget .shop-budget-wrapper .swiper-button-prev,
.shop-by-combos .shop-combos-wrapper .swiper-button-next,
.shop-by-combos .shop-combos-wrapper .swiper-button-prev {
  width: auto;
  height: 30px;
  top: 45%;
  transform: translateY(-50%);
  margin-top: 0;
}

.shop-by-budget .shop-budget-wrapper .swiper-button-next,
.shop-by-combos .shop-combos-wrapper .swiper-button-next {
  right: -2rem;
}

.shop-by-budget .shop-budget-wrapper .swiper-button-prev,
.shop-by-combos .shop-combos-wrapper .swiper-button-prev {
  left: -2rem;
}

.shop-by-budget .shop-budget-wrapper .swiper-button-prev img,
.shop-by-combos .shop-combos-wrapper .swiper-button-prev img {
  transform: rotate(180deg);
  object-fit: contain;
}

.shop-by-budget .shop-budget-wrapper .swiper-button-next::after,
.shop-by-budget .shop-budget-wrapper .swiper-button-prev::after,
.shop-by-combos .shop-combos-wrapper .swiper-button-next::after,
.shop-by-combos .shop-combos-wrapper .swiper-button-prev::after {
  display: none;
}

/* Mobile styles for budget and combos sections */
.shop-by-budget .shop-by-budget-mobile,
.shop-by-combos .shop-by-combos-mobile {
  display: none;
}

.shop-by-budget .shop-by-budget-desktop,
.shop-by-combos .shop-by-combos-desktop {
  display: flex;
}

.combos-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;

  justify-items: center;
  align-content: center;
}

.combos-grid h2 {
  font-size: 1rem !important;
  text-align: center !important;
  width: 100% !important;
}

.combos-grid p {
  font-size: 1rem !important;
  text-align: center !important;
  width: 100% !important;
}

/* Common responsive styles */
@media (max-width: 768px) {
  .shop-by-budget,
  .shop-by-combos {
    min-height: auto;
    padding: 4rem 0 0rem 0;
  }

  .shop-by-budget .container,
  .shop-by-combos .container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    gap: 0rem !important;
    box-sizing: border-box;
  }

  .shop-by-budget .section-header,
  .shop-by-combos .section-header {
    margin-bottom: 0rem !important;
  }

  .shop-by-budget .products-budget,
  .shop-by-combos .products-combos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0rem !important;
    width: 100%;
    padding: 0rem 0rem;
    margin-bottom: 0rem !important;
  }

  /* Show mobile, hide desktop */
  .shop-by-budget .shop-by-budget-mobile,
  .shop-by-combos .shop-by-combos-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0rem 0rem;
  }

  .shop-by-budget .shop-by-budget-desktop,
  .shop-by-combos .shop-by-combos-desktop {
    display: none;
  }

  /* Mobile swiper styles */
  .shop-by-budget .shop-by-budget-mobile-swiper,
  .shop-by-combos .shop-by-combos-mobile-swiper {
    width: 100%;
    height: 100%;
  }

  .shop-by-budget .shop-by-budget-mobile .product-card-container.swiper-wrapper,
  .shop-by-combos
    .shop-by-combos-mobile
    .product-card-container.swiper-wrapper {
    height: 100%;
    width: auto;
  }

  .shop-by-budget .shop-by-budget-mobile .product-card-mobile.swiper-slide,
  .shop-by-combos .shop-by-combos-mobile .product-card-mobile.swiper-slide {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .shop-by-budget .shop-by-budget-mobile .product-card,
  .shop-by-combos .shop-by-combos-mobile .product-card {
    width: 100%;
    height: 350px;
    background-color: transparent;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .shop-by-budget .shop-by-budget-mobile .product-card:hover,
  .shop-by-combos .shop-by-combos-mobile .product-card:hover {
    transform: translateY(-5px);
  }

  .shop-by-budget .shop-by-budget-mobile .swiper-pagination,
  .shop-by-combos .shop-by-combos-mobile .swiper-pagination {
    bottom: 10px !important;
  }

  .shop-by-budget .shop-by-budget-mobile .swiper-pagination-bullet,
  .shop-by-combos .shop-by-combos-mobile .swiper-pagination-bullet {
    background: var(--accent-gold);
    opacity: 0.5;
  }

  .shop-by-budget .shop-by-budget-mobile .swiper-pagination-bullet-active,
  .shop-by-combos .shop-by-combos-mobile .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-gold);
  }

  .shop-by-budget .shop-by-budget-mobile .product-image,
  .shop-by-combos .shop-by-combos-mobile .product-image {
    height: 60%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shop-by-budget .shop-by-budget-mobile .product-image img,
  .shop-by-combos .shop-by-combos-mobile .product-image img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .shop-by-budget .shop-by-budget-mobile .product-info,
  .shop-by-combos .shop-by-combos-mobile .product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Show both mobile and desktop swipers on mobile */
  .shop-by-budget .shop-budget-wrapper,
  .shop-by-combos .shop-combos-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .shop-by-budget .shop-budget-wrapper .budget-swiper,
  .shop-by-combos .shop-combos-wrapper .combos-swiper {
    padding: 0rem !important;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }

  .shop-by-budget .shop-budget-wrapper .budget-swiper .swiper-wrapper,
  .shop-by-combos .shop-combos-wrapper .combos-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    padding: 0rem !important;
    display: flex;
    flex-direction: row;
  }

  .shop-by-budget .shop-budget-wrapper .swiper-button-next,
  .shop-by-combos .shop-combos-wrapper .swiper-button-next {
    top: -2rem;
    right: 1rem;
  }

  .shop-by-budget .shop-budget-wrapper .swiper-button-prev,
  .shop-by-combos .shop-combos-wrapper .swiper-button-prev {
    top: -2rem;
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .shop-by-budget .shop-budget-wrapper .budget-swiper,
  .shop-by-combos .shop-combos-wrapper .combos-swiper {
    padding: 0 1rem;
  }

  .shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget img,
  .shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos img {
    height: 80px;
  }

  .shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget h2,
  .shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos h2 {
    font-size: 0.9rem;
  }
}

/* Common swiper scaling styles */
.budget-swiper.swiper,
.combos-swiper.swiper {
  display: block !important;
  grid-template-columns: none !important;
  padding: 1rem 0;
}

.budget-swiper .swiper-slide,
.combos-swiper .swiper-slide {
  transition: all 0.3s ease;
  transform: scale(0.6);
  opacity: 0.7;
}

.budget-swiper .swiper-slide-active,
.combos-swiper .swiper-slide-active {
  transform: scale(1.1) !important;
  opacity: 1;
  z-index: 2;
}

.budget-swiper .swiper-slide-prev,
.budget-swiper .swiper-slide-next,
.combos-swiper .swiper-slide-prev,
.combos-swiper .swiper-slide-next {
  transform: scale(0.9) !important;
  opacity: 0.8;
}

.budget-swiper .card-budget-slide,
.combos-swiper .card-combos-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.budget-swiper .card-budget-slide .card-budget,
.combos-swiper .card-combos-slide .card-combos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.budget-swiper .card-budget-slide .card-budget img,
.combos-swiper .card-combos-slide .card-combos img {
  transition: all 0.3s ease;
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

.budget-swiper .swiper-slide-active .card-budget-slide .card-budget img,
.combos-swiper .swiper-slide-active .card-combos-slide .card-combos img {
  max-width: 150px;
  filter: brightness(1) contrast(1.1);
}

.budget-swiper .card-budget-slide .card-budget h2,
.combos-swiper .card-combos-slide .card-combos h2 {
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent-gold);
  margin-top: 0.5rem;
}

.budget-swiper .swiper-slide-active .card-budget-slide .card-budget h2,
.combos-swiper .swiper-slide-active .card-combos-slide .card-combos h2 {
  font-size: 1rem;
  color: var(--accent-gold);
  font-weight: 500;
}

/* Common transition styles */
.budget-products-container,
.combos-products-container {
  transition: opacity 0.3s ease;
}

.budget-card,
.combos-card {
  transition: all 0.3s ease;
}

/* Common responsive zoom effects */
@media (max-width: 768px) {
  .budget-swiper .swiper-slide,
  .combos-swiper .swiper-slide {
    transform: scale(0.7);
  }

  .budget-swiper .swiper-slide-active,
  .combos-swiper .swiper-slide-active {
    transform: scale(1.1);
  }

  .budget-swiper .swiper-slide-prev,
  .budget-swiper .swiper-slide-next,
  .combos-swiper .swiper-slide-prev,
  .combos-swiper .swiper-slide-next {
    transform: scale(0.8);
  }

  .budget-swiper .swiper-slide-active .card-budget-slide .card-budget img,
  .combos-swiper .swiper-slide-active .card-combos-slide .card-combos img {
    max-width: 120px;
  }

  .budget-swiper .swiper-slide-active .card-budget-slide .card-budget h2,
  .combos-swiper .swiper-slide-active .card-combos-slide .card-combos h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .budget-swiper .swiper-slide,
  .combos-swiper .swiper-slide {
    transform: scale(0.6);
  }

  .budget-swiper .swiper-slide-active,
  .combos-swiper .swiper-slide-active {
    transform: scale(1);
  }

  .budget-swiper .swiper-slide-prev,
  .budget-swiper .swiper-slide-next,
  .combos-swiper .swiper-slide-prev,
  .combos-swiper .swiper-slide-next {
    transform: scale(0.7);
  }

  .budget-swiper .swiper-slide-active .card-budget-slide .card-budget img,
  .combos-swiper .swiper-slide-active .card-combos-slide .card-combos img {
    max-width: 100px;
  }

  .budget-swiper .swiper-slide-active .card-budget-slide .card-budget h2,
  .combos-swiper .swiper-slide-active .card-combos-slide .card-combos h2 {
    font-size: 1rem;
  }
}

/* -----------------------------------------Goals Section ------------------------------------------ */
.shop-by-goal .goals-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  height: 300px;
}

.shop-by-goal .goal-image {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0rem;
  cursor: pointer;
}

.shop-by-goal .goal-image img {
  width: auto;
  height: 300px;
  object-fit: fill;
  filter: brightness(0.8) contrast(1.2);
}

.shop-by-goal .goal-title {
  font-size: 1rem;
  font-weight: bold;

  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-by-goal .shop-by-goal-swiper-button-next {
  position: absolute;
  top: 80%;
  right: -3rem;
}

.shop-by-goal .shop-by-goal-swiper-button-prev {
  position: absolute;
  top: 80%;
  left: -3rem;
}

.shop-by-goal .shop-by-goal-swiper-button-next:after,
.shop-by-goal .shop-by-goal-swiper-button-prev:after {
  display: none;
}

.shop-by-goal .shop-by-goal-swiper-button-next img,
.shop-by-goal .shop-by-goal-swiper-button-prev img {
  width: 2rem;
  height: 2rem;
}

.shop-by-goal .shop-by-goal-swiper-button-next .right-arrow {
  transform: rotate(180deg) !important;
}

@media (max-width: 768px) {
  .shop-by-goal .shop-by-goal-swiper-button-next {
    top: 30%;
    right: 1rem;
  }

  .shop-by-goal .shop-by-goal-swiper-button-prev {
    top: 30%;
    left: 1rem;
  }
}

/* -----------------------------------------Words From Founder Section ------------------------------------------ */
.words-from-founder {
  height: 100%;
  background-color: var(--primary-dark);
  padding: 5rem 0;
  display: flex;
  align-items: center;
}

.words-from-founder .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.words-from-founder .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.words-from-founder .main-title {
  font-weight: bold;
  color: #d4c08d;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.words-from-founder .founder-highlight {
  background-color: #e0d9c4;
  color: #000000;
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
  margin-left: 0.5rem;
  display: inline-block;

  rotate: -5deg;
}

.words-from-founder .founder-content {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 1rem;
}

.words-from-founder .testimonial-box {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.words-from-founder .founder-profile {
  position: absolute;
  top: -50px;
  left: 50px;
  z-index: 10;
}

.words-from-founder .founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  object-fit: contain;

  background-color: #ffffff;
  box-sizing: border-box;
}

.words-from-founder .testimonial-text {
  height: 100%;
  width: 90%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #000000;
  font-size: 1.1rem;
  line-height: 1.8;
  box-sizing: border-box;

  padding-top: 2rem;
}

.words-from-founder .testimonial-text p {
  margin-bottom: 1rem;
  text-align: left;
}

.words-from-founder .founder-signature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.words-from-founder .founder-name {
  display: block;
  color: #8a2be2;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.words-from-founder .founder-title {
  display: block;
  color: #333333;
  font-size: 0.9rem;
  font-weight: normal;
}

.words-from-founder .founder-image-container {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 30%;
  height: 100%;
}

.words-from-founder .founder-running {
  background-color: #ff4500;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.words-from-founder .founder-running-img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  border-radius: 12px;

  position: absolute;
  bottom: 0;
  right: 0;
}

/* Responsive Design for Words From Founder */
@media (max-width: 768px) {
  .words-from-founder {
    height: 100%;
    background-color: var(--primary-dark);
    padding: 2rem 0;
    display: flex;
    align-items: center;
  }

  .words-from-founder .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.8rem;
  }

  .words-from-founder .main-title {
    font-size: 2.5rem;
  }

  .words-from-founder .founder-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem !important;
  }

  .words-from-founder .testimonial-box {
    padding: 1rem 0.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    box-sizing: border-box;
    position: relative;
  }

  .words-from-founder .founder-image-container {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    margin-top: 150px;
  }

  .words-from-founder .founder-running {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .words-from-founder .main-title {
    font-size: 2rem;
  }

  .words-from-founder .founder-highlight {
    padding: 0.25rem 1rem;
    font-size: 0.9em;
  }

  .words-from-founder .testimonial-text {
    font-size: 1rem;
  }
}

/* -----------------------------------------Products Range Section ------------------------------------------ */
.products-range {
  background: var(--primary-dark);
  padding: 5rem 0;
  height: 100%;
}

.products-range .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.products-range .section-header {
  text-align: center;
  margin-bottom: 2.5rem;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.products-range .main-title {
  font-size: 6rem;
  font-weight: bold;
  color: #e9d7a2;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.95;
  position: relative;
  display: inline-block;
}

.products-range .main-title .title-line {
  display: block;
  position: relative;
}

.products-range .main-title .products-banner {
  display: inline-block;
  background: #ede2b7;
  color: #a89c6b;
  font-size: 3rem;
  font-weight: bold;
  padding: 0.3em 1.5em 0.2em 1.5em;
  border-radius: 0px;
  transform: rotate(-8deg);
  margin-top: 0.2em;
  margin-bottom: 0.1em;
  letter-spacing: 1px;
}

.products-range .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  margin-top: 2.5rem;
}

.products-range .product-item {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-range .product-image img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.products-range .product-info {
  width: 100%;
  text-align: left;
  margin-bottom: 0.7rem;
}

.products-range .product-name {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.products-range .product-reviews {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.products-range .stars {
  color: #ffd700;
  font-size: 1rem;
}

.products-range .review-count {
  color: #bdbdbd;
  font-size: 0.95rem;
}

.products-range .product-price {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}

.products-range .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.products-range .add-to-cart {
  width: 100%;
  background: transparent;
  border: 1.5px solid #bdbdbd;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7em 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
}

.products-range .buy-now {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7em 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
}

.products-range .add-to-cart:hover {
  background: #ede2b7;
  color: #222;
  border-color: #ede2b7;
}

.products-range .buy-now:hover {
  background: #ede2b7;
  color: #222;
  border-color: #ede2b7;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-range .main-title {
    font-size: 4rem;
  }
  .products-range .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .products-range {
    background: var(--primary-dark);
    padding: 2rem 0;
    height: 100%;
  }

  .products-range .container {
    padding: 0 0.8rem;
  }

  .products-range .main-title {
    font-size: 2.2rem;
  }
  .products-range .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
  .products-range .product-image img {
    width: 90%;
    height: 150px;
  }

  .products-range .product-name {
    color: var(--text-light);
    font-size: 1rem;
    height: 2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .products-range .product-reviews {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.2rem;
    padding-top: 0.5rem;
  }

  .products-range .stars {
    color: #ffd700;
    font-size: 0.8rem;
  }

  .products-range .product-price {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.7rem;
  }

  .products-range .add-to-cart {
    width: 90%;
    background: transparent;
    border: 1.5px solid #bdbdbd;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5em 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
  }

  .products-range .add-to-cart:hover {
    background: #ede2b7;
    color: #222;
    border-color: #ede2b7;
  }
}

/* -----------------------------------------Reviews Section ------------------------------------------ */
.reviews {
  background-color: var(--primary-dark);
  padding: 5rem 0;
  height: 100%;
  width: 100%;

  background-image: url(images/review-vector.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.reviews .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-top: 7vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews .section-header {
  text-align: center;
  margin-bottom: 2.5rem;

  padding-top: 20rem;
}

.reviews .main-title {
  font-size: 4.5rem;
  color: #6a442f;
}

.reviews .main-title-highlight-text {
  font-size: 3.5rem;
  margin: 0;
  padding: 0.15rem 1.5rem;
}

.reviews .reviews-grid {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 1rem;
}

.reviews .reviews-grid .review-row {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;

  gap: 1rem;
}

.reviews .reviews-grid .review-row .left-column {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews .reviews-grid .review-row .right-column {
  width: 30%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews .reviews-grid .review-row .left-column .left-column-row {
  width: 100%;
  height: 100%;
  gap: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.reviews .reviews-grid .review-row .left-column .left-column-row .card-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem 1rem;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 80px;

  object-fit: contain;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image
  .stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  margin-top: 0.5rem;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image
  .stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-image
  .stars
  i {
  color: #fbbc05;
  font-size: 1.3rem;
}

.reviews .reviews-grid .review-row .left-column .left-column-row .card-item p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #373737;
  text-align: center;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-author
  p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #373737;
  text-align: center;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-column-row
  .card-item
  .review-author
  .name {
  font-weight: 800;
}

.review-author img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
}

.reviews .reviews-grid .review-row .left-column .left-row-card {
  margin-top: 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  background-color: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reviews .reviews-grid .review-row .left-column .left-row-card .review-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews .reviews-grid .review-row .left-column .left-row-card .review-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;

  width: 100%;
  height: 100%;
}

.reviews .reviews-grid .review-row .left-column .left-row-card .review-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #373737;
  text-align: left;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-row-card
  .review-text
  p
  span {
  font-weight: 600;
}

.reviews
  .reviews-grid
  .review-row
  .left-column
  .left-row-card
  .review-text
  p
  span.review-date {
  font-size: 1rem;
  line-height: 1.2;
  color: #373737;
  text-align: left;
  font-weight: 500;
}

.reviews .reviews-grid .review-row .right-column .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reviews .reviews-grid .review-row .right-column .card h3 {
  font-size: 3.5rem;
  color: #696969;
  text-align: center;
}

.reviews .reviews-grid .review-row .right-column .card p {
  font-size: 1.7rem;
  font-weight: 500;
  color: #373737;
  text-align: center;
}

.reviews .reviews-grid .review-row .right-column .card .rating {
  font-size: 5rem;
  font-weight: 700;
  color: #4285f4;
  text-align: center;
}

.reviews .reviews-grid .review-row .right-column .card .stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reviews .reviews-grid .review-row .right-column .card .stars i {
  color: #fcd503;
  font-size: 1.8rem;
}

.reviews .reviews-grid .review-row .right-column .card .google-image {
  width: 100px;
  height: 100px;
  display: flex;
}

.reviews .reviews-grid .review-row .right-column .card .google-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .reviews .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
    margin-top: 7vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reviews .reviews-grid {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 1rem;
  }

  .reviews .reviews-grid .review-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;

    gap: 1rem;
  }

  .reviews .reviews-grid .review-row .left-column {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reviews .reviews-grid .review-row .right-column {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reviews .reviews-grid .review-row .left-column .left-column-row {
    width: 100%;
    height: 100%;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* -----------------------------------------FAQ Section ------------------------------------------ */
.faq-section {
  background: var(--primary-dark);
  padding: 5rem 0 3rem 0;
  min-height: 100vh;
}

.faq-section .container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-section .main-title {
  font-size: 4.5rem;
}

.faq-section .main-title-highlight-text {
  font-size: 4rem;
  margin: 0.5rem;
  padding: 0.15rem 1.5rem;
  color: var(--brown) !important;
}

.faq-section .questions-banner {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--brown) !important;
  font-size: 3.5rem;
  font-weight: bold;
  padding: 0.2em 1.2em 0.1em 1.2em;
  border-radius: 0px;
  transform: rotate(-8deg);
  margin-top: 0.1em;
  letter-spacing: 1px;
}

.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-section .faq-item {
  background: var(--primary-dark) !important;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-section .faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.faq-section .faq-question h3 {
  color: #ece9e6;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
  line-height: 1.4;
  box-sizing: border-box;

  padding-left: 1rem;
}

.faq-section .toggle-icon {
  color: #ece9e6 !important;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.faq-section .toggle-icon.active {
  transform: rotate(45deg);
  color: #90ee90;
}

.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;

  padding-left: 3rem;
  padding-top: 1rem;
}

/* FAQ Hover Effects - Second Section */
.faq-section .faq-item:hover .faq-answer {
  max-height: auto !important; /* Adjust this value based on your content */
}

.faq-section .faq-item:hover .toggle-icon {
  transform: rotate(45deg);
  color: #90ee90;
}

.faq-section .faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
  color: #e4e4e4;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
}

.faq-section .connect-section {
  background: #e2c582;
  border-radius: 12px;
  padding: 2rem 3rem;
  margin-top: 3rem;
}

.faq-section .connect-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-section .connect-content p {
  color: #523122;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.faq-section .connect-btn {
  background: #523122;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-section .connect-btn:hover {
  background: #7a6344;
  transform: translateY(-2px);
}

.faq-section .connect-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-section .connect-btn:hover i {
  transform: translateX(3px);
}

/* Responsive Design for FAQ */
@media (max-width: 1200px) {
  .faq-section .main-title {
    font-size: 3.5rem;
  }
  .faq-section .questions-banner {
    font-size: 2.8rem;
  }
  .faq-section .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .faq-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.8rem;
  }

  .faq-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .faq-section .toggle-icon {
    color: #2d1b69;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-left: 0rem;
  }

  .faq-section .faq-question {
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 150px;
  }

  .faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;

    padding-left: 1rem;
    padding-top: 1rem;
  }

  /* FAQ Hover Effects - Mobile Second Section */
  .faq-section .faq-item:hover .faq-answer {
    max-height: 150px; /* Smaller height for mobile */
  }

  .faq-section .faq-item:hover .toggle-icon {
    transform: rotate(45deg);
    color: #90ee90;
  }

  .faq-section .questions-banner {
    font-size: 1rem;
    padding: 0.15em 1em 0.1em 1em;
    margin-top: 0;
  }
  .faq-section .faq-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0rem;
  }
  .faq-section .faq-item {
    background: var(--accent-gold) !important;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 10px !important;
    cursor: pointer;
  }

  .faq-section .faq-answer p {
    padding: 1rem;
    margin: 0;
    color: #e4e4e4;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 500;
  }

  .faq-section .connect-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .faq-section .connect-section {
    padding: 1.5rem 1rem !important;
    margin-top: 3rem !important;
    height: 100%;
  }
}

/* -----------------------------------------Footer Section ------------------------------------------ */
.footer {
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  padding: 4rem 0 2rem 0;
  margin: 0%;
  color: var(--text-light);

  box-sizing: border-box;

  position: relative;
  overflow: hidden;
}

.footer .footer-left-overlay-image {
  position: absolute;
  bottom: -2rem;
  left: -3rem;
  height: 100%;
  z-index: 5;
}

.footer .footer-left-overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;

  position: relative;
  z-index: 10;
}

.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 0rem;

  justify-content: space-between;
  align-items: start;
}

/* Logo Column */
.footer .logo-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer .logo .logo-hashtag {
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.footer .social-media {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

.footer .social-icon {
  background: #33333300;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;

  height: 30px;
  width: 30px;
  border: 1px solid #ffffff73;
}

.footer .social-icon:hover {
  background: #444444;
  transform: translateY(-2px);
}

.footer .social-icon i {
  font-size: 0.9rem;
  color: #fff;
}

.footer .social-icon:hover i {
  color: #3fc3d7;
}

/* Links Column */
.footer .links-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer .column-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer .footer-links li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
}

.footer .footer-links li a:hover {
  color: #00bfff;
}

.footer .footer-links li a.active-link {
  color: #00bfff;
}

/* Contact Column */
.footer .contact-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer .contact-info p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
}

/* Form Column */
.footer .form-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer .form-group {
  display: flex;
  flex-direction: column;
}

.footer .form-group input,
.footer .form-group textarea {
  background: #fff !important;
  border: 1px solid #666666;
  border-radius: 6px;
  padding: 1rem;
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.footer .form-group input::placeholder,
.footer .form-group textarea::placeholder {
  color: #000000 !important;
}

.footer .form-group input:focus,
.footer .form-group textarea:focus {
  outline: none;
  border-color: #00bfff;
}

.footer .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.footer .send-btn {
  color: #fff !important;
  border: none;

  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;

  cursor: pointer;
  /* transition: all 0.3s ease; */
  margin-top: 0.5rem;

  width: auto !important;
  max-width: 120px !important;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #3fc3d7;
  box-shadow: 0px 10px 80px rgba(17, 184, 209, 0.4);
  border-radius: 70px;
  font-family: "Montserrat", sans-serif;
}

.footer .send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

/* Copyright Bar */
.footer .copyright-bar {
  padding-top: 2rem;
  text-align: center;
}

.footer .copyright-line {
  height: 1px;
  background: #666666;
  margin-bottom: 2rem;
}

.footer .copyright-text {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

.footer .designer-link {
  color: #00bfff;
  text-decoration: none;
  font-weight: bold;
}

.footer .designer-link:hover {
  text-decoration: underline;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer .form-column {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer .form-column {
    grid-column: span 1;
  }

  .footer .social-media {
    justify-content: center;
  }

  .footer .logo {
    justify-content: center;
  }

  .footer .column-title {
    text-align: center;
  }

  .footer .footer-links {
    align-items: center;
  }

  .footer .contact-info {
    align-items: center;
    text-align: center;
  }

  .footer .footer-left-overlay-image {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    height: 100%;

    width: 100%;

    display: flex;
    justify-content: start;
    align-items: end;
    z-index: 5;
  }

  .footer .footer-left-overlay-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 3rem 0 1.5rem 0;
  }

  .footer .container {
    padding: 0 1rem;
  }

  .footer .logo-text {
    font-size: 1.5rem;
  }

  .footer .social-icon {
    width: 40px;
    height: 40px;
  }

  .footer .send-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .footer .logo.mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0rem;
  }

  .footer .logo.mobile .logo-hashtag {
    font-size: calc(100vw / 20 * 2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0;
    margin: 0;
  }
}

/* -----------------------------------------Experts Section ------------------------------------------ */
.experts-header-section {
  background: var(--primary-dark);
  padding: 5rem 0 0rem 0;
  height: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.experts-header-section .container {
  max-width: 100vw;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Header Section with Title and Chess Piece */
.experts-header-section .experts-header {
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0rem;
  position: relative;
}

.experts-header-section .title-section {
  position: relative;
  width: 100%;
  z-index: 2;
}

.experts-header-section .main-title {
  font-size: 7.5rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.9;
  position: relative;
  z-index: 3;
}

.experts-header-section .title-line {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0rem;
  margin-top: 2rem;
  width: 100%;
}

.experts-header-section .title-line.top .title-line-text {
  font-size: calc(70vw / 20 * 2) !important;
}

.experts-header-section .title-line.bottom .title-line-text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.experts-header-section .title-line.bottom .title-line-text-span {
  width: 60vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(60vw / 8 * 2);
  white-space: nowrap;
}

.experts-header-section .title-line img {
  width: auto;
  height: calc(70vw / 17 * 1.7);
  object-fit: contain;
}

.experts-header-section .title-line.bottom img {
  height: calc(60vw / 8 * 1.5);
  width: 40vw;
  object-fit: fill;
}

.experts-header-section .chess-icon {
  position: relative;
  z-index: 3;
  width: 30vw;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-left: auto;
}

.experts-header-section .chess-icon-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  margin-right: -1rem;
}

.experts-header-section .chess-icon .king-icon {
  position: absolute;
  top: calc(70vw / 17 * -0.5);
  left: 0;
  width: 100%;
  height: calc(70vw / 17 * 1.7);
}

/* Desktop vs Mobile Display Control */
.desktop-experts {
  display: flex;
}

.mobile-experts {
  display: none;
}

/* Horizontal Cards Layout - Desktop */
.experts-portraits-section {
  background: var(--primary-dark);
  padding: 0rem 0 0rem 0;
  height: auto;
  position: relative;
  overflow: hidden;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.experts-portraits-section .container {
  max-width: 100vw;
  padding: 0;
  width: 100%;
  height: 100%;

  top: 0 !important;
}

.experts-portraits-section .experts-portraits {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  box-sizing: border-box;
}

.experts-portraits-section .cards {
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  gap: 0rem;
  height: 100%;
  margin-top: 8rem;
  justify-content: center;
  align-items: center;
}

.experts-portraits-section .cards li {
  list-style: none;
  flex: 1;
  width: 100%;
}

.experts-portraits-section .card {
  height: 100%;
  min-height: auto;
  padding: 0px;

  border-radius: 20px;

  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;

  padding: 0.5rem;
}

.experts-portraits-section .card:nth-child(1) {
  transform: rotate(-7deg);
  margin-right: -5rem;
  margin-left: 2vw;
}

.experts-portraits-section .card:nth-child(2) {
  transform: rotate(10deg);
  margin-left: -3rem;
}

.experts-portraits-section .card:nth-child(3) {
  transform: rotate(-10deg);
  margin-left: -4rem;
}

.experts-portraits-section .card:nth-child(4) {
  margin-right: -2rem;
  margin-left: -4rem;
  z-index: 10;
}

.experts-portraits-section .card:nth-child(5) {
  z-index: 5;
  transform: rotate(8deg);
  margin-right: 2vw;
}

.experts-portraits-section .card:hover {
  transform: scale(1.02) rotate(0deg) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  z-index: 100 !important;
}

.experts-portraits-section .card:hover img {
  filter: grayscale(0%) !important;
  z-index: 10 !important;
}

.experts-portraits-section .card:nth-child(1):hover {
  transform: rotate(0deg) scale(1.02) !important;
  z-index: 10 !important;
}

/* Card Content Layout */
.experts-portraits-section .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  position: relative;
  aspect-ratio: 2/3;

  padding: 0.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  margin: 0;

  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    #e6c200 100%
  ) !important;
}

.experts-portraits-section .portrait-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 0rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experts-portraits-section .portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;

  border-radius: 20px;
}

.experts-portraits-section .portrait-image-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.experts .card.grayscale .portrait-image img {
  filter: grayscale(100%);
}

.experts .card.color .portrait-image img {
  filter: grayscale(0%);
}

.experts .inset-circle {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: var(--accent-gold);

  z-index: 105;
}

.experts .inset-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Text Styling */
.experts .card-text {
  margin-top: 2rem;
  color: var(--text-light);
}

.experts .card-text h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.experts .card-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .experts .main-title {
    font-size: 3.5rem;
  }

  .experts .cards {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .experts .cards li {
    max-width: 280px;
    min-width: 220px;
  }

  .experts .portrait-image {
    width: 100%;
    height: 100%;
  }

  .experts .inset-circle {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  /* Show mobile, hide desktop */
  .desktop-experts {
    display: none;
  }

  .mobile-experts {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0rem 0 0rem 0;
    height: auto;
  }

  .experts-header-section {
    background: var(--primary-dark);
    padding: 0rem 0 0rem 0;
    height: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .experts .main-title {
    font-size: 2.5rem;
  }

  .experts .experts-header {
    flex-direction: column;
    gap: 2rem;
    margin: 0;
    margin-bottom: 1rem;
    align-items: center;
  }

  .experts-header-section .title-line {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
  }

  .experts .chess-piece {
    align-self: flex-end;
  }

  .experts-portraits-section-mobile {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    background-color: var(--primary-dark);

    padding: 0;
    margin: 2rem 0 0 0;
  }

  .experts-portraits-section-mobile .experts-portraits {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel {
    width: 100%;
    height: 100%;
    padding: 0;

    position: relative !important;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-wrapper {
    width: 100%;
    height: 100%;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide
    .mobile-expert-card {
    width: 100%;
    max-width: 95vw;
    height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide
    .mobile-expert-card
    .mobile-portrait-image {
    width: 100%;
    height: 100%;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide
    .mobile-expert-card
    .mobile-portrait-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 3px solid var(--accent-gold);
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .mobile-experts-swiper-slide
    .mobile-expert-card
    .mobile-inset-circle {
    position: absolute;
    bottom: 15px;
    left: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--text-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: var(--accent-gold);
    z-index: 10;
  }

  .experts-portraits-section-mobile
    .experts-portraits
    .mobile-experts-carousel
    .swiper-slide
    .mobile-expert-card
    .mobile-inset-circle
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Blog Section Styles */
.blog {
  width: 100%;
  padding: 80px 0;
  background: #000;
  position: relative;
}

.blog .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-family: "Freeman", sans-serif;
}

.blog-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-gray);
  font-family: "Freeman", sans-serif;
}

.blog-swiper-container {
  position: relative;
}

.blog-swiper {
  width: 100%;
  padding-bottom: 80px;
}

.blog-swiper .swiper-wrapper.r {
  display: flex;
  align-items: stretch !important;
}

.blog-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.blog-date {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-gray);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

.blog-edit {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-gold);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.4;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  flex: 1;
}

.blog-excerpt {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 2px;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: var(--accent-gold);
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.blog-page {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-gray);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.blog-page.active {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.blog-page:hover:not(.active) {
  background: rgba(245, 223, 159, 0.2);
  color: var(--primary-dark);
}

.blog-nav-arrow {
  font-size: 1.2rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: color 0.3s ease;
  margin-left: 10px;
}

.blog-nav-arrow:hover {
  color: var(--accent-gold);
}

/* Mobile Responsiveness for Blog */
@media (max-width: 768px) {
  .blog {
    padding: 60px 0;
  }

  .blog .container {
    padding: 0 20px;
  }

  .blog-title {
    font-size: 2.5rem;
  }

  .blog-subtitle {
    font-size: 1rem;
  }

  .blog-header {
    margin-bottom: 40px;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  .blog-excerpt {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .blog .container {
    padding: 0 15px;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-image {
    height: 160px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-pagination {
    gap: 10px;
  }

  .blog-page {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .experts .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 !important;
    width: 70%;
  }

  .experts .card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .experts-portraits-section .card {
    z-index: 10 !important;
  }
}

/* Mobile Pagination Styles */

.experts-portraits-section-mobile
  .experts-portraits
  .mobile-experts-carousel
  .swiper-pagination {
  bottom: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.experts-portraits-section-mobile
  .experts-portraits
  .mobile-experts-carousel
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--accent-gold);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.experts-portraits-section-mobile
  .experts-portraits
  .mobile-experts-carousel
  .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-gold);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .products-range .buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .products-range .add-to-cart {
    width: 100%;
    background: transparent;
    border: 1.5px solid #bdbdbd;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.7em 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
  }

  .products-range .buy-now {
    width: 100%;
    background: transparent;
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.7em 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
  }
}

@media (min-width: 768px) {
  .desktop {
    display: flex !important;
  }
  .mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: flex !important;
  }
}

p.flavor {
  color: var(--white) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;

  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: center !important;
}

span.flavor {
  color: var(--white) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;

  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: center !important;
}

.home-swiper-pagination {
  bottom: 0px !important;
  margin-bottom: -2rem !important;
  height: 50px !important;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-dark);
}

.mobile-menu-logo img {
  width: 50px;
  height: 50px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--accent-gold);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: auto;
}

.mobile-nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
}

/* Show mobile menu toggle on mobile devices */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block !important;
  }

  .nav-links {
    display: none;
  }

  /* Keep all three icons visible on mobile */
  .nav-icons .fas,
  .nav-icons .cart-icon-container {
    display: block !important;
  }
}

/* Animation for mobile menu */
@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-menu.active .mobile-menu-content {
  animation: slideInFromTop 0.3s ease;
}

.mobile-nav-link {
  color: #fff !important;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ============================================
   Override: Show Desktop Layout on Mobile with Scaled Sizing
   For Shop by Goal, Shop by Budget, and Shop by Combos
   ============================================ */
@media (max-width: 768px) {
  /* Force show desktop versions, hide mobile */
  .shop-by-goal .shop-by-goal-mobile {
    display: none !important;
  }
  .shop-by-goal .shop-by-goal-desktop {
    display: flex !important;
  }
  .shop-by-budget .shop-by-budget-mobile,
  .shop-by-combos .shop-by-combos-mobile {
    display: none !important;
  }

  .shop-by-budget .budget-main-image-container-wrapper.shop-by-budget-desktop,
  .shop-by-combos .combos-main-image-container-wrapper.shop-by-combos-desktop{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    order: 5 !important;
    margin: 3rem 0 !important;
  }

  .shop-by-budget .budget-main-image-container.shop-by-budget-desktop,
  .shop-by-combos .combos-main-image-container.shop-by-combos-desktop{
    display: none !important;
  }
  .shop-by-budget .shop-by-budget-desktop,
  .shop-by-combos .shop-by-combos-desktop {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    order: 0 !important;
    position: relative !important;
  }

  .shop-by-budget .shop-by-budget-desktop.left,
  .shop-by-combos .shop-by-combos-desktop.left{
    order: 5 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    width: 100% !important;
  }

  .shop-by-budget .shop-by-budget-desktop.right,
  .shop-by-combos .shop-by-combos-desktop.right{
    order: 4 !important;
    margin-top: 3rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
  }

  .shop-by-budget .card-budget, .shop-by-combos .card-combos {
    max-width: 40vw;
  } 

  /* Reorganize shop-by-goal for mobile: Full-width carousel with products flanking active category */
  .shop-by-goal .container {
    padding: 0 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Restructure products section for mobile - column layout */
  .shop-by-goal .products-section {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .shop-by-goal .main-image-container {
    margin-bottom: 0rem !important;
    margin-top: -8rem !important;
    margin-bottom: 0rem !important;
  }

  .shop-by-goal .main-image {
    width: 100% !important;
    height: 100% !important;
    padding-bottom: 3rem !important;

    order: 3 !important;
    position: relative !important;
  }

  .shop-by-goal .main-image-container img {
   display: none !important;
  }

  /* Hide main-image container image and button on mobile */
  .shop-by-goal .btn-prod {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Make goals carousel full width at top */
  .shop-by-goal .main-image {
    width: 100% !important;
    height: 100px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    order: 1 !important;
    position: relative !important;
    padding: 1rem 0 !important;
  }

  /* Full width goals section carousel - covers full phone width */
  .shop-by-goal .goals-section {
    width: 100% !important;
    max-width: 90vw !important;
    height: 100px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
    padding: 0.5rem 0 !important;
    overflow-y: visible !important;
    box-sizing: border-box !important;
  }

  /* Scale goals carousel slides - centered active with prev/next visible */
  .shop-by-goal .goals-section .swiper-slide {
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    max-width: 25vw;
  }

  .shop-by-goal .goals-section .swiper-slide-active {
    width: 44% !important;
    transform: scale(1.4) !important;
    z-index: 3 !important;
  }

  .shop-by-goal .goals-section .swiper-slide-prev,
  .shop-by-goal .goals-section .swiper-slide-next {
    width: 28% !important;
    transform: scale(0.75) !important;
    opacity: 0.7 !important;
    z-index: 1 !important;
  }

  .shop-by-goal .goal-image {
    height: 75% !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
  }

  .shop-by-goal .goal-image img {
    height: 140px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .shop-by-goal .goal-title {
    font-size: 0.65rem !important;
    margin-top: 0.3rem !important;
    text-align: center !important;
    bottom: 0rem !important;
  }

  .shop-by-goal .goals-section .swiper-slide-active .goal-title {
    font-size: 0.8rem !important;
    font-weight: bold !important;
    bottom: -1rem !important;
  }

  /* Position products to flank the active category in top section */
  .shop-by-goal .products-section {
    position: relative !important;
  }

  /* Create a combined top section: [Product] [Active Category] [Product] */
  .shop-by-goal .product-row.top-row {
    order: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 5 !important;
    order: 0 !important;
  }

  /* Position top products to flank the goals carousel */
  .shop-by-goal .product-row.top-row .product-card {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    height: auto !important;
    min-height: 200px !important;
    padding: 0.6rem !important;
  }

  /* Make goals section position relative so we can overlay products */
  .shop-by-goal .main-image {
    height: 100% !important;
    position: relative !important;
    z-index: 2 !important;
  }

  /* Bottom products row */
  .shop-by-goal .product-row.bottom-row {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    margin-bottom: 0rem !important;
  }

  .shop-by-goal .product-row.bottom-row .product-card {
    flex: 1 !important;
    max-width: 50% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 240px !important;
    padding: 0.75rem !important;
  }

  /* Product card styles */
  .shop-by-goal .product-image {
    height: 60% !important;
    margin-bottom: 0.5rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .shop-by-goal .product-image img {
    max-width: 80px !important;
    height: auto !important;
  }

  .shop-by-goal .product-title {
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
  }

  .shop-by-goal .product-info {
    font-size: 0.6rem !important;
    height: 40% !important;
  }

  .shop-by-goal .main-title {
    font-size: 3.5rem !important;
    margin-bottom: 1rem !important;
  }

  /* Navigation buttons for goals carousel */
  .shop-by-goal .shop-by-goal-swiper-button-next,
  .shop-by-goal .shop-by-goal-swiper-button-prev {
    width: 32px !important;
    height: 32px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    padding: 0.3rem !important;
  }

  .shop-by-goal .shop-by-goal-swiper-button-next {
    right: 3px !important;
    top: 60% !important;
  }

  .shop-by-goal .shop-by-goal-swiper-button-prev {
    left: 3px !important;
    top: 60% !important;
  }

  .shop-by-goal .shop-by-goal-swiper-button-next img,
  .shop-by-goal .shop-by-goal-swiper-button-prev img {
    width: 70% !important;
    height: 70% !important;
    object-fit: contain !important;
  }

  /* Scale down shop-by-budget and shop-by-combos for mobile */
  .shop-by-budget .products-budget,
  .shop-by-combos .products-combos {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  .shop-by-budget .budget-main-image-container img,
  .shop-by-combos .combos-main-image-container img {
    height: 180px !important;
  }
  .shop-by-budget .budget-main-image-container h2,
  .shop-by-combos .combos-main-image-container h2 {
    font-size: 1rem !important;
  }
  .shop-by-budget .budget-main-image-container p,
  .shop-by-combos .combos-main-image-container p {
    font-size: 0.75rem !important;
  }
  .shop-by-budget .card-budget,
  .shop-by-combos .card-combos {
    height: 150px !important;
  }
  .shop-by-budget .card-budget img,
  .shop-by-combos .card-combos img {
    height: 60% !important;
  }
  .shop-by-budget .card-budget h2,
  .shop-by-combos .card-combos h2 {
    font-size: 0.85rem !important;
  }
  .shop-by-budget .card-budget p,
  .shop-by-combos .card-combos p {
    font-size: 0.7rem !important;
  }
  .shop-by-budget .card-budget .price,
  .shop-by-combos .card-combos .price {
    font-size: 0.75rem !important;
  }
  .shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget img,
  .shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos img {
    height: 60px !important;
  }
  .shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget h2,
  .shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos h2 {
    font-size: 0.75rem !important;
  }
  .shop-by-budget .shop-budget-wrapper .card-budget-slide .card-budget p,
  .shop-by-combos .shop-combos-wrapper .card-combos-slide .card-combos p {
    font-size: 0.65rem !important;
  }
  .budget-swiper .swiper-slide,
  .combos-swiper .swiper-slide {
    transform: scale(0.5) !important;
    opacity: 0.6 !important;
  }
  .budget-swiper .swiper-slide-active,
  .combos-swiper .swiper-slide-active {
    transform: scale(1.4) !important;
    opacity: 1 !important;
  }
  .budget-swiper .swiper-slide-prev,
  .budget-swiper .swiper-slide-next,
  .combos-swiper .swiper-slide-prev,
  .combos-swiper .swiper-slide-next {
    transform: scale(0.7) !important;
    opacity: 0.5 !important;
  }
  .budget-swiper .swiper-slide-active .card-budget-slide .card-budget img,
  .combos-swiper .swiper-slide-active .card-combos-slide .card-combos img {
    max-width: 100px !important;
    height: 70px !important;
  }

  .btn-prod {
    background: var(--accent-gold) !important;
    color: var(--primary-dark) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    border-radius: 0.5rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    padding: 0.75rem 0.5rem !important;
    margin-top: 3rem !important;
    width: 100% !important;
    max-width: 40vw !important;
    display: inline-block !important;
    margin: 0 auto !important;
  }
}

/* @media (max-width: 768px) {
  .pin-spacer{
    margin-top: 5vh;
  }
} */

/* Experts Header Two */
.experts-header-two {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.experts-header-two .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 2rem 0;
}

.experts-header-two-title {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.experts-header-two-title-span {
  font-size: 12rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  font-family: "Antonio", sans-serif !important;
  letter-spacing: -0.2vw;
  font-weight: 700 !important;
  transition: transform 0.3s ease-out;
}

/* Scroll-based movement animations */
.experts-header-two-title-span.move-right {
  transform: translateX(0);
}

.experts-header-two-title-span.move-left {
  transform: translateX(0);
}

/* Progressive scroll movement - handled by JavaScript */
.experts-header-two-title-span.move-right {
  transition: transform 0.5s ease-out;
}

.experts-header-two-title-span.move-left {
  transition: transform 0.5s ease-out;
}

.experts-header-two-title-span.middle-span {
  color: var(--experts-middle-span) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .experts-header-two-title-span {
    font-size: 4rem;
  }
}

/* Override pin-spacer margins in experts section */
.experts-portraits-section .pin-spacer {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Fix overflow issue on desktop for experts portraits section */
@media (min-width: 769px) {
  .experts.experts-portraits-section {
    margin-top: -1rem;
  }
}


h1, h2, h3, h4, h5, h6 {
  font-family: "Antonio", sans-serif !important;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-family: "Antonio", sans-serif !important;
}

