html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

p {
  line-height: 2rem;
  margin: 0;
  font-family: poppins, sans-serif;
  font-weight: normal;
}

a {
  font-family: poppins, sans-serif;
}


h1, h2, h3, h4, h5, h6 {
  line-height: 2.5rem;
  margin: 0;
}

h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;

}

.btn-1, .btn-2, .btn-3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 3px;
}

/* ========= PRELOADER (NEW VERSION) ========= */

.preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #000000;
  z-index: 2147483647 !important; /* max-ish */
  overflow: hidden;

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

  /* This allows slide animation */
  transform: translateX(0);
}

/* Text behind bars */
.preloader-name {
  position: absolute;
  text-align: center;
  z-index: index 10;
}

.preloader-name span {
  display: block;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  /* font-size: 1.8rem; */
  color: #fff;
}

.preloader-name .accent {
  /* font-size: 2.2rem; */
  font-weight: 700;
  color: #ffffff;
}

/* Bars layered on top */
.preloader-bars {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 5;
}

/* Each bar container */
.preloader .bar {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Bars fill left → right (unchanged) */
.preloader .inner-bar {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(to bottom, #cdb909, #cdb909);
  
  animation: fillBar 1.5s forwards;
  animation-delay: calc(var(--i) * 0.2s);
}

@keyframes fillBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ========= EXIT ANIMATION (SLIDE RIGHT) ========= */

.preloader.exit {
  animation: slideRight 0.8s ease forwards;
}

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

/* Fade after preloader is off screen */
.preloader.done {
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

/* ========= MOBILE FONT SIZE ========= */
@media (max-width: 767px) {
  .preloader-name span {
    font-size: 4.5rem;
  }
}




/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }

  /* REMOVE SNAP BEHAVIOR COMPLETELY */
  body.scroll #cs-navigation {}
  body.scroll #cs-navigation:before {}
  body.scroll #cs-navigation .cs-ul-wrapper {}

  /* NAV NOW SITS NATURALLY UNDER CAROUSEL */
  #cs-navigation {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: clamp(0.75rem, 2vw, 1.5rem);
    border-radius: 0;

    position: relative;   /* ← NOT fixed anymore */
    top: 0;               /* remove floating */
    left: 0;
    transform: none;      /* remove centering snap */

    z-index: 500;
    transition: none;
    margin: 0 !important;
    font-size: clamp(0.95rem, 1.4vw, 1.5rem);

  }

  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 1;

    border-radius: 0; /* remove curved floating nav */

    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    transition: none;
  }

  #cs-navigation.cs-active:before {
    transform: none;
  }

  #cs-navigation.cs-active .cs-toggle {
    transform: rotate(180deg);
  }

  #cs-navigation.cs-active .cs-ul-wrapper {
    transform: scaleY(1);
    transition-delay: 0.15s;
  }

  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }

  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-logo {
    width: auto;
    max-width: 12.5rem;
    height: 100%;
    margin: 0 auto 0 0;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }

  #cs-navigation .cs-logo img {
    width: clamp(5em, 4vw, 8em);
    object-fit: contain;
  }

  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0 auto;
    background-color: #ffffff;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    transition: transform 0.6s;
  }

  #cs-navigation .cs-nav {
    order: 3;
  }

  #cs-navigation .cs-contact-group {
    display: none;
    position: relative;
    z-index: 10;
  }

  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }

  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }

  #cs-navigation .cs-social {
    display: none;
  }

  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }

  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-225deg);
  }

  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }

  #cs-navigation .cs-box {
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }

  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
  }

  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
  }

  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }

  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
    position: absolute;
    top: 85%;
    left: 0;
    z-index: 1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s;
    transform-origin: top;
  }

  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 4rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: auto;
  }

  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    transform: translateY(-70/16rem);
    transition: transform 0.6s, opacity 0.9s;
  }

  #cs-navigation .cs-li:nth-of-type(1) { transition-delay: 0.05s; }
  #cs-navigation .cs-li:nth-of-type(2) { transition-delay: 0.1s; }
  #cs-navigation .cs-li:nth-of-type(3) { transition-delay: 0.15s; }
  #cs-navigation .cs-li:nth-of-type(4) { transition-delay: 0.2s; }
  #cs-navigation .cs-li:nth-of-type(5) { transition-delay: 0.25s; }
  #cs-navigation .cs-li:nth-of-type(6) { transition-delay: 0.3s; }
  #cs-navigation .cs-li:nth-of-type(7) { transition-delay: 0.35s; }
  #cs-navigation .cs-li:nth-of-type(8) { transition-delay: 0.4s; }
  #cs-navigation .cs-li:nth-of-type(9) { transition-delay: 0.45s; }
  #cs-navigation .cs-li:nth-of-type(10){ transition-delay: 0.5s; }
  #cs-navigation .cs-li:nth-of-type(11){ transition-delay: 0.55s; }
  #cs-navigation .cs-li:nth-of-type(12){ transition-delay: 0.6s; }
  #cs-navigation .cs-li:nth-of-type(13){ transition-delay: 0.65s; }

  #cs-navigation .cs-li-link {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }

  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }

  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }

  #cs-navigation .cs-button-solid {
    display: none;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-navigation .cs-contact-group {
    display: block;
  }
}

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {

  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }

  #cs-navigation .cs-dropdown {
    color: var(--bodyTextColorWhite);
    position: relative;
  }

  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
    opacity: 1;
    visibility: visible;
  }

  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }

  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }

  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }

  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
  }

  #cs-navigation .cs-drop-li {
    list-style: none;
  }

  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
    #cs-navigation .cs-logo img {
    width: clamp(7.5em, 4vw, 8.5em);
    /* padding-top: 2rem; */
    height: auto;
    object-fit: contain;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {

  /* REMOVE SNAP */
  body.scroll #cs-navigation {}

  #cs-navigation {
    width: 100%;
    max-width: none;
    height: 6rem;
    padding: clamp(0.75rem, 2vw, 5rem) 0;

    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    border-radius: 0;

    position: relative; /* ← NOT fixed */
    top: 0;
    left: 0;
    transform: none;

    z-index: 10000;
    transition: none;
    margin: 0 !important;
    font-size: clamp(1rem, 2.5vw, 1.2rem);

  }

  #cs-navigation .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    box-sizing: border-box;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-toggle {
    display: none;
  }

  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 2rem;
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
  }

  #cs-navigation .cs-logo img {
    width: clamp(5em, 4vw, 8em);
    padding-top: 2rem;
    height: auto;
    object-fit: contain;
  }

  #cs-navigation .cs-contact-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;

  }

  #cs-navigation .cs-phone {
    font-size: 1em;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
    padding-top: 2rem;
  }

  #cs-navigation .cs-phone-icon {
    width: 1.5em;
    height: auto;
    display: block;
    
  }

  #cs-navigation .cs-social {
    height: 2rem;
    opacity: 1;
    display: none;
    visibility: visible;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    padding-top: 2rem;

  }

  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }

  #cs-navigation .cs-social-link:hover {
    background-color: black;
  }

  #cs-navigation .cs-social-link:hover .cs-social-icon {
    opacity: 1;
    filter: grayscale(1) brightness(10000%);
  }

  #cs-navigation .cs-social-icon {
    width: 0.75rem;
    height: auto;
    opacity: 0.6;
    display: block;
    transition: opacity 0.3s;
  }

  #cs-navigation .cs-ul-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #cs-navigation .cs-ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }

  #cs-navigation .cs-li {
    list-style: none;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    flex: none;
  }

  #cs-navigation .cs-li-link {
    font-size: 1em;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }

  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }

  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }

  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 2rem;
    color: #fff;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }

  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #fff;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

  #cs-navigation .cs-button-solid:hover {
    color: #1a1a1a;
  }

  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}

/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {

  #cs-navigation .cs-social {
    display: flex;
  }
}

/* Logo link specifically */
.cs-logo,
.cs-logo img {
  -webkit-tap-highlight-color: transparent;
}

.cs-logo:active {
  background-color: transparent;
}

img {
  -webkit-touch-callout: none;
}


/* =====================================
===============CAROUSEL #1============= */

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateZ(0); /* Safari GPU lock */
}

.carousel-track {
  display: flex;
  align-items: center;
  width: max-content;       /* 🔑 prevents width snapping */

  background-color: black;
  padding: 2rem 0;

  animation: slide 8s linear infinite;

  will-change: transform;
  transform: translateZ(0);
}

/* FORCE CONSISTENT FLOW */
.carousel-track > * {
  flex-shrink: 0;            /* 🔑 prevents collapsing */
  display: flex;
  align-items: center;
}

/* Text items */
.carousel-item {
  padding: 0 20px;
  color: white;

  font-family: "Anton", sans-serif;
  font-weight: 100;
  letter-spacing: 2px;

  margin: 0;                 /* remove <p> defaults */
}

/* Icon spacing */
.carousel-track img {
  margin-right: 20px;
}

/* SAFER animation (no percentages tied to element width) */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50vw);
  }
}





/* =====================================
===============CAROUSEL #2============= */
.carousel-container2 {
  width: 100%;
  overflow: hidden;
  position: relative;

  transform: translateZ(0); /* Safari GPU lock */
}

.carousel-track2 {
  display: flex;
  align-items: center;
  width: max-content;       /* 🔑 prevents width snapping */

  background-color: rgb(255, 255, 255);
  padding: 2rem 0;
  border: 2px solid black;

  animation: slide 10s linear infinite;

  will-change: transform;
  transform: translateZ(0);
}

/* FORCE CONSISTENT FLOW */
.carousel-track2 > * {
  flex-shrink: 0;            /* 🔑 prevents collapsing */
  display: flex;
  align-items: center;
}

/* Text items */
.carousel-item2 {
  padding: 0 20px;
  color: rgb(0, 0, 0);

  font-family: "Anton", sans-serif;
  font-weight: 100;
  letter-spacing: 2px;

  margin: 0;                 /* remove <p> defaults */
}

/* Icon spacing */
.carousel-track2 img {
  margin-right: 20px;
}


.carousel-item2 p {
    font-family: "Anton", sans-serif !important;
}

/* SAFER animation (no percentages tied to element width) */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}




/* =====================================
===============CAROUSEL #3 (FIXED)============= */

.carousel-container3 {
  width: 100%;
  height: 220px;              /* 🔑 lock height so Safari doesn’t jump */
  overflow: hidden;
  position: relative;

  transform: translateZ(0);  /* GPU lock for iOS */
}

.carousel-track3 {
  display: flex;
  align-items: center;
  width: max-content;        /* 🔑 prevents width snapping */

  background-color: #ffffff;
  padding: 1.5rem 0;

  animation: slide3 10s linear infinite;

  will-change: transform;
  transform: translateZ(0);
}

/* FORCE ALL CHILDREN TO BE CONSISTENT */
.carousel-track3 > * {
  flex-shrink: 0;             /* 🔑 prevents collapsing */
  display: flex;
  align-items: center;
}

/* Image spacing */
.carousel-img {
  height: 150px;
  margin-right: 5rem;        /* replaces padding-left */
}

/* SAFER ANIMATION (viewport-based, not % width) */
@keyframes slide3 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}



/* =====================================
===============HERO SECTION============= */

.hero-section {
    position: relative;
    background-image: url(../images/background/shop-bgs/shop-bg-desktop.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;

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

    padding: 2rem 1rem;
    padding-top: 4rem;

    height: 100vh;
    margin: 0 auto;
    line-height: 2rem;
    z-index: 1;
}

/* BLACK OVERLAY */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0; /* covers entire hero */
    background: rgba(0, 0, 0, 0.65); /* adjust opacity */
    z-index: 0; /* behind text */
}

/* ENSURE TEXT STAYS ABOVE OVERLAY */
.hero-section > * {
    position: relative;
    z-index: 2;
}


.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
  /* border: 2px solid red; */
}

.hero-content h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 3rem;
  margin: 0;
  color: #f9f9f9; /* glowing yellow text */

  /* GLOW EFFECT */
  text-shadow: 
    0 0 8px rgba(250, 250, 250, 0.8),   /* soft glow */
    0 0 20px rgba(255, 255, 255, 0.6),  /* bigger outer glow */
    0 0 35px rgba(255, 255, 255, 0.4);  /* extra depth */
}

.hero-content p {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.btn-1 {
  display: block;        /* ← makes width apply */
  width: 120px;          /* ← sets actual width */
  margin: 0 auto;
  border: 1px solid white;
  border-radius: 5px;
  text-decoration: none;
  background: rgb(0, 0, 0);
  padding: 15px;
  color: rgb(255, 255, 255);
}

@media (min-width: 728px) {
    .hero-section {
        background-image: url(../images/background/shop-bgs/shop-bg-tablet.png)
    }
}

@media (min-width: 1130px) {
    .hero-section {
        background-image: url(../images/background/shop-bgs/shop-bg-desktop.png)
    }

}


@media (min-width: 1500px) {
    .hero-section {
        background-image: url(../images/background/shop-bgs/shop-bg-desktop.png);        
        height: 70vh;
    }
}



/* =====================================
===============CTA #1============= */

.cta-section {
  background-color: #2e2624;
}


.cta-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  color: white;
}

.cta-content h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}



/* =========================
   SHOP SECTION
========================= */

.shop-section {
  padding: 5rem 1rem 0rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-content {
  text-align: center;
  margin-bottom: 2.5rem;
}

.shop-content h1 {
  font-family: "Anton", sans-serif;
  letter-spacing: 3px;
  line-height: 3rem;
  padding-bottom: 3rem;
}

.shop-content p {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   CARD LAYOUT
========================= */

.shop-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  margin: 2rem;
}

/* Product Card */
.shop-card {
  background: #f7f5f2;
  border-radius: 1.25rem;
  border: 1px solid black;
  padding: 1.5rem;
  min-width: 210px;
  max-width: 1200px;
  margin: 0 auto;

  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}



/* Image */
.shea-img {
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: 2px solid black;
}

.shea-img img {
  width: 100%;
  display: block;
  border-radius: 0.75rem;
}

/* Text */
.shop-card h1 {
    font-size: 1.8rem;
    line-height: 2.5rem;
    padding-bottom: .8rem;
}

.shop-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 1.5px;
  line-height: 2.5rem;
  margin: 0.75rem 0 1rem;
  font-family: "Anton", sans-serif;

}

.shop-card p a {
  font-style: italic;
  text-decoration: underline;
  color: #000;
  line-height: 1.2rem;
}


/* Button */
.btn-2 {
  display: inline-block;
  background: #fff196;
  border: 2px solid black;
  color: #000;
  padding: .5rem 1rem .5em 1rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
}



/* =========================
   DESCRIPTION
========================= */

.product-description {
  max-width: 1000px;
  line-height: 1.7rem;
  text-align: center;
}


@media (min-width: 1024px) {
  .shop-container {
    flex-direction: row;
    align-items: flex-start; /* ← KEY LINE */
    gap: 4rem;
  }

  .product-description {
    text-align: left;
  }

}


/* =====================================
===============FOOTER============= */

.footer-content {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.quick-links-box ul {
  margin: 0;
}

.quick-links-box ul li {
  list-style: none;
}

.copyright {
  display: flex;
  justify-content: center;
}



/* =========================
   INGREDIENTS (PREMIUM)
   ========================= */
.ingredients-block{
  /* easy theme tweaks */
  --ink: #111;
  --muted: rgba(17, 17, 17, 0.72);
  --line: rgba(0,0,0,0.14);
  --card: rgba(255,255,255,0.78);
  --shadow: 0 14px 30px rgba(0,0,0,0.12);
  --accent: #f1d36b; /* soft gold accent */

  width: 100%;
  margin-top: clamp(26px, 4vw, 46px);
}

.ingredients-block__top{
  margin-bottom: clamp(14px, 2.4vw, 22px);
}

.ingredients-block__title{
  margin: 0 0 8px 0;
  color: var(--ink);
  letter-spacing: 1.2px;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.05;
}

.ingredients-block__sub{
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.6;
  max-width: 62ch;
}

/* grid */
.ingredients-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

/* card */
.ingredient{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;

  padding: clamp(14px, 2vw, 18px);
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);

  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  overflow: hidden;
}

.ingredient::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 220px at 10% 0%,
      rgba(241, 211, 107, 0.28),
      rgba(241, 211, 107, 0) 55%);
  opacity: 0.9;
}

.ingredient:hover{
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

/* icon chip */
.ingredient__icon{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.14);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);

  color: #111;
}

.ingredient__icon svg{
  width: 22px;
  height: 22px;
}

/* text */
.ingredient__name{
  margin: 0 0 6px 0;
  font-size: clamp(16px, 1.55vw, 18px);
  letter-spacing: 0.2px;
  color: var(--ink);
  line-height: 1.2;
}

.ingredient__desc{
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.55;
  max-width: 58ch;
}

.ingredients-footnote{
  margin-top: clamp(12px, 2vw, 16px);
  color: rgba(17,17,17,0.62);
  font-size: 13px;
}

/* responsive */
@media (max-width: 820px){
  .ingredients-grid{
    grid-template-columns: 1fr;
  }
  .ingredient{
    border-radius: 16px;
  }
  .ingredient__icon{
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
}

@media (max-width: 420px){
  .ingredient{
    padding: 14px;
  }
}






/* ============================= */
/* ===== WHY SECTION (CARDS) ==== */
/* ============================= */

.why{
  padding: clamp(70px, 8vw, 110px) 18px;
  background: transparent; /* IMPORTANT: no section background */
  position: relative;
  overflow: hidden; /* keeps svg clean inside section */
}

.why__container{
  width: min(1500px, 100%);
  margin: 0 auto;
  text-align: center;
}

/* ===== SVG BACKGROUND ON THIS SECTION ONLY ===== */
.why::before{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image: url("../images/vectors/vectors.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  opacity: 12;
  mix-blend-mode: normal;
}

/* make sure section content sits above the SVG */
.why > *{
  position: relative;
  z-index: 1;
}

.why__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24,201,255,0.35);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  background: transparent;
}

.why__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #18C9FF;
  box-shadow: 0 0 14px rgba(24,201,255,0.35);
}

.poppins {
    font-family: "Poppins", sans-serif;
}

.why__title{
  margin: 16px 0 10px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.7vw, 56px);
  color: rgba(255,255,255,0.92);
}

.why__title-accent{
  color: #000;
  font-family: "Anton", sans-serif;
  letter-spacing: 5px;
  font-weight: normal;

}

.why__subtext{
  margin: 0 auto 34px;
  max-width: 900px;
  color: rgb(36, 36, 36);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.7;
}

/* Cards grid */
.why__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}


/* ===== TRUE INWARD BORDER GLOW ===== */
.why__card{
  position: relative;
  text-align: left;
  padding: clamp(22px, 2.4vw, 34px);
  border-radius: 22px;

  background: #f7f5f2; /* pure black inside */
  border: 1px solid rgba(0, 0, 0, 0.55);

}

/* INWARD GLOW LAYER */
.why__card::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;

  /* strengthen the inward effect */
  opacity: 0.9;
}

/* Crisp inner rim (helps “inward border” feel) */
.why__card::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;

}

/* keep content above overlays */
.why__card > *{
  position: relative;
  z-index: 1;
}


.why__card:hover{
  transform: translateY(-3px);
}
.why__card:hover::before{ opacity: 0.85; }
.why__card:hover::after{ filter: blur(16px); }

/* ===== icon tile (matches the “blue square” look) ===== */
.why__icon{
  width: 62px;
  height: 62px;
  border-radius: 14px;
  border: 1px solid black;
  display: grid;
  place-items: center;

  background-color: #fff196;
  font-size: 22px;

  box-shadow:
    0 16px 34px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.08) inset;

  margin-bottom: 18px;
}

.why__card-title{
  margin: 0 0 10px;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 2rem;
  color: rgb(0, 0, 0);
  font-family: "Anton", sans-serif;
  font-weight: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.why__card-text{
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  font-size: 16px;
}



/* 2 columns */
@media (min-width: 720px){
  .why__grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

}

/* 3 columns */
@media (min-width: 1020px){
  .why__grid{
    grid-template-columns: repeat(4, 2fr);
    gap: 26px;
  }
}

/* mobile: keep svg visible */
@media (max-width: 600px){
  .why::before{
    background-position: center;
    background-size: cover;
    opacity: 0.55;
  }

  .why {
      padding-top: 0;
      margin: 1.2rem;    
  }

}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .why__card{ transition: none; }
  .why__card:hover{ transform: none; }
}










/* =====================================
===============CTA #2============= */

.cta-2-section {
  margin-bottom: 0;
}

.cta-2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}


.cta-2-header {
  background-color:#2e2624;
  padding: 2rem;
  color: white;
}

.cta-2-header h1 {
    line-height: 4rem;
}

.cta-2-paragraph {
  background-color: #2e2624;
  padding: 2rem;
  color: white;
}


.cta-2-paragraph p{
  padding-bottom: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.btn-3{
  display: block;        /* ← makes width apply */
  width: 120px;          /* ← sets actual width */
  margin: 0 auto;
  background:#f3b819 ;
  padding: 10px;
  border: 2px solid black;
  border-radius: 5px;
  color: rgb(0, 0, 0);
}

.btn-3 a {
  text-decoration: none;
  list-style: none;
  font-family: "Anton", sans-serif;
  color: rgb(0, 0, 0);

}


/* =====================================
===============FOOTER============= */

footer {
  /* border: 2px solid red; */
  background-color: #fff8e6;
}


.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;   /* ← THIS FIXES THE SHIFT */
  padding: 2rem 0;
}


.footer-logo img {
  width: clamp(7rem, 8vh, 10rem);
}


.quick-links-box ul {
  margin: 0;
  padding: 1rem;
}

.quick-links-box ul li {
  list-style: none;
  font-family: Poppins, sans-serif;

}

.quick-links-box ul li a {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s;
}


.copyright {
  display: flex;
  justify-content: center;
  padding: 2rem 0rem 2rem 0rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-evenly;
    text-align: left;
    gap: 2rem;
  }

  .quick-links-box ul {
    padding: 0;
  }
}

@media (min-width: 1024px) {
    .footer-content {
    flex-direction: row;
    justify-content: space-evenly;
    text-align: left;
    gap: 2rem;
  }

  .quick-links-box ul {
    padding: 0;
  }
}

@media (min-width: 1200px) {
    .footer-content {
    flex-direction: row;
    justify-content: space-evenly;
    text-align: left;
    gap: 2rem;
  }

  .quick-links-box ul {
    padding: 0;
  }
}

@media (min-width: 1500px) {
    .footer-content {
    flex-direction: row;
    justify-content: space-evenly;
    text-align: left;
    gap: 2rem;
  }

  .quick-links-box ul {
    padding: 0;
  }
}






/* CLAMPS FOR TYPOGRAPHY */

p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 2.2rem;
}

li {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  line-height: 3rem;
}

button {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 6rem;

} 
h2 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 6rem;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 6rem;
}

h4 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 6rem;
}

h5 {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 6rem;
}

h6 {
  font-size: clamp(1rem, 2vw, 1.3rem);
} 

.preloader span {
  font-size: clamp(3rem, 6vw, 5rem);
}

.carousel-track, .carousel-track2 {
  font-size: clamp(1.4rem, 4vw, 3rem);
}

.carousel-item, .carousel-item2 {
  font-size: 1.2em; /* inherits and stays proportional */
}

.carousel-item2 {
  font-size: 1.2em;
}

.carousel-track img {
  width: 1.2em;     /* scales exactly with text */
  height: auto;
}





/* ========== TRANSITIONS ==========*/
:root{
  --rv-ease: cubic-bezier(0.22, 1, 0.36, 1); /* smooth + natural */
  --rv-dur: 1000ms;    /* slower animation */
  --rv-y: 18px;       /* a touch more float */
  --rv-stagger: 200ms;/* still quick, but smoother */
}


/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-group > *{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Base reveal */
.reveal{
  opacity: 0;
  transform: translate3d(0, var(--rv-y), 0);
  filter: blur(6px);
  transition:
    opacity var(--rv-dur) var(--rv-ease),
    transform var(--rv-dur) var(--rv-ease),
    filter var(--rv-dur) var(--rv-ease);
  will-change: opacity, transform, filter;
}

.reveal.is-in{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

/* Group stagger: apply to a container, its direct children will stagger */
.reveal-group > *{
  opacity: 0;
  transform: translate3d(0, var(--rv-y), 0);
  filter: blur(6px);
  transition:
    opacity var(--rv-dur) var(--rv-ease),
    transform var(--rv-dur) var(--rv-ease),
    filter var(--rv-dur) var(--rv-ease);
  will-change: opacity, transform, filter;
}

.reveal-group.is-in > *{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

/* Delay is injected by JS via --d */
.reveal[style*="--d"],
.reveal-group > *[style*="--d"]{
  transition-delay: var(--d);
}


/* GLOBAL: change this number to control how soon reveals start AFTER the preloader */
:root { --after-preloader-delay: 0ms; }  /* try 0ms, 100ms, 200ms */

/* While preloader is up, force reveals to NOT animate yet */
html.preloader-active .reveal,
html.preloader-active .reveal-group > * {
  transition-delay: 9999ms !important;
}

/* Once preloader is done, normal delays apply */
html.preloader-done .reveal {
  transition-delay: calc(var(--d, 0ms) + var(--after-preloader-delay)) !important;
}
html.preloader-done .reveal-group > * {
  transition-delay: calc(var(--d, 0ms) + var(--after-preloader-delay)) !important;
}







