/* ==========================================
🌿 MILASTY GIFTING LANDING — CLEAN CSS
Production Ready — Refined & Optimized
========================================== */

/* ===============================
   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;
  }
}

/* ==========================================
🔄 RESET
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", serif;
  }

body {
background: #f6f1ea;
color: #2b1d15;
overflow-x: hidden;
}

/* ==========================================
🏛 HERO SECTION
========================================== */

.hero {
background:
linear-gradient(rgba(40,25,18,0.55), rgba(40,25,18,0.55)),
url("/images/gift-hero.webp");

background-size: cover;
background-position: center;

padding: 120px 20px;
text-align: center;
color: white;
}

.hero h1 {
font-size: 42px;
font-weight: 600;
letter-spacing: 0.5px;
margin-bottom: 18px;
}

.hero p {
font-size: 18px;
opacity: 0.9;
margin-bottom: 30px;
}

.hero-btns a {
text-decoration: none;
margin: 8px;
padding: 12px 26px;
border-radius: 30px;
background: #c9a27e;
color: white;
font-size: 14px;
transition: 0.3s ease;
}

.hero-btns a:hover {
background: #a97c56;
}

/* ==========================================
🎁 GIFT TIERS
========================================== */

.gift-section {
padding: 80px 20px;
max-width: 1200px;
margin: auto;
}

.gift-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
}

.gift-card {
background: #fffaf5;
border-radius: 22px;
overflow: hidden;
text-align: center;
padding-bottom: 28px;
box-shadow: 0 18px 40px rgba(60,40,20,0.18);
transition: 0.4s ease;
}

/* .gift-card:hover {
transform: translateY(-10px) scale(1.01);
box-shadow: 0 26px 60px rgba(60,40,20,0.22);
}*/


.gift-card:hover img {
  height: 360px;        /* Expand image area */
  object-fit: contain;    /* Fill & crop */
  padding: 0;           /* Remove breathing space */
  transform: scale(1.05);
}

.gift-card img {
width: 100%;
height: 420px;
object-fit: contain;
padding: 12px;
background: #fffaf5;
transition: 0.4s ease;
}

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

.gift-card h2 {
margin-top: 20px;
font-size: 24px;
}

.gift-card p {
font-size: 15px;
padding: 0 24px;
margin-top: 10px;
line-height: 1.6;
color: #6a4a33;
}

.gift-btn {
display: inline-block;
margin-top: 18px;
padding: 12px 26px;
background: linear-gradient(145deg,#9a6b47,#7c4f2f);
color: white;
text-decoration: none;
border-radius: 10px;
font-size: 14px;
transition: 0.3s ease;
}

.gift-btn:hover {
transform: translateY(-2px);
}

/* Imperial Highlight */

.imperial {
background: linear-gradient(#fffaf5,#f1e6db);
transform: scale(1.04);
box-shadow: 0 24px 60px rgba(80,50,20,0.25);
}


/* ==========================================
   🔍 AMAZON STYLE IMAGE ZOOM
========================================== */

.zoom-container {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
  background: #fffaf5;
}

.zoom-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

/* Default view */

.zoom-img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* Show full gift */
  transition: transform 0.25s ease;
}


/* Hover zoom */

.zoom-wrap:hover .zoom-img {
  transform: scale(1.8);   /* Zoom strength */
  cursor: zoom-in;
}


/* Lens */

.zoom-lens {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 200%;
  display: none;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}


/* ==========================================
💰 PRICE BLOCK
========================================== */

.price-block {
margin-top: 14px;
}

.price {
font-size: 20px;
font-weight: 600;
color: #2b1d15;
letter-spacing: 0.3px;
}

.price-note {
font-size: 13px;
color: #8a6a52;
margin-top: 6px;
line-height: 1.5;
}

/* ==========================================
🌟 WHY SECTION
========================================== */

.why {
padding: 90px 20px;
text-align: center;
background: linear-gradient(#efe6dc,#e8ded3);
}

.why h2 {
font-size: 30px;
margin-bottom: 50px;
font-weight: 600;
letter-spacing: 0.4px;
max-width: 520px;
margin-left: auto;
margin-right: auto;
line-height: 1.3;
}

.why-grid {
display: grid;
grid-template-columns: repeat(3, 260px);
gap: 26px;
max-width: 900px;
margin: auto;
justify-content: center;
}


.why-box {
background: white;
padding: 30px 26px;
border-radius: 18px;
box-shadow: 0 12px 28px rgba(60,40,20,0.08);
transition: 0.35s ease;
min-height: 190px;
display: flex;
flex-direction: column;
justify-content: center;
}

.why-box:hover {
transform: translateY(-8px);
box-shadow: 0 18px 36px rgba(60,40,20,0.14);
}

.why-icon {
font-size: 32px;
margin-bottom: 14px;
}

.why-box h3 {
font-size: 17px;
margin-bottom: 8px;
font-weight: 600;
}

.why-box p {
font-size: 14px;
line-height: 1.6;
color: #6a4a33;
}

/* ==========================================
🪔 OCCASIONS
========================================== */

.occasions {
padding: 70px 20px;
text-align: center;
}

.occasions h2 {
margin-bottom: 30px;
font-size: 28px;
}

.occasion-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
}

.occasion {
background: #fffaf5;
padding: 14px 22px;
border-radius: 30px;
font-size: 14px;
box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ==========================================
📦 DELIVERY
========================================== */

.delivery {
background: #efe6dc;
padding: 70px 20px;
text-align: center;
}

.delivery h2 {
margin-bottom: 30px;
}

.delivery p {
margin: 8px 0;
font-size: 15px;
}

/* ==========================================
🔚 FINAL CTA
========================================== */

.final-cta {
padding: 80px 20px;
text-align: center;
}

.final-cta h2 {
margin-bottom: 24px;
}

/* ==========================================
🦶 FOOTER — GLOBAL FIXED
========================================== */

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

.footer-logo-wrap {
margin-bottom: 14px;
}

.footer-logo {
width: 110px;
height: auto;
display: block;
margin: 0 auto;
opacity: 0.97;
}

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

.footer-links a {
color: #ffd7a8 !important;
text-decoration: none;
font-weight: 500;
font-size: 0.92rem;
}

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

.footer-links span {
opacity: 0.5;
}

.footer-fssai {
margin-top: 22px;
padding-top: 16px;
border-top: 1px solid rgba(255,255,255,0.15);
}

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

.fssai-number {
font-size: 0.85rem;
opacity: 0.85;
margin-top: 6px;
}

/* ==========================================
📱 MOBILE OPTIMIZATION
========================================== */

@media (max-width: 768px) {

section {
padding-left: 16px;
padding-right: 16px;
}

/* HERO */

.hero {
padding: 90px 16px;
}

.hero h1 {
font-size: 26px;
line-height: 1.35;
}

.hero p {
font-size: 15px;
}

.hero-btns {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
}

.hero-btns a {
width: 90%;
max-width: 280px;
}

/* GIFTS */

.gift-section {
padding: 60px 16px;
}

.gift-grid {
grid-template-columns: 1fr;
gap: 28px;
}

.gift-card img {
width: 100%;
height: 480px;
object-fit: contain;
}

.gift-card h2 {
font-size: 20px;
}

.gift-card p {
font-size: 14px;
padding: 0 18px;
}

.gift-btn {
width: 90%;
max-width: 280px;
}

.imperial {
transform: none;
}

/* WHY */

.why {
padding: 60px 16px;
}

.why h2 {
font-size: 24px;
margin-bottom: 30px;
}

.why-grid {
grid-template-columns: repeat(2, 1fr);
gap: 14px;
}

.why-box {
padding: 18px 14px;
}

.why-icon {
font-size: 22px;
}

.why-box h3 {
font-size: 14px;
}

.why-box p {
font-size: 12px;
}

/* OCCASIONS */

.occasions h2 {
font-size: 24px;
}

.occasion {
font-size: 13px;
padding: 10px 16px;
}

/* DELIVERY */

.delivery h2 {
font-size: 24px;
}

.delivery p {
font-size: 14px;
}

/* CTA */

.final-cta h2 {
font-size: 24px;
}

/* FOOTER */

.footer-links {
flex-direction: column;
gap: 6px;
}

.footer-links span {
display: none;
}

.footer-logo {
width: 70px;
}

.fssai-logo {
width: 85px;
}

}


