/* =====================================
   MILASTY – SIGNATURE TRIO PAGE STYLES
====================================== */

/* ===============================
   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 BASE
================================ */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f6efe7;   /* Ritual Beige */
  color: #2c2c2c;
}

section {
  padding: 60px 10%;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

h2 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: 600;
}

p {
  line-height: 1.6;
  font-size: 16px;
}

ul {
  line-height: 1.7;
}

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

.product-hero {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 60px auto;
}

.product-gallery {
  flex: 1;
}

.product-gallery img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-info {
  flex: 1;
}

.product-info .subtitle {
  font-size: 16px;
  opacity: 0.8;
}

.product-info .price {
  font-size: 26px;
  font-weight: 700;
  margin: 20px 0;
}

.product-info button {
  background: #2d5f3b;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-info button:hover {
  background: #234d30;
  transform: translateY(-2px);
}


.shipping{
  color:#2e7d32;
  font-size:0.95rem;
  margin:6px 0 14px 0;
  font-weight:500;
}

/* ===============================
   BENEFIT STRIP
================================ */

.benefit-strip {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-strip span {
  background: #efe6db;   /* soft ritual beige */
  color: #5a3f24;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .benefit-strip {
    justify-content: center;
  }
}


/* ===============================
   IMAGE GRID SECTION
================================ */

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 60px auto;
}

.image-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

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

  .image-grid img {
    height: auto;
  }
}

/* ===============================
   CONTENT SECTION BELOW PRODUCT
================================ */

.content-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 10%;
}

.content-section h2 {
  margin-top: 40px;
}

.content-section ul {
  margin-top: 10px;
  padding-left: 18px;
}

/* ===============================
   FOOTER (MILASTY PREMIUM)
================================ */

.site-footer {
  background: #5a3f24;
  color: white;
  text-align: center;
  padding: 30px 14px;
  font-size: 0.92rem;
}

.site-footer a {
  color: #ffd7a8 !important;
  font-weight: 500;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-logo {
  width: 85px;
  display: block;
  margin: 0 auto;
}

.footer-links {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-fssai {
  margin-top: 18px;
}

.fssai-logo {
  width: 85px;
  display: block;
  margin: auto;
}

.fssai-number {
  font-size: 0.85rem;
  opacity: 0.85;
}

@media (max-width: 650px) {

  .footer-links {
    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 */
  }
}



/* ===============================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 768px) {

  .product-hero {
    flex-direction: column;
    gap: 40px;
    margin: 40px auto;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 40px 6%;
  }

  .content-section {
    padding: 0 6%;
  }
}



/* ===============================
   WHATSAPP ORDER BUTTON
================================ */

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  background: #1e4d2b;   /* dark green with brown undertone */
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #163b22;
  transform: translateY(-2px);
}



/* ==============================
   PREMIUM CONTENT LINKS
============================== */

.content-section a{
  color: #6b4e2e;              /* MILASTY earthy brown */
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(107,78,46,0.35);
  transition: all 0.25s ease;
}

/* Hover effect */

.content-section a:hover{
  color: #8a6a3c;
  border-bottom: 1px solid #8a6a3c;
}

/* Mobile tap feel */

.content-section a:active{
  opacity: 0.7;
}
