* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FAF9F6;
   line-height: 1.6;
  /* color: #572121; */
}

/* Header section start */
 .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;
    }

/* 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;
}



/* Main Content */
    .container {
    font-family: 'Inter', sans-serif;
     line-height: 1.6;
      max-width: 800px;
      margin: 4rem auto;
      padding: 0 1rem;
    }

    .container h1 {
      font-family: 'Archivo Black', sans-serif;
      font-size: 3rem;
      margin-bottom: 3rem;
      text-align: left;
    }

    .container .qa-block {
      margin-bottom: 3rem;
    }

    .question {
      font-family: 'Archivo Black', sans-serif;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .answer {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      line-height: 1.8;
    }

    .container a {
      color: #3e2723;
      text-decoration: none;
    }

    .container a:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .container h1 {
        font-size: 2.2rem;
      }

      .question {
        font-size: 1.5rem;
      }

      .answer {
        font-size: 0.95rem;
      }
    }  
    






    /* footer css start */
/* Footer background set to #3e2723 */




.marquee-section {
  background-color: #3e2723; /* Chocolate brown */
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-marquee 20s linear infinite;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  gap: 2rem;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}








/* Hamburger button */
.hamburger{ background: none;border:0;font-size:22px;cursor:pointer; }
/* Make sizing predictable so columns line up perfectly */
*, *::before, *::after { box-sizing: border-box; }

/* ===== Shop Drawer (mobile sheet) =============================== */
:root{
  --sheet-top: 64px;        /* JS will update this to header height */
  --gutter: 12px;           /* side margin on phones */
  --sheet-radius: 16px;
  --ink: #2b1e17;
}

/* Drawer container */
.shop-drawer{
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  top: var(--sheet-top);                     /* sits right under header */
  width: auto;
  max-width: 420px;
  margin: 0 auto;
  background:#fff;
  border-radius: var(--sheet-radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  z-index: 1200;

  display:flex;
  flex-direction:column;
  overflow:hidden;

  /* hidden (closed) */
  transform: translateY(calc(-100% - 12px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform .32s ease,
    opacity .28s ease,
    visibility 0s linear .32s;
}

/* open state */
.shop-drawer.open{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform .32s ease,
    opacity .28s ease,
    visibility 0s;
}

/* Header row */
.shop-drawer-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 14px;
  border-bottom:1px solid #eee;
  background:#fff;
}
.shop-drawer-header h4{
  margin:0;
  font:700 13px/1.1 Montserrat, Inter, system-ui;
  letter-spacing:.35px;
  color:var(--ink);
  text-transform:uppercase;
}
.shop-drawer-header .fa-xmark{
  cursor:pointer;
  font-size:18px;
  color:var(--ink);
}

/* Body grid (always 2-up for consistency) */
.shop-drawer-body{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  padding:12px 12px 16px;
}

/* Category card */
.shop-drawer .category-item{
  position:relative;
  display:block;
  min-height:84px;
  padding:12px 76px 12px 12px;  /* room for right image */
  background:#f3ecdd;
  border:1px solid #e9e0cf;
  border-radius:14px;
  box-shadow:0 1px 0 rgba(0,0,0,.04) inset;
  color:var(--ink);
  text-decoration:none;
  transition:transform .06s ease, background .18s ease;
}
.shop-drawer .category-item:hover{ background:#efe6d3; }
.shop-drawer .category-item:active{ transform:scale(.995); }

/* Label (wrap to two lines; never clipped) */
.shop-drawer .category-item span{
  display:block;
  font:700 12.5px/1.2 Montserrat, Inter, system-ui;
  color:var(--ink);
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

/* Small image bottom-right */
.shop-drawer .category-item img{
  position:absolute;
  right:10px;
  bottom:10px;
  width:56px; height:56px;
  object-fit:contain;
  background:#fff;
  border-radius:12px;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
  outline:1px solid #eee;
}

/* Overlay (under sheet, above site) */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
  z-index:1190;
}
.overlay.show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* Body scroll lock helper (your JS toggles .modal-open) */
html.modal-open, body.modal-open{ height:100%; overflow:hidden; }

/* Slightly wider gutters on small tablets */
@media (min-width:480px){
  :root{ --gutter:16px; }
}
/* Make sure desktop hamburger stays hidden */
@media (min-width: 769px){ .hamburger{ display:none !important; } }
/* Desktop: SHOP text visible, hamburger hidden */
@media (min-width: 769px) {
  .nav-left .shop-link { display: inline-block; color: #fff; text-decoration: none; }
  .hamburger { display: none; }
}

/* Mobile: hamburger visible, SHOP text hidden */
@media (max-width: 768px) {
  .nav-left .shop-link { display: none; }
  .hamburger { display: inline-block; }
}

.hamburger{
  display:inline-block;
  background:none; border:0; cursor:pointer;
  color:#fff;          /* adjust to your header color */
  text-align:center;   /* center the text under icon */
  line-height:1.1;
  font-weight:800;
  font-size:10px;      /* label size */
  letter-spacing:.4px;
  padding:6px 8px;
}
.hamburger i{
  display:block;       /* this forces the next text onto a new line */
  font-size:20px;
  line-height:1;
  margin-bottom:3px;
}
