/* ============================================
   SHAHZAIN GARMENTS - Baby Clothing Store
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #e84393;
  --primary-dark: #c0306e;
  --primary-light: #fce4f0;
  --secondary: #3dbdae;
  --secondary-dark: #2a9688;
  --accent: #ffb347;
  --accent2: #a78bfa;
  --bg: #fff9fb;
  --bg2: #f0faf9;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-muted: #888;
  --border: #f0dce8;
  --shadow: 0 4px 24px rgba(232,67,147,0.10);
  --shadow-md: 0 8px 32px rgba(232,67,147,0.15);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #fce4f0; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: linear-gradient(90deg, var(--primary), #a855f7);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 0;
  text-align: center;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top-bar a { color: #fff; opacity: 0.9; transition: var(--transition); }
.top-bar a:hover { opacity: 1; }
.top-bar-links { display: flex; gap: 20px; align-items: center; }
.top-bar-links i { margin-right: 5px; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(232,67,147,0.10);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 75px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(232,67,147,0.35);
}
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}
.logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* Search bar */
.nav-search {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  gap: 8px;
  transition: var(--transition);
  width: 220px;
}
.nav-search:focus-within {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.nav-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  width: 100%;
  color: var(--text);
}
.nav-search i { color: var(--text-muted); font-size: 0.9rem; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 4px; }
.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-btn:hover { background: var(--primary-light); color: var(--primary); }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); padding-left: 8px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fce4f0 0%, #e0f7f4 50%, #ede9fe 100%);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
}
.bubble:nth-child(1) { width: 120px; height: 120px; background: var(--primary); top: 10%; left: 5%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 80px; height: 80px; background: var(--secondary); top: 60%; left: 15%; animation-delay: 1s; }
.bubble:nth-child(3) { width: 60px; height: 60px; background: var(--accent); top: 20%; right: 20%; animation-delay: 2s; }
.bubble:nth-child(4) { width: 100px; height: 100px; background: var(--accent2); bottom: 10%; right: 10%; animation-delay: 1.5s; }
.bubble:nth-child(5) { width: 50px; height: 50px; background: var(--primary); top: 50%; right: 30%; animation-delay: 0.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.08); }
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(232,67,147,0.15);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 18px;
}
.hero-title .highlight {
  color: var(--primary);
  position: relative;
}
.hero-subtitle {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 420px;
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.stat { text-align: center; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #a855f7);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232,67,147,0.40);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,67,147,0.50); }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary-light); }
.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* Hero image side */
.hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img-card {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  animation: heroFloat 4s ease-in-out infinite;
  max-width: 380px;
  width: 100%;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-img-main {
  font-size: 8rem;
  margin-bottom: 10px;
}
.hero-img-tag {
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-block;
}
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 3s ease-in-out infinite;
}
.hero-float-badge.left { left: -20px; top: 30%; animation-delay: 0.5s; }
.hero-float-badge.right { right: -20px; bottom: 25%; animation-delay: 1s; }

/* ============================================
   SECTION STYLES
   ============================================ */
section { padding: 70px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(232,67,147,0.07);
}
.cat-card:hover, .cat-card.active {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  font-size: 2.8rem;
  margin-bottom: 10px;
  display: block;
}
.cat-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.cat-count { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(232,67,147,0.07);
  position: relative;
  border: 1.5px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.product-img-wrap {
  position: relative;
  background: linear-gradient(135deg, #fce4f0, #e0f7f4);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-emoji {
  font-size: 5rem;
  transition: var(--transition);
}
.product-card:hover .product-emoji { transform: scale(1.1) rotate(3deg); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 11px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.badge-new { background: var(--secondary); color: #fff; }
.badge-sale { background: var(--primary); color: #fff; }
.badge-hot { background: var(--accent); color: #fff; }
.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: #ccc;
}
.product-wishlist:hover, .product-wishlist.active { color: var(--primary); }
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(232,67,147,0.85));
  padding: 20px 14px 14px;
  transform: translateY(100%);
  transition: var(--transition);
  display: flex;
  gap: 8px;
}
.product-card:hover .product-overlay { transform: translateY(0); }
.overlay-btn {
  flex: 1;
  padding: 9px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.overlay-btn.add-cart { background: rgba(255,255,255,0.25); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.4); }
.overlay-btn.buy-now { background: var(--white); color: var(--primary); }
.overlay-btn:hover { transform: scale(1.03); }
.product-info { padding: 16px; }
.product-category { font-size: 0.75rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.product-name { font-weight: 600; font-size: 0.95rem; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.product-age { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.product-age i { margin-right: 4px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { display: flex; flex-direction: column; }
.price-current { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.price-old { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.add-to-cart-btn {
  background: linear-gradient(135deg, var(--primary), #a855f7);
  color: #fff;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.add-to-cart-btn:hover { transform: scale(1.05); box-shadow: 0 4px 14px rgba(232,67,147,0.4); }
.add-to-cart-btn.added { background: var(--secondary); }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 50%, #3dbdae 100%);
  border-radius: var(--radius);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  position: relative;
}
.promo-banner::before {
  content: '👶🍼👗🧸';
  position: absolute;
  font-size: 8rem;
  opacity: 0.12;
  right: -20px;
  top: -20px;
  line-height: 1;
}
.promo-text { color: #fff; }
.promo-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.promo-text p { opacity: 0.9; font-size: 1rem; }
.promo-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-wa-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}
.btn-wa-outline:hover { background: rgba(255,255,255,0.15); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-bg { background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(61,189,174,0.07);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(61,189,174,0.15); }
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
}
.fi-pink { background: var(--primary-light); }
.fi-teal { background: #e0f7f4; }
.fi-yellow { background: #fff7e6; }
.fi-purple { background: #ede9fe; }
.feature-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.feature-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(232,67,147,0.07);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { color: #555; font-size: 0.93rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   STORE INFO STRIP
   ============================================ */
.store-strip {
  background: linear-gradient(135deg, #1a1a2e, #2d1b69);
  color: #fff;
  padding: 50px 0;
}
.store-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.store-info-item { display: flex; gap: 16px; align-items: flex-start; }
.store-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.store-info-label { font-size: 0.78rem; opacity: 0.7; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.store-info-val { font-weight: 600; font-size: 0.95rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.85);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo-wrap { margin-bottom: 18px; }
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
}
.footer-logo-sub { font-size: 0.8rem; opacity: 0.6; }
.footer-desc { font-size: 0.88rem; opacity: 0.75; line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: #fff;
}
.social-btn:hover { background: var(--primary); transform: translateY(-2px); }
.footer-heading { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; opacity: 0.75; transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--primary); padding-left: 4px; }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.hour-row { display: flex; justify-content: space-between; font-size: 0.86rem; opacity: 0.8; }
.hour-row.today { color: var(--secondary); font-weight: 600; opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.83rem;
  opacity: 0.65;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.50);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.50); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75), 0 0 0 12px rgba(37,211,102,0.10); }
}

/* ============================================
   FILTER BAR (Products Page)
   ============================================ */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(232,67,147,0.07);
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-label { font-weight: 600; font-size: 0.88rem; color: var(--text-muted); }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg);
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.filter-select {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.filter-select:focus { border-color: var(--primary); }
.filter-right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.result-count { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   CART PAGE
   ============================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(232,67,147,0.06);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.cart-item:hover { border-color: var(--primary); }
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fce4f0, #e0f7f4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; }
.cart-item-cat { font-size: 0.78rem; color: var(--secondary); font-weight: 600; margin-bottom: 8px; }
.cart-item-price { font-weight: 700; color: var(--primary); }
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  background: var(--bg);
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--primary-light); color: var(--primary); }
.qty-num {
  width: 36px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  padding: 6px 4px;
  background: #fff;
  outline: none;
}
.remove-item { color: #ccc; cursor: pointer; font-size: 1.1rem; transition: var(--transition); padding: 8px; }
.remove-item:hover { color: #e74c3c; }

/* Order Summary */
.order-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  position: sticky;
  top: 100px;
}
.summary-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 22px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total { font-weight: 700; font-size: 1.05rem; color: var(--primary); }
.summary-coupon { display: flex; gap: 8px; margin: 18px 0; }
.coupon-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}
.coupon-input:focus { border-color: var(--primary); }
.coupon-btn { padding: 10px 16px; background: var(--primary-light); color: var(--primary); border-radius: 10px; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: var(--transition); }
.coupon-btn:hover { background: var(--primary); color: #fff; }
.checkout-btn { width: 100%; padding: 15px; background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; border-radius: 14px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.40); }
.empty-cart { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.empty-cart-icon { font-size: 5rem; margin-bottom: 20px; opacity: 0.5; }
.empty-cart h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; margin-bottom: 3px; }
.contact-val { font-weight: 600; font-size: 0.95rem; }
.contact-val a { color: var(--primary); }

/* Form */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
  color: var(--text);
}
.form-control:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px var(--primary-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 30px;
  box-shadow: var(--shadow);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #fce4f0 0%, #e0f7f4 100%);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,67,147,0.15), transparent);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.breadcrumb { font-size: 0.88rem; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 8px; }

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  border-left: 4px solid var(--secondary);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 300px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.4rem; }

/* ============================================
   PRODUCT MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.85) translateY(30px);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-img {
  background: linear-gradient(135deg, #fce4f0, #e0f7f4);
  border-radius: 24px 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  padding: 40px;
  min-height: 380px;
}
.modal-img img { max-height: 280px; object-fit: contain; width: 100%; }
.modal-body { padding: 36px 32px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  z-index: 10;
}
.modal-close:hover { background: var(--primary-light); color: var(--primary); }
.modal-cat { font-size: 0.8rem; color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.modal-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.modal-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.modal-price { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.modal-old-price { color: var(--text-muted); text-decoration: line-through; font-size: 1rem; }
.modal-desc { color: #666; font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.modal-size-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.size-chips { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.size-chip {
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.size-chip:hover, .size-chip.active { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.modal-add-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.modal-add-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,67,147,0.4); }
.modal-wa-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.modal-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in { animation: fadeIn 0.6s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.no-results { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.no-results-icon { font-size: 4rem; margin-bottom: 14px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 768px) {
  .top-bar-inner { justify-content: center; }
  .top-bar-msg { display: none; }
  .nav-search { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img-wrap { order: -1; }
  .hero-float-badge.left, .hero-float-badge.right { display: none; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img { border-radius: 24px 24px 0 0; min-height: 240px; font-size: 6rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .promo-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .product-img-wrap { height: 170px; }
  .product-emoji { font-size: 3.5rem; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .float-wa { width: 50px; height: 50px; font-size: 1.3rem; right: 16px; bottom: 20px; }
}
