/* =========================================
   Flowers Heaven — Main Stylesheet
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --pink-light:   #FDE8EE;
  --pink-mid:     #F4A7B9;
  --pink-deep:    #C8466B;
  --pink-btn:     #E8759A;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --white:        #FFFFFF;
  --off-white:    #FFF9FB;
  --text-dark:    #2C1A1A;
  --text-mid:     #5A3F4A;
  --text-light:   #9E7D8A;
  --shadow:       0 4px 20px rgba(200, 70, 107, 0.12);
  --shadow-hover: 0 8px 32px rgba(200, 70, 107, 0.22);
  --radius:       16px;
  --transition:   all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); border: none; text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-btn));
  color: white; box-shadow: 0 4px 16px rgba(200, 70, 107, 0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(200, 70, 107, 0.52); }
.btn-outline {
  background: transparent; color: var(--pink-deep);
  border: 2px solid var(--pink-deep);
}
.btn-outline:hover { background: var(--pink-deep); color: white; transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark); box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(201, 168, 76, 0.5); }
.btn-wa { background: #25D366; color: white; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); }
.btn-white { background: white; color: var(--pink-deep); font-weight: 700; }
.btn-white:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(200,70,107,0.09);
  transition: var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-emblem {
  width: 46px; height: 46px; border: 2.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700;
  color: var(--gold); letter-spacing: 1px; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text-dark); }
.logo-text .tagline { font-size: 0.6rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-mid); transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--pink-deep); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--pink-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-nav {
  position: fixed; top: 74px; left: 0; right: 0; background: white;
  padding: 20px 24px 28px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 998; transform: translateY(-110%); opacity: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1); pointer-events: none;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-nav ul a { display: block; padding: 12px 16px; border-radius: 10px; color: var(--text-mid); font-weight: 500; font-size: 0.95rem; transition: all 0.2s; }
.mobile-nav ul a:hover { background: var(--pink-light); color: var(--pink-deep); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, #FFF5F8 50%, #FDE8EE 100%);
  padding: 128px 0 64px; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: 12px; }
.page-hero p { color: var(--text-mid); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.82rem; color: var(--text-light); margin-top: 16px; }
.breadcrumb a { color: var(--pink-deep); }
.breadcrumb span { opacity: 0.5; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: var(--pink-light); color: var(--pink-deep);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); color: var(--text-dark); margin-bottom: 12px; line-height: 1.2; }
.section-header p { color: var(--text-mid); max-width: 520px; margin: 0 auto; font-size: 0.95rem; }

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh; padding-top: 80px;
  background: linear-gradient(135deg, #FDE8EE 0%, #FFF5F8 60%, #FDE8EE 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-blob1 {
  position: absolute; top: -15%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,167,185,0.25) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-blob2 {
  position: absolute; bottom: -20%; left: -8%; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: white;
  border: 1px solid var(--pink-mid); padding: 7px 18px; border-radius: 50px;
  font-size: 0.78rem; color: var(--pink-deep); font-weight: 600; margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(200,70,107,0.1);
}
.hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.12; color: var(--text-dark); margin-bottom: 20px; }
.hero h1 .highlight { color: var(--pink-deep); display: block; }
.hero > .container > .hero-inner > .hero-content > p { font-size: 1.02rem; color: var(--text-mid); margin-bottom: 36px; max-width: 460px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 32px; padding-top: 28px; border-top: 1px solid var(--pink-mid); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--pink-deep); display: block; }
.stat-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-main { width: 100%; max-width: 440px; aspect-ratio: 4/5; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-hover); }
.hero-img-float {
  position: absolute; border-radius: 16px; object-fit: cover;
  border: 4px solid white; box-shadow: var(--shadow);
}
.float-tl { width: 150px; height: 150px; top: -16px; left: -20px; }
.float-br { width: 140px; height: 140px; bottom: -16px; right: -16px; }

/* Placeholder images (gradient) */
.img-placeholder {
  background: linear-gradient(135deg, var(--pink-light), var(--pink-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: white; border-radius: inherit;
}

/* ---- Categories ---- */
.categories { padding: 80px 0; background: white; }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 26px 12px; text-align: center; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent; text-decoration: none;
}
.cat-card:hover, .cat-card.active {
  background: var(--pink-light); border-color: var(--pink-mid);
  transform: translateY(-5px); box-shadow: var(--shadow);
}
.cat-icon { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.cat-card h3 { font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--text-mid); line-height: 1.3; }

/* ---- Products Grid ---- */
.featured-products { padding: 80px 0; background: var(--off-white); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.product-card {
  background: white; border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.055); transition: var(--transition); cursor: default;
  border: 1px solid rgba(200,70,107,0.08);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(200,70,107,0.22); }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--pink-light); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-img-wrap .img-placeholder { width: 100%; height: 100%; font-size: 3rem; }
.product-placeholder {
  font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 1px;
  color: white; text-shadow: 0 2px 10px rgba(44,26,26,0.16);
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--pink-deep); color: white;
  font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.product-badge.gold { background: var(--gold); color: var(--text-dark); }
.product-quick-btn {
  position: absolute; right: 12px; bottom: 12px;
  border: 0; border-radius: 999px; padding: 8px 13px;
  background: rgba(255,255,255,0.94); color: var(--text-dark);
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(44,26,26,0.16);
  cursor: pointer; opacity: 0; transform: translateY(8px);
  transition: var(--transition);
}
.product-card:hover .product-quick-btn { opacity: 1; transform: translateY(0); }
.product-quick-btn:hover { background: var(--text-dark); color: white; }
.product-info { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.06rem; color: var(--text-dark); margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 0.8rem; color: var(--text-light); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--pink-deep); }
.product-price .curr { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600; }
.order-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--pink-deep);
  color: white; border: none; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
  flex-shrink: 0;
}
.order-btn:hover { background: var(--pink-btn); transform: scale(1.12); }
.view-all-wrap { text-align: center; margin-top: 48px; }

/* ---- About Preview ---- */
.about-preview { padding: 80px 0; background: white; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-imgs { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.about-img-sm {
  position: absolute; bottom: -24px; right: -24px;
  width: 180px; height: 180px; border-radius: 16px; object-fit: cover;
  border: 4px solid white; box-shadow: var(--shadow);
}
.about-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--pink-light); color: var(--pink-deep); padding: 7px 18px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; margin-bottom: 20px; }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 18px; line-height: 1.2; }
.about-content p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; font-size: 0.95rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.feat-item { display: flex; align-items: flex-start; gap: 12px; }
.feat-icon { width: 42px; height: 42px; min-width: 42px; background: var(--pink-light); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.feat-text h4 { font-family: 'Poppins', sans-serif; font-size: 0.84rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.feat-text p { font-size: 0.76rem; color: var(--text-light); margin: 0; }

/* ---- Why Us ---- */
.why-us { padding: 80px 0; background: var(--pink-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: white; border-radius: var(--radius); padding: 36px 26px; text-align: center; box-shadow: 0 2px 12px rgba(200,70,107,0.06); transition: var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-icon { font-size: 2.8rem; display: block; margin-bottom: 18px; }
.why-card h3 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 10px; }
.why-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; }

/* ---- Gallery Preview ---- */
.gallery-preview { padding: 80px 0; background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item .img-placeholder { width: 100%; height: 100%; font-size: 3.5rem; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(200,70,107,0.55), transparent);
  opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; font-size: 0.88rem; }
.gallery-view-all { text-align: center; margin-top: 40px; }

/* ---- Testimonials ---- */
.testimonials { padding: 80px 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: white; border-radius: var(--radius); padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.055); }
.stars { font-size: 1rem; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--pink-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.reviewer-name { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); }
.reviewer-sub { font-size: 0.75rem; color: var(--text-light); }

/* ---- Contact CTA Strip ---- */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-btn));
  text-align: center;
}
.cta-strip h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: white; margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
footer { background: #180810; color: white; padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-emblem { border-color: var(--gold); color: var(--gold); margin-bottom: 14px; }
.footer-brand .logo-text .name { color: white; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; margin-top: 16px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: var(--transition); color: white; }
.social-link:hover { background: var(--pink-deep); transform: translateY(-2px); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 700; color: white; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink-mid); }
.footer-info { display: flex; flex-direction: column; gap: 14px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; }
.info-row .icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.info-row span:last-child { color: rgba(255,255,255,0.55); font-size: 0.83rem; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--pink-mid); }

/* ---- WhatsApp Float ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 4px 20px rgba(37,211,102,0.48);
  cursor: pointer; transition: var(--transition); text-decoration: none; color: white;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.48); }
  50%  { box-shadow: 0 4px 28px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.12); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.48); }
}

/* ---- Shop Page ---- */
.shop-toolbar {
  background: white; padding: 28px 0;
  border-bottom: 1px solid var(--pink-light);
  position: sticky; top: 74px; z-index: 100;
}
.filter-scroll { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; align-items: center; }
.filter-btn {
  padding: 9px 20px; border-radius: 50px; border: 2px solid var(--pink-light);
  background: white; color: var(--text-mid); font-size: 0.83rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-family: 'Poppins', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--pink-deep); border-color: var(--pink-deep); color: white; }
.shop-section { padding: 56px 0 80px; background: var(--off-white); }
.shop-count { text-align: center; color: var(--text-light); font-size: 0.85rem; margin-bottom: 36px; }
.no-products { text-align: center; padding: 80px 20px; }
.no-products .no-icon { font-size: 4rem; display: block; margin-bottom: 20px; }
.no-products h3 { font-size: 1.4rem; margin-bottom: 10px; }
.no-products p { color: var(--text-mid); font-size: 0.92rem; }

/* ---- Order Page ---- */
.order-section { padding: 56px 0 80px; background: var(--off-white); }
.order-wrap { max-width: 740px; margin: 0 auto; }
.order-card { background: white; border-radius: 24px; padding: 48px; box-shadow: 0 4px 32px rgba(200,70,107,0.07); }
.order-card h2 { font-size: 1.9rem; text-align: center; margin-bottom: 6px; }
.order-card .subtitle { text-align: center; color: var(--text-light); font-size: 0.88rem; margin-bottom: 36px; }
.form-section-title { font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--pink-deep); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--pink-light); }
.form-divider { margin: 28px 0; border: none; border-top: 1px solid var(--pink-light); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 7px; }
.form-group label .req { color: var(--pink-deep); margin-left: 2px; }
.form-control {
  width: 100%; padding: 13px 16px; border: 2px solid var(--pink-light);
  border-radius: 11px; font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  color: var(--text-dark); background: white; transition: border-color 0.2s; outline: none;
}
.form-control:focus { border-color: var(--pink-mid); }
textarea.form-control { resize: vertical; min-height: 96px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.type-options { display: flex; gap: 14px; }
.type-opt {
  flex: 1; border: 2px solid var(--pink-light); border-radius: 12px;
  padding: 16px; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 500;
}
.type-opt:hover, .type-opt.selected { border-color: var(--pink-deep); background: var(--pink-light); }
.type-opt input[type=radio] { accent-color: var(--pink-deep); }
.pay-options { display: flex; gap: 14px; }
.pay-opt {
  flex: 1; border: 2px solid var(--pink-light); border-radius: 12px;
  padding: 18px 14px; cursor: pointer; transition: var(--transition);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.pay-opt:hover, .pay-opt.selected { border-color: var(--gold); background: rgba(201,168,76,0.07); }
.pay-opt .pay-ico { font-size: 1.8rem; }
.pay-opt span { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
.bank-info {
  background: rgba(201,168,76,0.08); border: 1.5px solid var(--gold);
  border-radius: 12px; padding: 16px 18px; margin-top: 12px; display: none;
}
.bank-info.show { display: block; }
.bank-info p { font-size: 0.84rem; color: var(--text-mid); margin-bottom: 4px; }
.bank-info strong { color: var(--text-dark); }
.order-summary-box { background: var(--pink-light); border-radius: 12px; padding: 18px; margin-bottom: 22px; display: none; }
.order-summary-box.show { display: block; }
.order-summary-box h4 { font-size: 0.88rem; font-family: 'Poppins', sans-serif; margin-bottom: 12px; color: var(--text-dark); }
.sum-line { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-mid); margin-bottom: 6px; }
.sum-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 0.98rem; color: var(--pink-deep); border-top: 1px solid var(--pink-mid); padding-top: 10px; margin-top: 8px; }
.submit-order { width: 100%; padding: 16px; font-size: 1rem; margin-top: 4px; }

/* ---- Checkout Cart Items ---- */
.checkout-cart { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.checkout-cart-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--off-white); border-radius: 12px; padding: 12px 14px;
}
.checkout-cart-item .ci-emoji { font-size: 1.8rem; flex-shrink: 0; }
.checkout-cart-item .ci-details { flex: 1; min-width: 0; }
.checkout-cart-item .ci-name { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.checkout-cart-item .ci-sub { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
.checkout-cart-item .ci-total { font-weight: 700; color: var(--pink-deep); font-size: 0.92rem; flex-shrink: 0; }
.checkout-cart-item .ci-qty-ctrl { display: flex; align-items: center; gap: 6px; margin-right: 10px; }
.checkout-cart-item .ci-qty-btn {
  width: 26px; height: 26px; border-radius: 50%; background: var(--pink-light);
  border: none; color: var(--pink-deep); font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.checkout-cart-item .ci-qty-btn:hover { background: var(--pink-mid); color: white; }
.checkout-cart-item .ci-qty-num { font-weight: 700; font-size: 0.88rem; min-width: 18px; text-align: center; }
.checkout-cart-item .ci-remove {
  background: none; border: none; cursor: pointer; color: var(--text-light);
  font-size: 1rem; padding: 4px; border-radius: 50%; line-height: 1;
  transition: color 0.2s;
}
.checkout-cart-item .ci-remove:hover { color: #e00; }
.empty-cart-notice { text-align: center; padding: 36px 20px; background: var(--off-white); border-radius: 12px; }
.empty-cart-notice p { color: var(--text-light); margin-bottom: 14px; }

/* ---- Cart Icon (Navbar) ---- */
.cart-icon-btn {
  position: relative; background: none; border: none; cursor: pointer;
  padding: 8px 10px; border-radius: 50px; display: flex; align-items: center;
  gap: 5px; font-size: 1.15rem; color: var(--text-dark); transition: background 0.2s;
  font-family: 'Poppins', sans-serif; font-weight: 600;
}
.cart-icon-btn:hover { background: var(--pink-light); }
.cart-badge {
  position: absolute; top: 1px; right: 1px;
  background: var(--pink-deep); color: white;
  font-size: 0.6rem; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; pointer-events: none;
}

/* ---- Cart Overlay ---- */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(30,10,20,0.45); z-index: 900;
  backdrop-filter: blur(3px);
}
.cart-overlay.show { display: block; }

/* ---- Cart Drawer ---- */
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 420px; max-width: 100vw; height: 100vh;
  background: white; z-index: 901;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -6px 0 40px rgba(200,70,107,0.14);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--pink-light);
  flex-shrink: 0;
}
.cart-drawer-header h3 {
  font-size: 1.05rem; color: var(--text-dark);
  display: flex; align-items: center; gap: 8px;
}
.cart-header-count {
  background: var(--pink-light); color: var(--pink-deep);
  font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 50px;
  font-family: 'Poppins', sans-serif;
}
.cart-close {
  background: none; border: none; font-size: 1.3rem; cursor: pointer;
  color: var(--text-light); padding: 6px 10px; border-radius: 50%;
  line-height: 1; transition: background 0.2s;
}
.cart-close:hover { background: var(--pink-light); color: var(--pink-deep); }

.cart-drawer-body {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.cart-drawer-body::-webkit-scrollbar { width: 4px; }
.cart-drawer-body::-webkit-scrollbar-track { background: transparent; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: var(--pink-mid); border-radius: 4px; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; flex: 1; gap: 10px; text-align: center;
  color: var(--text-light); padding: 40px 20px;
}
.cart-empty-ico { font-size: 3.5rem; }
.cart-empty h3 { font-size: 1rem; color: var(--text-mid); font-family: 'Playfair Display', serif; }
.cart-empty p { font-size: 0.83rem; }

.cart-item {
  display: grid; grid-template-columns: 54px minmax(0,1fr) auto auto;
  align-items: center; gap: 10px;
  background: var(--off-white); border-radius: 12px; padding: 10px;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid rgba(200,70,107,0.06);
}
.cart-item:hover { background: var(--pink-light); transform: translateY(-1px); }
.cart-item-media {
  width: 54px; height: 54px; border-radius: 10px; overflow: hidden;
  background: white; display: flex; align-items: center; justify-content: center;
  color: var(--pink-deep); font-family: 'Playfair Display', serif; font-weight: 700;
  border: 1px solid rgba(200,70,107,0.1); flex-shrink: 0;
}
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.84rem; font-weight: 700; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.75rem; color: var(--pink-deep); font-weight: 500; margin-top: 2px; }
.cart-item-qty {
  display: flex; align-items: center; gap: 6px;
  background: white; border-radius: 20px; padding: 4px 8px;
  border: 1.5px solid var(--pink-light); flex-shrink: 0;
}
.cart-item-qty span { font-size: 0.82rem; font-weight: 700; min-width: 16px; text-align: center; color: var(--text-dark); }
.drawer-qty-btn {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pink-light); border: none; cursor: pointer; font-size: 0.95rem;
  color: var(--pink-deep); line-height: 1; padding: 0; font-weight: 700;
}
.drawer-qty-btn:hover { background: var(--pink-deep); color: white; }
.cart-item-remove {
  background: none; border: none; cursor: pointer; font-size: 0.8rem;
  color: var(--text-light); padding: 5px; border-radius: 50%; line-height: 1;
  transition: background 0.2s; flex-shrink: 0;
}
.cart-item-remove:hover { background: #fee2e2; color: #dc2626; }

.cart-drawer-footer {
  padding: 18px 20px 20px; border-top: 1px solid var(--pink-light);
  flex-direction: column; gap: 12px; flex-shrink: 0;
  background: white;
}
.cart-total-meta { color: var(--text-light); font-size: 0.78rem; }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.92rem;
}
.cart-total-amount { color: var(--pink-deep); font-size: 1.15rem; font-family: 'Playfair Display', serif; }

/* ---- Add to Cart Button ---- */
.atc-btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  min-width: 82px; min-height: 38px;
  padding: 9px 16px; background: var(--pink-deep); color: white;
  border: none; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.atc-btn:hover { background: var(--pink-btn); transform: translateY(-2px); }

/* ---- Card Stepper (on product cards) ---- */
.card-stepper {
  display: flex; align-items: center; gap: 6px;
  background: var(--pink-light); border-radius: 999px;
  padding: 6px 10px; flex-shrink: 0; min-height: 38px;
}
.card-stepper .stp-btn {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--pink-deep); color: white; border: none;
  cursor: pointer; font-size: 0.95rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; line-height: 1;
}
.card-stepper .stp-btn:hover { background: var(--text-dark); }
.card-stepper .qty-val {
  font-weight: 700; font-size: 0.88rem; min-width: 18px;
  text-align: center; color: var(--pink-deep);
}

/* ---- Card added flash ---- */
@keyframes card-flash {
  0%   { box-shadow: 0 0 0 0 rgba(200,70,107,0.4); }
  60%  { box-shadow: 0 0 0 10px rgba(200,70,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,70,107,0); }
}
.product-card.card-added { animation: card-flash 0.65s ease-out; }

/* ---- Product Quick View ---- */
.product-modal-bg.show { display: flex; }
.product-modal {
  position: relative; max-width: 780px; text-align: left; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.product-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,0.92); color: var(--text-dark);
  cursor: pointer; font-weight: 700;
}
.product-modal-media { min-height: 360px; background: var(--pink-light); }
.product-modal-media img,
.product-modal-media .img-placeholder { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.product-modal-content { padding: 38px; display: flex; flex-direction: column; justify-content: center; }
.product-modal-cat { color: var(--pink-deep); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.product-modal-title { font-size: clamp(1.7rem, 3vw, 2.25rem); line-height: 1.15; margin-bottom: 14px; }
.product-modal-desc { color: var(--text-mid); font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; }
.product-modal-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.product-modal-price { color: var(--pink-deep); font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; white-space: nowrap; }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
}

/* ---- Gallery Full Page ---- */
.gallery-page-section { padding: 56px 0 80px; }
.gallery-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-full-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; cursor: pointer; position: relative; }
.gallery-full-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-full-item .img-placeholder { width: 100%; height: 100%; font-size: 3rem; }
.gallery-full-item:hover img { transform: scale(1.05); }
.gallery-full-item .gallery-overlay { opacity: 0; }
.gallery-full-item:hover .gallery-overlay { opacity: 1; }

/* ---- Lightbox ---- */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 3000; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* ---- Contact Page ---- */
.contact-section { padding: 56px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.055); display: flex; gap: 16px; align-items: flex-start; }
.cc-icon { width: 48px; height: 48px; min-width: 48px; background: var(--pink-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.cc-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); font-weight: 600; margin-bottom: 4px; }
.cc-value { color: var(--text-dark); font-weight: 600; font-size: 0.9rem; line-height: 1.5; }
.cc-value a { color: var(--pink-deep); }
.map-embed { border-radius: var(--radius); overflow: hidden; height: 220px; margin-top: 8px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.contact-form-card { background: white; border-radius: var(--radius); padding: 40px; box-shadow: 0 2px 16px rgba(200,70,107,0.06); }
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 24px; }
.contact-submit { width: 100%; padding: 14px; margin-top: 4px; }

/* ---- Track Order Page ---- */
.track-section { padding: 56px 0 80px; background: var(--off-white); }
.track-card {
  max-width: 820px; margin: 0 auto; background: white;
  border-radius: 18px; padding: 34px; box-shadow: 0 4px 24px rgba(200,70,107,0.08);
}
.track-form label { display: block; font-weight: 700; color: var(--text-mid); margin-bottom: 9px; }
.track-input-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.track-hint { margin-top: 10px; color: var(--text-light); font-size: 0.82rem; }
.track-result { margin-top: 28px; border-top: 1px solid var(--pink-light); padding-top: 26px; }
.track-result-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 24px; }
.track-label { color: var(--text-light); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.track-result-head h2 { font-size: 2rem; margin-top: 2px; }
.track-status {
  padding: 8px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 800;
  background: var(--pink-light); color: var(--pink-deep); white-space: nowrap;
}
.track-status.delivered { background: #dcfce7; color: #166534; }
.track-status.cancelled { background: #fee2e2; color: #991b1b; }
.track-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 26px; }
.track-step { text-align: center; color: var(--text-light); }
.track-step span {
  width: 34px; height: 34px; border-radius: 50%; background: var(--pink-light);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 7px;
}
.track-step.done span { background: var(--pink-deep); color: white; }
.track-step p { font-size: 0.72rem; font-weight: 700; line-height: 1.25; }
.track-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.track-detail-grid div, .track-items { background: var(--off-white); border-radius: 12px; padding: 14px 16px; }
.track-detail-grid span { display: block; color: var(--text-light); font-size: 0.72rem; margin-bottom: 4px; }
.track-detail-grid strong { color: var(--text-dark); font-size: 0.9rem; }
.track-items h3 { font-family: 'Poppins', sans-serif; font-size: 0.88rem; margin-bottom: 10px; }
.track-item { display: flex; justify-content: space-between; gap: 12px; font-size: 0.86rem; padding: 8px 0; border-top: 1px solid var(--pink-light); }
.track-item:first-of-type { border-top: 0; }
.track-loading, .track-error, .track-cancelled {
  border-radius: 12px; padding: 16px; background: var(--pink-light); color: var(--text-mid); text-align: center;
}
.track-error, .track-cancelled { background: #fee2e2; color: #991b1b; }

/* ---- About Page ---- */
.about-section { padding: 56px 0 80px; }
.about-hero-content { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.about-hero-imgs { position: relative; }
.about-hero-imgs .main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.about-hero-imgs .main.img-placeholder { font-size: 6rem; }
.about-hero-imgs .float { position: absolute; bottom: -20px; right: -20px; width: 160px; height: 160px; border-radius: 14px; object-fit: cover; border: 4px solid white; box-shadow: var(--shadow); }
.about-story h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; line-height: 1.2; }
.about-story p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.8; margin-bottom: 14px; }
.values-section { padding: 60px 0; background: var(--off-white); border-radius: 24px; }
.values-section .section-header { margin-bottom: 40px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: white; border-radius: var(--radius); padding: 32px 22px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2.5rem; display: block; margin-bottom: 14px; }
.value-card h3 { font-size: 0.98rem; margin-bottom: 10px; }
.value-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; }

/* ---- Success Modal ---- */
.modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-bg.show { display: flex; }
.modal { background: white; border-radius: 24px; padding: 48px 36px; max-width: 460px; width: 100%; text-align: center; animation: modal-pop 0.3s ease; }
@keyframes modal-pop { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-ico { font-size: 4rem; display: block; margin-bottom: 20px; }
.modal h2 { font-size: 1.8rem; margin-bottom: 12px; }
.modal p { color: var(--text-mid); margin-bottom: 24px; line-height: 1.7; font-size: 0.92rem; }
.modal-order-ref { background: var(--pink-light); border-radius: 10px; padding: 14px; margin-bottom: 22px; font-size: 0.88rem; color: var(--text-mid); }
.modal-order-ref strong { color: var(--pink-deep); font-size: 1.1rem; }
.modal-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Spinner ---- */
.spinner-wrap { display: flex; justify-content: center; padding: 60px; }
.spinner { width: 40px; height: 40px; border: 3px solid var(--pink-light); border-top-color: var(--pink-deep); border-radius: 50%; animation: spin 0.75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Toast ---- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #2C1A1A; color: white; padding: 14px 24px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 500; z-index: 5000;
  opacity: 0; transition: all 0.3s ease; pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: #1B5E20; }
.toast.error { background: #B71C1C; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 60px; }
  .hero-visual { order: -1; }
  .hero-img-main { max-width: 100%; aspect-ratio: 16/9; border-radius: 16px; }
  .float-tl, .float-br { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-sm { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero-content { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .order-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .product-modal { grid-template-columns: 1fr; max-width: 520px; }
  .product-modal-media { min-height: 280px; }
  .product-modal-content { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.72rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .type-options { flex-direction: column; }
  .pay-options { flex-direction: column; }
  .product-quick-btn { opacity: 1; transform: none; }
  .product-footer { align-items: stretch; flex-direction: column; }
  .atc-btn, .card-stepper { width: 100%; justify-content: center; }
  .cart-item { grid-template-columns: 48px minmax(0,1fr) auto; }
  .cart-item-remove { grid-column: 3; }
  .cart-item-qty { grid-column: 2 / 4; justify-content: center; }
  .product-modal-actions { align-items: stretch; flex-direction: column; }
  .track-card { padding: 24px 18px; }
  .track-input-row { grid-template-columns: 1fr; }
  .track-result-head { align-items: flex-start; flex-direction: column; }
  .track-steps { grid-template-columns: 1fr; text-align: left; }
  .track-step { display: flex; align-items: center; gap: 10px; text-align: left; }
  .track-step span { margin-bottom: 0; }
  .track-detail-grid { grid-template-columns: 1fr; }
  .track-item { flex-direction: column; gap: 4px; }
}
