/* ===== Copy/Save deterrents for product areas ===== */
.protect-copy {
  -webkit-user-select: none;
  user-select: none;                 /* no text selection */
  -webkit-touch-callout: none;       /* iOS: hide long-press menu */
}

/* images: no drag / no direct events (clicks still go to parent link) */
.protect-copy img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;              /* prevents right-click on the img itself */
}

/* keep interactive controls usable */
.protect-copy a,
.protect-copy button,
.protect-copy [role="button"],
.protect-copy .btn {
  pointer-events: auto;              /* allow clicks */
}

/* allow forms (if any) to work normally inside */
.protect-copy input,
.protect-copy textarea {
  -webkit-user-select: text;
  user-select: text;
  pointer-events: auto;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* put this near the top of your CSS */



body {
  background-color: #ead6c2;
  color: #3e2723;
}

/* Header section start */

/* === Header color override === */

 /* cart side bar css */
 .yonutri-navbar {
        font-family: 'Roboto Condensed', sans-serif;
        position: sticky;
        height: 105px;
        top: 0;
        z-index: 999;
        background-color:#3e2723 ;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-top: 0px;
    }
    .navbar-top{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        max-width: 1500px;
        margin: auto;
        
    }
    .nav-left .shop-link, .nav-left a, .nav-right a {
        color: #FAF9F6;
        font-weight: 400px;
        text-decoration: none;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .nav-right {
        display: flex;
        gap: 1.4rem;
        align-items: center;
    }

    .nav-right a:hover {
        color: #FAF9F6;
    }

    .nav-logo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }
    
.yonutri-navbar.hidden {
  transform: translateY(-100%);
}


    /* cart section sidebar*/
.cart-sidebar 
{
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 20px;
    z-index: 1001;
     border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.cart-sidebar.active 
{
    right: 0;
}   
.cart-header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;  
}    
.cart-header h3 {
          font-size: medium;
        }
        .cart-header i {
          color: #572121 ;
          font-size: medium;
        }
        
        .cart-body{
          margin: 200px 10px 150px 10px;
        }                
.cart-body i {
  display: block;
  text-align: center;
  font-size: 24px; /* optional for size */
   margin: 10px ;  
}        

.cart-body p {

  font-size: 1rem;
  color: #666;
  margin: 20px auto 10px auto;
  text-align: center;
}
.cart-body button {
  padding: 10px 15px;
  background-color: #3e2723;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.cart-body button:hover {
  background-color: #572121;
}
.cart-body i{
  text-align: center;
}

.close-cart 
{
    cursor: pointer;
    font-size: 1.5rem;
}
.overlay 
{
    position: fixed;
    top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
}

.overlay.active 
{
    display: block;
}
/*Responsive adjustments */
@media (max-width: 768px) 
{  
    .cart-sidebar 
    {
      width: 300px;
    }
}
@media (max-width: 480px) 
{
    .cart-sidebar 
    {
        width: 280px;
    }
}

/* hero images css */
 .hero-section {
  width: 100%;
  overflow: hidden;
}

#heroCarousel {
  max-height: 800px;  
 }

#heroCarousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} 
/* Smooth fade transition */
.carousel .carousel-item {
  transition: transform 0.6s ease-in-out; /* default Bootstrap slide */
}

/* footer css start */
/* Footer background set to #3e2723 */
.custom-footer {
  background-color: #3e2723; /* Pink background like the reference image */
  color: #ffffff;
  padding: 60px 50px 30px;
  font-family: 'Arial', sans-serif;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  max-width: 200px;
  line-height: 1.8;
  margin-right: -100px;
}

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer-column p {
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* Logo Column */
.logo-column {
  flex: 1.5;
  max-width: 360px;
}

.logo-circle img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  /* background-color: white; */
  color: white;
  padding: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* .social-icons a:hover {
  background-color: white;
  color: white;
} */

/* Quote & Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;   /* keeps the <p> in middle */
  position: relative;
  margin-top: 30px;
  font-size: 14px;
  width: 100%;
}

.footer-bottom p {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* force © to exact center */
}

.footer-bottom span {
  margin-left: auto;  /* pushes span to the right */
  text-align: right;  /* align both lines to the right */
  font-size: 10px;
}


hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.quote {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  margin: 30px 0;
  color: white;
  margin-bottom: 0px;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .footer-wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    max-width: none;
  }
}

    

/* =========================
   SHARED VARS
========================= */
:root{
  --bg:#3e2723;        /* brand brown */
  --px-per-sec:120;    /* JS uses this to compute duration */
  --duration:16s;      /* fallback; JS overrides for perfect loop */
  --shift:0px;         /* JS sets this to the width to travel */
}

/* =========================
   HERO STRIP (under hero)
   <section class="marque-section">
========================= */
.marque-section{
  --gap: 2rem;               /* space between phrases */
  --marquee-speed: 12s;      /* JS will overwrite */
  background: var(--bg);
  color:#fff;
  padding:14px 0;
  overflow:hidden;
}

.marque-track{
  display:flex;
  gap:var(--gap);
  width:max-content;         /* let content be as wide as needed */
  will-change:transform;
  animation: coupon-marquee var(--marquee-speed) linear infinite;
}

/* phrases in one line with spacing (NO DOTS) */
.marque-content{
  font-weight: 800;
  display:inline-flex;
  gap:var(--gap);
  white-space:nowrap;
  padding-right:var(--gap);  /* keep a little gap between clones */
}

@keyframes coupon-marquee{
  from{ transform:translateX(0); }
  to  { transform:translateX(calc(-1 * var(--shift))); }
}

/* tighter gaps on phones */
@media (max-width:600px){
  .marque-section{ --gap:1.2rem; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .marque-track{ animation:none !important; }
}


/* =========================
   ABOVE FOOTER
   <section class="marquee" id="marquee">
========================= */
.marquee{
  background:var(--bg);
  overflow:hidden;
  width:100%;
  padding:1rem 0;
}

.marquee__track{
  display:flex;
  will-change:transform;
  animation:scroll var(--duration) linear infinite;
}

/* NO DOTS — use flex gap for spacing */
.marquee__content{
  display:inline-flex;
  gap:2rem;                  /* space between phrases */
  white-space:nowrap;
  color:#fff;
  font-weight:800;
  font-size:1.1rem;
  line-height:1;
  flex-shrink:0;             /* keep natural width */
  padding-right:2rem;        /* little space between cloned blocks */
}

@keyframes scroll{
  from{ transform:translateX(0); }
  to  { transform:translateX(calc(-1 * var(--shift))); }
}

@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation:none; }
}


/* =========================
   BELOW FOOTER
   <section class="marquee-alt" id="marqueeAlt">
========================= */
.marquee-alt{
  background:var(--bg);
  overflow:hidden;
  width:100%;
  padding:1rem 0;
}

.marquee-alt__track{
  display:flex;
  will-change:transform;
  animation:scroll var(--duration) linear infinite;
}

/* NO DOTS — use gap */
.marquee-alt__content{
  display:inline-flex;
  gap:2rem;
  white-space:nowrap;
  color:#fff;
  font-weight:800;
  font-size:1.1rem;
  line-height:1;
  flex-shrink:0;
  align-items:center;
  padding-right:2rem;
}

@media (prefers-reduced-motion: reduce){
  .marquee-alt__track{ animation:none; }
}





/*testimonials*/
.flavour-section{
      background-color:#fef9f4;
      padding:40px 20px;
      font-family:'Poppins',sans-serif;
      color:#3e2f20;
    }
    .flavour-content h2{
      text-align:center;
      font-size:2rem;
      margin-bottom:30px;
    }
    .flavour-content h2 span{ color:#6b4226; }

    /* wrapper is important to clip overflow while we shift the track */
    .slider-wrapper{
      overflow:hidden;
      position:relative;
      max-width:1200px;
      margin:0 auto;
    }
    .slider-track{
      display:flex;
      gap:20px;
      transition:transform 0.4s ease;
      will-change:transform;
      padding:0 12px; /* small side padding so first/last card have breathing room */
    }

    .card{
      flex:0 0 calc(25% - 15px); /* 4 per view with gap */
      background:#fff;
      border-radius:12px;
      box-shadow:0 4px 12px rgba(0,0,0,0.08);
      overflow:hidden;
      transition:transform 0.3s ease;
    }
    .card:hover{ transform:translateY(-5px); }

    .video-wrapper{ position:relative; width:100%; height:100%; }
    .video-wrapper video{ width:100%; display:block; border-radius:16px; }

    .video-text{
      position:absolute; bottom:0; width:100%;
      padding:12px 14px;
      background:rgba(0,0,0,0.5);
      color:#fff; font-weight:500; font-size:1rem; text-align:center;
      backdrop-filter:blur(2px);
      border-bottom-left-radius:16px; border-bottom-right-radius:16px;
    }

    .slider-controls{
      display:flex; justify-content:center; gap:30px; margin-top:25px;
    }
    .slider-btn{
      background:#fff; border:2px solid #6b4226; color:#6b4226;
      width:44px; height:44px; border-radius:50%; cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition:background 0.3s, transform 0.2s;
    }
    .slider-btn:hover{ background:#6b4226; color:#fff; transform:scale(1.1); }
    .slider-btn svg{ fill:currentColor; width:20px; height:20px; }

    /* small screens: show fewer per view */
    @media (max-width: 992px){
      .card{ flex:0 0 calc(33.333% - 14px); }
    }
    @media (max-width: 768px){
      .card{ flex:0 0 calc(50% - 10px); }
    }
    @media (max-width: 520px){
      .card{ flex:0 0 100%; }
    }



/*footer background image*/
.footer-banner {
  width: 100%;
  overflow: hidden; /* Prevents accidental scrollbars if image is wider */
}

.footer-banner .hero-background img {
  display: block;
  width: 100%;
  height: auto; /* Keeps the aspect ratio intact */
  object-fit: contain; /* Ensures the whole image shows */
}



/* footer css start */
.custom-footer {
  background-color: #3e2723; /* Chocolate brown */
  color: white;
  padding: 50px 20px 40px;
  font-family: sans-serif;
}

.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-column:not(.logo-column) {
  margin-left: -20px; 
}

.footer-link-group {
  display: flex;
  gap: 24px;             /* smaller gap between the 3 columns */
  flex: 1; 
}
.footer-column {
  flex: 1 1 200px;
  max-width: 200px;
  gap: -1000px;
}

.logo-column {
  max-width: 320px;
  flex: 0 0 300px;       /* fixed width for left block */
  margin-right: 80px;
}

.logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  position: relative;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
  text-decoration: underline;
}

.social-icons a {
  color: #5d4037;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #3e2723;
  color: white;
  transform: translateY(-3px);
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.quote {
  text-align: center;
  font-family:'Poppins',sans-serif;
  font-style: italic;
  margin: 30px 0;
  color: white;
  margin-bottom: 0px;
}

.footer-bottom {
  text-align: center;
  /* padding-top: 20px; */
  font-size: 0.9rem;
}
.custom-footer a {
  text-decoration: none;
 
}
footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

footer p, a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer-column:not(.logo-column) {
    margin-left: 0;
  }
}




/*shop popup button*/
/* SHOP MODAL STYLING */
/* Modal background */
/* Overlay background */
/* Shop Modal Layout */
/* shop hide css start */
/* Hidden by default */
/* shop hide css start */
/* SHOP PANEL */
:root{
  --nav-h: 100px;           /* header height */
  --container: 1200px;      /* site max width */
  --sidebar-w: 360px;       /* sidebar width */
  --cat-item-h: 172px;      /* shorter cards */
   --panel-min: 560px;                    /* minimum open height */
  --panel-boost: 200px;                  /* extra above viewport */
  --panel-max: 1100px; 
}


.shop-panel.show{
  max-height: clamp(var(--panel-min),
                    calc(100vh - var(--nav-h) + var(--panel-boost)),
                    var(--panel-max));
}

/* PANEL */
.shop-panel{
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background:#5dc0b9;
  color:#fff;

  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  max-height: 0;
  transition:max-height .35s ease;
  z-index:2000;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
  height: 500px;
}


/* CONTENT */
.shop-panel-content{
  display:grid;
  grid-template-columns: var(--sidebar-w) 1fr; /* sidebar + grid */
  gap:20px;
  max-width: var(--container);
  margin:0 auto;
  padding: 0 8px 16px 0;   /* flush top/left; tighter bottom */
  align-items:flex-start;
  box-sizing:border-box;
}

/* LEFT SIDEBAR */
a.shop-link{ text-decoration:none; color:inherit; display:block; }
.shop-sidebar{
  width:100%;
  padding:12px 18px;
  background:#ffb300;
  position:relative;
  border-radius:0;
  /* flush to the very left of the viewport */
  margin-left: calc(-1 * max(0px, (100vw - var(--container)) / 2));
}
.shop-sidebar h5{ font-size:1rem; margin:0; padding-left:10px; color:#eee; }

/* make the divider a bit longer (your “hr line”) */
.shop-sidebar::after{
  content:"";
  position:absolute;
  right:0;
  top:-10px;                       /* extend above */
  width:1px;
  height: calc(100% + 470px);       /* extend below */
  background:#173215;
}

/* RIGHT GRID */
.category-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;                        /* tighter vertical space */
  padding:6px 0;
  min-width:0;
  margin-left:-50px;               /* desktop nudge */
}

/* Card */
.category-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  background:#f7f7f7;
  border-radius:15px;
  box-shadow:0 1px 0 rgba(0,0,0,.04) inset;
  min-height: var(--cat-item-h);
  overflow:hidden;                 /* never let content bleed outside */
}

.category-item span{
  font-weight:700;
  color:#3e2723;
  max-width:160px;
  padding-right:20px;
}

/* Image: always fully visible inside the card */
.category-item img{
  flex:0 0 auto;
  max-width:44%;                                  /* keep comfortable margin */
  height:auto;
  max-height: calc(var(--cat-item-h) - 64px);     /* fit within shorter card */
  object-fit:contain;
}

/* === Small-laptop (e.g., 1366×768) === */
@media (max-width:1368px){
  :root{ --cat-item-h: 156px; }                    /* even shorter on small laptops */
  .category-grid{
    margin-left:0;                                 /* remove nudge that caused cutting */
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:14px;
    padding:6px 0;
  }
  .shop-panel-content{ padding:0 6px 14px 0; }     /* no left/top gaps, tighter bottom */
}

/* === Tablet / Phone === */
@media (max-width:1100px){
  :root{ --sidebar-w:320px; }
  .category-grid{ grid-template-columns:repeat(3,1fr); margin-left:0; }
}
@media (max-width:820px){
  .shop-panel-content{ grid-template-columns:1fr; }
  .shop-sidebar{ margin-left:0; width:100%; }
  .category-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:520px){
  .category-grid{ grid-template-columns:1fr; }
}

@media (max-width:1368px){
  :root{ --cat-item-h: 156px; }
}


/*recommended section*/


/* ================== ARCH GRID STYLES ================== */

  :root{
    --page-top:#c9a388;
    --page-bottom:#ead6c2;

    --container-max:100%;
    --grid-gap:20px;
    --arch-height:360px;
    --arch-bg:#a57248;

    --btn:#ffb300;
    --btn-ink:#2b1e17;

    --badge-sky-start:#40C4FF;
    --badge-sky-end:#00BCD4;
    --text:#3e2728;
  }

  *{box-sizing:border-box}
  body{
    margin:0;
    font-family:Montserrat,system-ui,Arial,sans-serif;
    color:var(--text);
    /* background:linear-gradient(180deg,var(--page-top) 0%,var(--page-bottom) 60%,var(--page-bottom) 100%); */
  }

  .yn-love{ padding:40px 14px 64px; }
  .yn-love__title{
    text-align:center; margin:0 0 26px;
    font-weight:900; font-size:clamp(26px,3.2vw,40px);
  }

  .yn-love__grid{
    max-width:var(--container-max);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:var(--grid-gap);
  }

  .love-card{ position:relative; display:flex; flex-direction:column; align-items:center; }

  .love-arch{
    width:100%;
    height:var(--arch-height);
    background:var(--arch-bg);
    border-top-left-radius:1000px;
    border-top-right-radius:1000px;
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    padding:18px 16px 24px; /* smaller bottom padding now that button is outside */
    box-shadow:0 10px 30px rgba(0,0,0,.15);
  }

  /* Badge */
  .love-badge{
    position:absolute;
    top:22px;
    right:36px;
    z-index:3;
    line-height:1;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.3px;
    color:#fff;
    background:linear-gradient(135deg,var(--badge-sky-start),var(--badge-sky-end));
    box-shadow:0 2px 6px rgba(0,0,0,.12);
    user-select:none;
    pointer-events:none;
  }

  /* BIGGER IMAGES */
  .love-arch img{
    width:min(100%, 900px);
    max-height:calc(100% - 40px);
    object-fit:contain;
    margin:0 0 8px;
    display:block;
    transition:transform .35s ease;
  }
  .love-arch:hover img{ transform:scale(1.03); }

  /* Title for bar cards */
  .love-title {
    text-align: center;
    font-weight: 700;
    color: var(--text);
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.2;
    padding: 0 10px;
  }

  /* Button OUTSIDE the arch */
  .love-btn{
    margin:14px auto 0;           /* centers below each card */
    display:inline-block;
    border:0;
    background:var(--btn);
    color:var(--btn-ink);
    font-weight:900;
    font-size:15px;
    padding:12px 22px;
    border-radius:999px;
    cursor:pointer;
    box-shadow:0 4px 0 rgba(0,0,0,.18), 0 6px 16px rgba(0,0,0,.12) inset;
    white-space:nowrap;
    transition:transform .25s ease;
  }
  .love-btn:hover{ transform:translateY(-2px); }

  @media (max-width:1200px){
    .yn-love__grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
    .love-arch{ height:340px; }
  }
  @media (max-width:900px){
    .yn-love__grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
    .love-arch{ height:320px; }
  }
  @media (max-width:560px){
    .yn-love__grid{ grid-template-columns:1fr; }
    .love-arch{ height:300px; }
  }
/*moving navbar*/





/* Hidden Search Bar start here */
.search-bar {
  position: fixed;
  top: -105px; /* hidden above the page */
  left: 0;
  width: 100%;
  height: 105px;
  background: white;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: top 0.4s ease;
  z-index: 2000;
}

/* Input Style */
.search-bar input {
  width: 50%;
  padding: 10px;
  border: 1px solid black;
  font-size: 16px;
}

/* Close Button */
.close-search {
  font-size: 24px;
  cursor: pointer;
  margin-left: 15px;
}

/* Show State */
.search-bar.show {
  top: 0;
}






    /* ==== Yo! Nutri mobile/tablet header (uniform across pages) ==== */
:root{
  --m-header-h: 88px;             /* header height ≤1024px */
  --m-header-bg:#3e2723;          /* brand brown */
  --m-ink:#ffffff;
  --m-maxw: 1100px;               /* inner row max-width */
}

/* Mobile & Tablet ------------------------------------------------ */
@media (max-width:1024px){
  /* hide any desktop-only bar you might have */
  .desktop-header { display:none !important; }

  .yonutri-navbar{
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--m-header-h);
    background: var(--m-header-bg);
    color: var(--m-ink);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    padding-top: env(safe-area-inset-top, 0);
  }

  /* three zones: left (burger), center (logo), right (icons/cart) */
  .yonutri-navbar .navbar-top{
    height: var(--m-header-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    max-width: var(--m-maxw);
    margin: 0 auto;
  }

  /* Left: hamburger with label under icon */
  .hamburger{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--m-ink);
    background: none;
    border: 0;
    padding: 6px 8px;
    cursor: pointer;
    text-align: center;
    line-height: 1.1;
  }
  .hamburger i{ font-size: 22px; line-height: 1; }
  .hamburger .label{
    font: 800 10px/1.1 Montserrat, system-ui, Arial;
    letter-spacing: .4px;
    text-transform: uppercase;
  }

  /* Center: round logo */
  .nav-logo{
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }

  /* Right: icons + CART */
  .nav-right{
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;                   /* spacing between items */
    color: var(--m-ink);
  }
  .nav-right a{ color: var(--m-ink); text-decoration: none; }

  .nav-right .icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:28px;height:28px;
    font-size:20px;              /* e.g., FA icons */
    line-height:1;
  }

  /* CART text with trolley on the right (as in screenshot) */
  .nav-right .cart{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    letter-spacing:.4px;
    font-size:18px;
    text-transform:uppercase;
    white-space:nowrap;
  }
  .nav-right .cart i{ font-size:20px; line-height:1; }

  /* tidy any stray link styling */
  .nav-left .shop-link{ display:none !important; } /* hide “SHOP” word on mobile */
}

/* Desktop keeps your existing header; you can tweak height if needed */
@media (min-width:1025px){
  .yonutri-navbar{ height:105px; } /* or your current desktop value */
}


/* payment section of footer */
.footer-payment-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;           
  flex-wrap: wrap;      
  text-align: center;
  padding: 12px 0;       /* ↓ reduced padding from 20px */
  background-color: #f8f8f8;
  color: #6b3e26;
  font-family: Arial, sans-serif;
}

.footer-payment-container .pay-text,
.footer-payment-container .cod-note {
  margin: 0;
  font-weight: bold;
}

.footer-payment-container .payment-icons {
  display: flex;
  gap: 12px;             /* ↓ slightly reduced spacing */
  flex-wrap: wrap;      
  justify-content: center;
}

.footer-payment-container .payment-icons img {
  height: 28px;          /* ↓ reduced from 40px */
  width: auto;
  object-fit: contain;
}

/* Mobile view */
@media (max-width: 768px) {
  .footer-payment-container {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;      /* ↓ smaller padding on mobile */
  }

  .footer-payment-container .payment-icons img {
    height: 24px;         /* ↓ smaller on mobile */
  }
}

/* Added CSS to ensure consistent product grid alignment */

.yo-products {
  padding: 40px 0;
  padding-left: clamp(12px, 3vw, 24px);
}
.yo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap, 20px);
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  /* Force consistent alignment */
  align-items: start;
  justify-items: stretch;
  /* Ensure grid items don't break layout */
  grid-auto-flow: row;
  grid-auto-rows: minmax(auto, 1fr);
}

.yo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  /* Ensure consistent card dimensions */
  min-height: 100% !important;
  /* Force card to fill grid cell */
  width: 100%;
  /* Ensure content alignment */
  align-items: stretch;
  /* Prevent card from shrinking */
  flex-shrink: 0;
  flex-grow: 1 !important;
}

.yo-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.logged-in {
   color: #ffb300;
 }