*{
  font-family: cabin;
}

/* Top bar */
.top-strip {
    background: #000;
    color: #fff;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    height: 40px;
}

.top-strip small {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.top-strip small:first-child {
    animation: fadeInOut 10s infinite;
}

.top-strip small:nth-child(2) {
    opacity: 0;
    animation: fadeInOut 10s infinite;
    animation-delay: 5s;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-20px);
    }
    5% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
    45% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
    50% {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
}


/* --- Basic Reset and Body Styles (for context) --- */

/* --- Main Cart Icon Button on the page --- */
#cart-icon-btn {
    position: relative;
    padding: 10px 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 99; 
    font-size: 1em;
    border-radius: 5px;
}

/* --- Cart Count Badge --- */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #c4a962;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Cart Sidebar Container --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%; 
    max-width: 500px; 
    height: 100%;
    background-color: #ffffff; 
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    z-index: 100;
    overflow-y: auto;

    /* Hidden State (Off-screen) */
    transform: translateX(100%); 
    /* Transition for smooth animation */
    transition: transform 0.4s ease-in-out; 
}

/* Open State (Visible on screen) */
.cart-sidebar.is-open {
    transform: translateX(0);
}

/* --- Top Header Bar (Gold Bar) --- */
.header-bar {
    background-color: #c4a962; 
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 0.9em;
    width: 100%;
}

/* --- Cart Title and Close Button --- */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.cart-header h1 {
    font-size: 1.5em;
    font-weight: 400;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

/* --- Empty Cart Message --- */
.empty-message {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 1em;
    color: #666;
    padding: 0 24px;
}

/* --- Navigation Buttons --- */
.cart-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 24px;
}

.nav-button {
    display: block;
    text-align: center;
    padding: 16px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    border: none;
}

.nav-button:hover {
    background-color: #333333;
    color: #ffffff;
}

/* --- "Show desktop" Button at the bottom --- */
.show-desktop-btn {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    padding: 10px;
    margin-top: 20px;
    text-align: right;
    width: 100%;
}

/* --- Cart Items Container --- */
#cart-items {
    padding: 24px;
}

/* --- Individual Cart Item --- */
.cart-item {
    margin-bottom: 20px;
}


/* --- Cart Product Image --- */
.cart-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

/* --- Product Details Section --- */
.details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.details h4 {
    font-size: 1.1em;
    font-weight: 500;
    margin: 0;
}

/* --- Quantity Controls Box --- */
.qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background: white;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 2px;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty {
    min-width: 20px;
    text-align: center;
    font-size: 16px;
}

.remove-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    padding: 0;
    margin-left: 5px;
}

.remove-btn:hover {
    color: #333;
}

/* --- Price --- */
.price {
    text-align: right;
    font-size: 1.1em;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

/* --- Cart Footer Section --- */
.cart-footer {
    padding: 0 24px 24px 24px;
    margin-top: 30px;
}

.selling-fast {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 15px;
}

.green-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.order-now-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.order-now-link:hover {
    text-decoration: underline;
}

/* --- Expandable Sections --- */
.expandable-section {
    border-top: 1px solid #e0e0e0;
    padding: 18px 0;
}

.expandable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.plus-icon {
    font-size: 22px;
    font-weight: 300;
    color: #666;
}

/* --- Delivery Info --- */
.delivery-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 25px 0;
    font-size: 14px;
    line-height: 1.6;
}

/* --- Checkout Button --- */
.checkout-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 18px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 500;
}

.checkout-btn:hover {
    background: #333;
}

/* --- Free Shipping Text --- */
.free-shipping {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* --- Media Query for Mobile/Full-Width View --- */
@media (max-width: 500px) {
    .cart-sidebar {
        max-width: 100%;
    }
}

/* HERO SECTION */
.hero-section {
    height: 100vh;
    background: url('../images/cover-image.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: .9;
    background-color: #00000063;
}

.hero-content {
    max-width: 700px;
    margin-left: 60px;
    color: #fff;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    margin-top: 15px;
}



/* Buttons */
.btn-outline {
    border: 1px solid #fff;
    padding: 12px 35px;
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* product section */

/* Section Background */
.product-section {
  background: transparent;
  position: relative;
}

/* Golden Marquee */
.gold-marquee {
  width: 100%;
  background: #c6a23a; /* gold color */
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: scroll-marquee 15s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.marquee-item img {
  width: 40px;
  height: auto;
}

.marquee-item span {
  font-size: 24px;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Animation */
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 600px) {
  .marquee-item span {
    font-size: 16px;
  }

  .marquee-item img {
    width: 20px;
  }
}


/* Headings and text */
.small-title {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #6b644c;
}
.stars {
  font-size: 20px;
  margin-top: 10px;
}
.description {
  max-width: 400px;
  font-size: 16px;
}

/* Rotating Circular Text */
.rotate-text {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -10%;
  left: -50px;
  animation: rotateCircle 12s linear infinite reverse;
  z-index: 3;
  pointer-events: none; /* so it doesn't block anything */
}

.rotate-text svg {
  width: 100%;
  height: 100%;
  fill: none; /* ensures no background fills */
}

.rotate-text svg text {
  font-size: 40px;
  fill: black;
  font-weight: bold;
  letter-spacing: 2px;
}



@keyframes rotateCircle {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

        .about-section {
            max-width: 1200px;
            width: 100%;
            padding: 60px 40px;
        }

        .about-label {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            color: #1a1a1a;
        }

        .main-heading {
            position: relative;
            display: inline-block;
            margin-bottom: 40px;
        }

        .main-heading h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 400;
            color: #1a1a1a;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        .emphasis {
            position: relative;
            display: inline-block;
        }

        .circle-highlight {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110%;
            height: auto;
            z-index: -1;
            color: #b8a565;
        }

        .oval-svg {
            width: 150%;
            height: auto;
            display: block;
            position: relative;
            right: 20px;
        }

        .description {
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.8;
            color: #2a2a2a;
            margin-bottom: 35px;
            max-width: 700px;
        }

        .read-more {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #1a1a1a;
            text-decoration: none;
            padding-bottom: 5px;
            border-bottom: 2px solid #1a1a1a;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: #b8a565;
            border-bottom-color: #b8a565;
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 40px 20px;
            }

            .about-label {
                margin-bottom: 20px;
            }

            .main-heading {
                margin-bottom: 30px;
            }

            .main-heading h1 {
                font-size: clamp(2rem, 8vw, 3rem);
            }

            .description {
                margin-bottom: 25px;
            }

            .circle-highlight {
                width: 115%;
                height: auto;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 30px 15px;
            }

            .circle-highlight {
                width: 120%;
                height: auto;
            }
        }

/* Product Section */

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

/* Image Box (container of both images) */
.img-box {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
}

/* First Image */
.img-main {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  transition: all 0.5s ease;
}

/* Second Image */
.img-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 100%;
  transition: all 0.5s ease;
}

/* Hover Effect — Slide */
.product-card:hover .img-main {
  left: -100%;
}

.product-card:hover .img-hover {
  left: 0;
}

/* Rating Stars */
.rating i {
  color: #000;
  margin-right: 3px;
}

/* Cart Icon Overlay */
.cart-icon {
  position: absolute;
  top: 62%;
  left: 80%;
  transform: translate(-50%, -50%);
  color: #000000;
  background-color: white;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}

/* Show icon ONLY when second image slides in */
.product-card:hover .cart-icon {
  opacity: 1;
}

/* Video Section */
.video-section {
    background: transparent;
}
.video-banner video {
    min-width: 100%;
    min-height: 100%;
    display: inline-block;
    border-radius: 0;
    object-fit: cover;
    vertical-align: baseline;
}

.video-text p {
    font-size: 19px;
    font-weight: 500;
}


/* ingredients section */

.ingredients-section {
    padding: 80px 0;
}

.ingredients-img {
    width: 100%;
    border-radius: 16px;
}

.ingredients-subtitle {
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.ingredients-title {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 20px;
}

.underline-shape {
    width: 180px;
    height: 18px;
    background-image: url('/images/shape.svg'); /* Replace with your underline image */
    background-size: contain;
    
}

.ingredients-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    max-width: 550px;
}

/* marquee */

marquee {
  background-color: black;
  color: white;
  padding: 10px 0;
  font-size: 22px;

}

.you{
  display: flex;
}

/* coverflow slider */



/* About Us */
  .aboutus{
    background-color: transparent;
  }

  .aboutus img{
      width: 60%;
      border-radius: 16px;
  }
  
  .bundle-section {
    width: 100%;
    padding: 30px;
    font-family: sans-serif;
}

.sub-heading {
    font-size: 14px;
    color: #777;
}

.main-heading {
    font-size: 40px;
    margin: 5px 0;
}

.desc {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-slider {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
}

.product-card img {
    width: 100%;
    border-radius: 12px;
}

.product-card h3 {
    font-size: 17px;
    margin: 10px 0 5px;
}

.price {
    font-weight: bold;
    color: #333;
}

/* Slide buttons */
.slide-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 30px;
    padding: 8px 14px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.left-btn {
    left: 10px;
    z-index: 100;
}

.right-btn {
    right: 10px;
}

.promise-section 
  {
    padding: 80px 0;
  }

  .ingredients-img {
      width: 100%;
      border-radius: 16px;
  }

  .ingredients-subtitle {
      letter-spacing: 3px;
      font-size: 14px;
      font-weight: 600;
      color: #555;
  }

  .ingredients-title {
      font-size: 62px;
      font-weight: 700;
      line-height: 1.1;
      margin-top: 20px;
  }

  .underline-shape {
      width: 180px;
      height: 18px;
      background-image: url('/images/shape.svg'); /* Replace with your underline image */
      background-size: contain;
      
  }

  .ingredients-text {
      font-size: 18px;
      line-height: 1.7;
      color: #444;
      max-width: 550px;
  }

  .input input{
    width: 300px;
  }





/* Responsive */
@media only screen and (min-width: 300px) and (max-width:600px) {
  *{
    padding: 0;
    margin: 0;
  }
  body{
    padding: 0;
    margin: 0;
  }
 

  .disclaimer {
      width: 100%;
  }

  .footer-content{
    display: flex;
    flex-direction: column;
  }


}



/* RESPONSIVE */
@media only screen and (max-width: 900px){
  .hero-content {
    margin-left: 20px;
  }

  
  .rotate-text svg text {
    font-size: 30px;
  }

    .hero-content h1 {
        font-size: 45px;
    }

    /* product section */

  .rotate-text {
    width: 130px;
    height: 200px;
    left: 10px;
    top: -20px;
  }

  .banner-track {
    font-size: 18px;
  }

  .ingredients-section
  {
    padding: 20px;
  }

  .ingredients img{
    width: 100%;
  }

  .ingredients,
  .promise{
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    
  }

  .promise-section{
    padding-top: 20px;

  }
  .promise{
    padding: 0px 20px;
    overflow-y: hidden;
  }
  
  .promise img{
    width: 100%;
  }

  .stay-in-touch{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .stay-in-touch h1{
    overflow-y: hidden;
    display: flex;
    margin: auto;
    text-align: center;
  }

}

/* -----------------------------
   Additional responsive improvements
   ----------------------------- */

/* enable scroll snap for horizontal sliders */
.product-slider {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.product-slider > * {
  scroll-snap-align: start;

}


/* Larger breakpoints tweaks */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 56px; }
}

@media (max-width: 992px) {

  .hero-content { max-width: 560px; }
  .hero-content h1 { font-size: 48px; }
  .ingredients-title { font-size: 48px; }
}

@media (min-width: 901px) {
    .nav-left a {
        display: flex;
        justify-content: center;
        align-items: baseline;
        margin-left: 10px;
    }
  }

@media only screen and (max-width:800px) {
  .hero-section {
    height: 100vh;
    background: url('/images/mobile-cover.webp');
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: .9;
    background-color: #000;
}
  
}

@media (max-width: 768px) {
 
  /* Hero */
  .hero-section { height: 70vh; }
  .hero-content { margin-left: 16px; max-width: 92%; }
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 16px; }

  /* Product grid becomes more compact */
  .product-section { padding: 0px 0px;
  overflow: hidden; }
  .product-card { min-width: 220px; padding: 8px; }

  /* Make horizontal slider items take most of viewport on small screens */
  .product-slider > * { min-width: 85%; max-width: 85%; }

  /* Hide big slide buttons on small devices (touch gestures) */
  .slide-btn { display: none; }

  /* Mobile menu styles (sliding drawer) */
  
  /* About/ingredients title sizing */
  .ingredients-title { font-size: 36px; }
  .ingredients-text { font-size: 16px; }
}

@media (max-width: 576px) {
  .hero-content h1 { font-size: 28px; }
  .product-slider > * { min-width: 92%; max-width: 92%; }
  .ingredients-title { font-size: 28px; }
  .search-box { width: 90%; }
}

/* small accessibility + UI polish */
.slide-btn:focus { outline: 3px solid rgba(0,0,0,0.08); }
.product-card img { display: block; }


/* Mobile: 300px - 600px */
@media (max-width: 600px) {
  .newnavbar {
    
    position: absolute;
    /* display: flex; */
    justify-content: space-between;
    width: 100%;


  }

  .logo-disclaimer{

    flex-direction: column;
  }

  .disclaimer {
    font-size: 12px;
    width: 260px;
}

  .nav-left,
  .nav-center {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-right {
    gap: 15px;
    margin-left: auto;
  }

  .nav-center {
    position: static;
    transform: none;
    display: block;
    margin-right: auto;
  }

  .nav-center img {
    height: 40px;
  }

  .mobile-menu {
    width: 280px;
  }

   .rte h1 {
    font-size: 26px;
  }

  .rte h2 {
    font-size: 22px;
  }

  .rte h3 {
    font-size: 18px;
  }

  .rte {
    margin: 50px auto;
    padding: 0 15px;  
  }

    .footer {
      padding: 40px 20px;
      margin-top: 50px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }


}

/* Tablet: 601px - 900px */
@media (min-width: 601px) and (max-width: 900px) {


  .nav-left {
    display: none;
  }

  .nav-wrapper{
    padding: 0px 20px;
  }

  .hamburger {
    display: block;
  }

  .nav-center img {
    height: 50px;
  }

  .nav-right {
    gap: 18px;
  }

  .logo-disclaimer{
    flex-direction: column;
  }

  .disclaimer{
    font-size: 14px;
  }


    .nav-wrapper {

    justify-content: flex-end;
}
.footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

}

/* Laptop: 901px and above */
@media (min-width: 901px) {
  .hamburger,
  .mobile-menu,
  .mobile-menu-overlay {
    display: block;
  }

  .nav-left {
    display: flex;
    justify-content: center;
    align-items: baseline;
    
  }

  .nav-center {
    display: block;
  }


}