
/* ===============================
   MILASTY THEME COLORS
================================ */
:root {
  --primary: #6b4e2e;
  --secondary: #fdf8f2;
  --accent: #c07a3a;
  --text: #2e2e2e;
  --muted: #666;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
}

/* ===============================
   HEADER (DESKTOP)
================================ */
.site-header {
  background: var(--primary);
  color: white;

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

  padding: 16px 24px;
}

/* Logo */
.logo a {
  color: white;
  font-size: 1.7rem;
  font-weight: bold;
  text-decoration: none;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 18px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  text-decoration: underline;
}

/* ===============================
   HAMBURGER BUTTON (DEFAULT HIDDEN)
================================ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px;
  background: white;
  border-radius: 6px;
  transition: 0.3s ease;
}

/* Hamburger → X Animation */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}



/* ===============================
   ✅ MOBILE PREMIUM MENU FIX
================================ */
@media (max-width: 650px) {

  /* ✅ FORCE HEADER INTO ONE LINE */
  .site-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;

    padding: 16px 18px !important;
    position: relative !important;
  }

  /* ✅ Keep Logo Center */
  .logo {
    flex: 1 !important;
    text-align: center !important;
  }

  /* ✅ FORCE HAMBURGER TOP RIGHT */
  .menu-toggle {
    display: block !important;
    position: absolute !important;
    right: 18px !important;
    top: 18px !important;
    z-index: 2000 !important;
  }

  /* ✅ Dropdown Menu */
  .nav-links {
    display: none !important;
    flex-direction: column !important;
    background: var(--primary) !important;

    position: absolute !important;
    top: 70px !important;
    left: 0 !important;
    width: 100% !important;

    padding: 14px 0 !important;
    text-align: center !important;
    border-radius: 0 0 14px 14px !important;
    z-index: 1500 !important;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    padding: 12px 0 !important;
    margin: 0 !important;
  }
}




/* =====================================
   GLOBAL RESET
===================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Georgia", serif;
  background: #f6efe7;
  color: #3b2a1f;
  -webkit-font-smoothing: antialiased;
}


/* =====================================
   HERO – PREMIUM BACKGROUND VERSION
===================================== */

.daily-hero {
  position: relative;
  background: url("/images/hero-daily.webp") center/cover no-repeat;
  padding: 130px 20px 110px;
  text-align: center;
  overflow: hidden;
}

/* Soft luxury overlay */
.daily-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(245, 232, 220, 0.78),
    rgba(240, 225, 210, 0.82)
  );
}


.daily-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.08) 100%
  );
}

.daily-hero .hero-content {
  position: relative;
  z-index: 2;
}

.daily-hero h1 {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 1px;
  color: #4a3425;
}

.daily-hero p {
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto;
  color: #6b4f3a;
  line-height: 1.7;
}




.millet-guide{
  max-width:720px;
  margin:110px auto;
  padding:0 20px;
  line-height:1.75;
  color:#4a3425;
}

.millet-guide h2{
  font-size:32px;
  font-weight:500;
  margin-bottom:22px;
  letter-spacing:0.4px;
}

.millet-guide h2::after{
  content:"";
  width:60px;
  height:2px;
  background:#c6a46c;
  display:block;
  margin:14px 0 0;
}

.millet-guide h3{
margin-top:28px;
font-size:20px;
}

.millet-guide p{
line-height:1.7;
color:#5c4633;
}

.millet-guide ul{
  padding-left:20px;
  margin-top:14px;
  margin-bottom:22px;
}

.millet-guide li{
  margin-bottom:6px;
}

.millet-guide a{
  color:#9a6b47;
  text-decoration:none;
  font-weight:500;
  border-bottom:1px solid rgba(154,107,71,0.35);
  padding-bottom:1px;
  transition:all 0.25s ease;
}

.millet-guide a:hover{
  color:#6b4e2e;
  border-bottom:1px solid #6b4e2e;
}

@media (max-width:600px){

.millet-guide a{
  border-bottom:1.5px solid rgba(154,107,71,0.45);
}

}

/* =====================================
   PREMIUM CLAIM CARDS
===================================== */

.order-note {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.8px;
  color: #6b4a34;              /* warm brown tone */
  margin: 0 auto 40px auto;
  max-width: 420px;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0.9;
  font-style: italic;
  position: relative;
  display: block;
}




.small-note {
  text-align: center;
  margin: 90px auto 0 auto;
  padding-bottom: 10px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a5a42;
  opacity: 0.9;
}

.small-note span {
  padding: 0 8px;
  color: #c7a17a;
}

@media (max-width: 600px) {
  .small-note {
    font-size: 11.5px;
    letter-spacing: 0.8px;
    line-height: 1.8;
    padding: 0 15px;
    white-space: nowrap;
    margin-top: 65px;
  }
}

.claims-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #3b2a1f;
  margin-bottom: 70px;
  position: relative;
}

/* Elegant gold underline */
.claims-heading::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #c6a46c;
  display: block;
  margin: 18px auto 0;
  opacity: 0.8;
}

.ingredient-strip {
  padding: 90px 6%;
  background: #f9f3ec;
}

.claims-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Responsive */
@media (max-width: 992px) {
  .claims-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .claims-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */

.claim-card {
  background: #f3eee7;
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.03);
  transition: 0.4s ease;
}

.claim-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 18px 35px rgba(0, 0, 0, 0.06),
    0 4px 10px rgba(0, 0, 0, 0.04);
}

.claim-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.claim-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
  color: #4a3425;
}

.claim-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b4f3a;
}



/* =====================================
   PRODUCTS SECTION – ULTRA REFINED
===================================== */


.ritual-builder{
  text-align:center;
  margin:45px auto 80px;
  max-width:650px;
}

.ritual-builder h3{
  font-size:18px;
  letter-spacing:0.8px;
  margin-bottom:8px;
  color:#4a3425;
}

.ritual-builder p{
  font-size:14px;
  color:#6b4e2e;
  margin-bottom:25px;
}

.ritual-suggestions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.ritual-combo{
  padding:10px 16px;
  border-radius:16px;
  background:#f6efe7;
  border:1px solid rgba(60,40,20,0.08);
  font-size:12.5px;
  color:#4a3425;
  transition:0.25s ease;
}

.ritual-combo:hover{
  background:#efe5da;
  transform:translateY(-2px);
}

.combo-title{
  display:block;
  font-weight:600;
  margin-bottom:2px;
}

.combo-desc{
  font-size:12px;
  opacity:0.75;
}


.ritual-hint{
margin:14px auto 25px;
font-size:14px;
color:#6b4e2e;
font-style:italic;
letter-spacing:0.2px;
max-width:520px;
line-height:1.6;
text-align:center;
}

.shipping{
  list-style:none;
  padding:0;
  margin:20px auto 10px;
  max-width:420px;
  color:#6b4e2e;
  font-size:0.95rem;
  line-height:1.8;
  text-align: center;
}

.daily-products {
  padding: 120px 6% 140px;
}

.daily-products h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 1.2px;
  position: relative;
}

.daily-products h2::after {
  content: "";
  width: 65px;
  height: 2px;
  background: #9a6b47;
  display: block;
  margin: 20px auto 0;
  opacity: 0.6;
}



.badge-loved{
  display:inline-block;
  margin-left:8px;
  padding:3px 10px;
  font-size:10px;
  font-weight:600;
  letter-spacing:0.6px;
  text-transform:uppercase;
  color:#6b4e2e;
  background:#f3ece5;
  border-radius:14px;
}







/* =====================================
   GRID
===================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 75px;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================
   PRODUCT CARD – LUXURY DEPTH
===================================== */

.product-card {
  background: #fffdf9;
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 25px 70px rgba(60,40,20,0.06);
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 100px rgba(60,40,20,0.12);
}


.product-card {
  border: 1px solid rgba(60,40,20,0.06);
  background: linear-gradient(
    180deg,
    #fffdf9 0%,
    #fcf6ee 100%
  );
}

/* IMAGE */

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin-bottom: 32px;
  display: block;
}

.product-card img {
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}


/* =====================================
   TITLE + PRICE
===================================== */

.product-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
  display: block;
}

.product-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background: #9a6b47;
  transition: 0.3s ease;
}

.product-card:hover .product-title::after {
  width: 100%;
}

.price-from {
  display: block;
  font-size: 14px;
  color: #9a6b47;
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}


/* DESCRIPTION */

.product-card p {
  font-size: 15px;
  color: #6b4f3a;
  line-height: 1.75;
  margin-bottom: 38px;
}

@media (max-width: 600px) {
  .product-card {
    padding: 28px 22px;
  }
}

/* =====================================
   PACK SELECTOR – PREMIUM CAPSULES
===================================== */

.pack-grid {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.pack-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 16px 10px;
  border-radius: 20px;

  background: #f4ede6;
  border: 1px solid rgba(60,40,20,0.12);

  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
}


.pack-title {
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #3b2a1f;
}


.pack-price {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #3b2a1f;
}

.pack-weight {
  font-size: 10px;
  opacity: 0.45;
}

/* Smooth premium hover */
.pack-btn:hover {
  background: linear-gradient(145deg, #9a6b47, #7c4f2f);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(60,40,20,0.25);
}

.pack-btn:hover .pack-title,
.pack-btn:hover .pack-price,
.pack-btn:hover .pack-weight {
  color: white;
}




/* =====================================
   MOST LOVED – GOLD BORDER ONLY
===================================== */

/* .pack-btn.most-loved {
  background: #f4ede6;
  color: #5b4030;
  border: 2px solid #c6a46c;
  box-shadow: 0 0 0 2px rgba(198,164,108,0.15);
} */

.pack-btn.most-loved {
  border: 2px solid #c6a46c;
  box-shadow: 0 0 0 2px rgba(198,164,108,0.15);
}

.pack-btn.most-loved::before {
  content: "Most Loved";
  position: absolute;
  top: -10px;
  background: #c6a46c;
  color: white;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 12px;
  letter-spacing: 1px;
}


@media (max-width: 600px) {
  .pack-grid {
    gap: 12px;
  }

  .pack-btn {
    flex: 0 0 46%;
  }
}


/* =====================================
   FOOTER – REFINED
===================================== */

.site-footer {
  background: #5a3f24;
  color: white;
  text-align: center;
  padding: 50px 20px;
  margin-top: 120px;
}

.site-footer p,
.site-footer span {
  color: white;
  letter-spacing: 0.4px;
}

.site-footer a {
  color: #ffd7a8;
  text-decoration: none;
  transition: 0.3s ease;
}

.site-footer a:hover {
  color: white;
}

.footer-logo {
  width: 90px;
  margin-bottom: 18px;
}

.fssai-logo {
  width: 85px;
  margin-top: 18px;
}

@media (max-width: 650px) {

  .footer-links {
    display: flex;
    flex-direction: column; /* ✅ Stack links vertically */
    gap: 6px;
  }

  .footer-links span {
    display: none; /* ✅ Remove separators on mobile */
  }

  .footer-links a {
    font-size: 0.95rem;
  }
}

@media (max-width: 650px) {

  .footer-logo {
    width: 70px;  /* Smaller on mobile */
  }
}




/* =====================================
   MOBILE HERO REFINEMENT
===================================== */

@media (max-width: 768px) {
  .daily-hero {
    padding: 100px 20px 80px;
  }

  .daily-hero h1 {
    font-size: 36px;
  }

  .daily-hero p {
    font-size: 16px;
  }
}


