/* ===== BLOOM BITES 868 — Final Build ===== */

:root {
  --pink: #f4a7bb;
  --pink-light: #fce4ec;
  --pink-dark: #c9637e;
  --pink-deep: #a8405c;
  --lavender: #d4b8e8;
  --lavender-light: #f3e8ff;
  --mint: #b8e8d4;
  --mint-light: #e8faf3;
  --peach: #ffd4b8;
  --peach-light: #fff3e8;
  --gold: #d4a857;
  --gold-light: #fdf6e3;
  --cream: #fdf8f4;
  --white: #ffffff;
  --text: #3d2c3e;
  --text-light: #6b5a6c;
  --text-muted: #9b8a9c;
  --border: #f0e4f0;
  --border-pink: rgba(244,167,187,0.3);
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --shadow: 0 4px 20px rgba(212, 114, 140, 0.1);
  --shadow-lg: 0 8px 40px rgba(212, 114, 140, 0.15);
  --shadow-card: 0 2px 12px rgba(61, 44, 62, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 64px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); font-size: 13px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(253, 248, 244, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-icon { font-size: 22px; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--pink-dark); }

.nav-cta {
  background: var(--wa-green) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--wa-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--cream) 0%, var(--pink-light) 40%, var(--lavender-light) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(244,167,187,0.15) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  color: var(--text-light);
  transition: all 0.25s;
  border: 1px solid var(--border);
  text-decoration: none;
}

.social-link:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  transform: translateY(-2px);
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-flower {
  position: absolute;
  font-size: 44px;
  opacity: 0.25;
  animation: float 7s ease-in-out infinite;
}

.f1 { top: 12%; left: 6%; animation-delay: 0s; }
.f2 { top: 22%; right: 10%; animation-delay: 1.2s; font-size: 34px; }
.f3 { bottom: 22%; left: 12%; animation-delay: 2.4s; font-size: 38px; }
.f4 { bottom: 32%; right: 6%; animation-delay: 3.6s; }
.f5 { top: 55%; left: 45%; animation-delay: 4.8s; font-size: 30px; }
.f6 { top: 70%; right: 20%; animation-delay: 5.5s; font-size: 28px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-wa-sm { padding: 12px 24px; font-size: 14px; }
.btn-wa-lg { padding: 18px 36px; font-size: 17px; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--pink);
}

.btn-outline:hover {
  background: var(--pink-light);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 10px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 50px;
  font-weight: 300;
}

/* ===== INSTAGRAM CAROUSEL ===== */
.ig-carousel-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.ig-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ig-carousel::-webkit-scrollbar {
  display: none;
}

.ig-slide {
  flex: 0 0 320px;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.ig-slide::after {
  content: 'View on Instagram 🌸';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 46px;
  background: var(--white);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 var(--radius) var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-dark);
  letter-spacing: 0.3px;
}

.ig-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ig-slide iframe {
  width: 100%;
  height: calc(100% + 160px);
  border: none;
  margin-top: -64px;
  pointer-events: auto;
}

.ig-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s;
}

.ig-carousel-btn:hover {
  background: var(--pink-light);
  border-color: var(--pink);
  color: var(--pink-dark);
  transform: translateY(-50%) scale(1.1);
}

.ig-prev { left: -12px; }
.ig-next { right: -12px; }

@media (max-width: 768px) {
  .ig-slide {
    flex: 0 0 280px;
    height: 380px;
  }

  .ig-carousel-btn {
    display: none;
  }
}

/* ===== WHAT WE OFFER ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-alt .offer-card {
  background: var(--white);
  border-color: var(--border);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}

.offer-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, var(--pink-light) 0%, var(--lavender-light) 50%, var(--pink-light) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.offer-img:has(.offer-img-photo[complete]) {
  animation: none;
}

.offer-img-bouquet { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.offer-img-boxes { background: linear-gradient(135deg, #f3e8ff, #e1bee7); }
.offer-img-letterbox { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.offer-img-cakes { background: linear-gradient(135deg, #fff3e8, #ffe0b2); }

.offer-img-emoji {
  font-size: 72px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.offer-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-card:hover .offer-img-photo {
  transform: scale(1.05);
}

.offer-body {
  padding: 24px;
}

.offer-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}

.offer-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.offer-price {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 10px;
}

.offer-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.offer-link:hover { color: var(--pink-deep); text-decoration: underline; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.price-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.price-table-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}

.price-row:last-of-type { border-bottom: none; }

.price-amount {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
}

.price-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  padding: 12px;
  background: var(--pink-light);
  border-radius: var(--radius-sm);
}

.pricing-footer {
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  text-align: center;
}

.pricing-footer p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-footer p:last-child { margin-bottom: 0; }
.pricing-footer strong { color: var(--text); }

/* Price addon (filling surcharge) */
.price-addon {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

.price-addon strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
}

.price-addon small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.price-row-sm {
  padding: 6px 0;
  font-size: 13px;
}

.price-amount-sm {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
}

/* Filling cost note in form */
.filling-cost-note {
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--peach-light);
  border: 1px solid var(--peach);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
}

.filling-cost-note[hidden] { display: none; }

.label-note {
  font-weight: 400;
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== FLAVORS — CHIP STYLE ===== */
.flavor-section {
  max-width: 700px;
  margin: 0 auto;
}

.dietary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.dietary-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: var(--mint-light);
  border: 1px solid var(--mint);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.checkbox-grid-sm {
  grid-template-columns: repeat(3, 1fr);
}

.check-item-sm {
  padding: 8px 10px;
  font-size: 12px;
}

.flavor-row {
  margin-bottom: 28px;
}

.flavor-row:last-child { margin-bottom: 0; }

.flavor-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--text-light);
  transition: all 0.2s;
}

.section-alt .chip { background: var(--cream); }

.chip:hover {
  border-color: var(--pink);
  background: var(--pink-light);
  color: var(--pink-dark);
}

/* ===== SPIKED SECTION ===== */
.spiked-section {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--peach-light) 100%);
}

.spiked-banner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.spiked-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.spiked-banner h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text);
}

.spiked-banner p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.spiked-occasions {
  font-style: italic;
  margin-bottom: 24px !important;
}

/* ===== HOW TO ORDER — TIMELINE ===== */
.steps-timeline {
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
  padding-left: 40px;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  border-radius: 1px;
}

.step {
  position: relative;
  margin-bottom: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step:last-child { margin-bottom: 0; }

.step-number {
  position: absolute;
  left: -40px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(244,167,187,0.4);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.step-content ul {
  list-style: none;
  padding: 0;
  margin-top: 6px;
}

.step-content li {
  font-size: 13px;
  color: var(--text-light);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}

.step-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: bold;
}

.rush-note {
  text-align: center;
  background: var(--peach-light);
  border: 1px solid var(--peach);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.rush-note p { font-size: 15px; color: var(--text); }

/* ===== ORDER SECTION ===== */
.order-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

.order-quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.order-quick-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
}

.order-quick-card > p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.order-quick-alt {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.order-quick-alt p {
  font-size: 14px;
  margin-bottom: 6px;
}

.order-quick-alt a {
  color: var(--pink-dark);
  font-weight: 600;
  text-decoration: none;
}

.order-quick-alt a:hover { text-decoration: underline; }

/* Order Form */
.order-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.order-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 8px;
}

.form-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input:not(.qty-input),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:not(.qty-input):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(244, 167, 187, 0.12);
}

.form-group textarea { resize: vertical; min-height: 80px; }

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  flex-wrap: nowrap;
}

.check-item:hover {
  border-color: var(--pink);
  background: var(--pink-light);
}

.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--pink-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.check-item span { color: var(--text-light); flex: 1; }

.qty-input {
  width: 32px !important;
  max-width: 32px !important;
  height: 22px !important;
  padding: 0 2px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-family: var(--font-body);
  text-align: center;
  color: var(--text);
  background: var(--white);
  flex: 0 0 32px;
  display: inline-block;
  margin-left: auto;
  opacity: 0.4;
  transition: opacity 0.2s, border-color 0.2s;
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.check-item:has(input[type="checkbox"]:checked) .qty-input {
  opacity: 1;
  border-color: var(--pink);
}

.qty-input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(244,167,187,0.15);
}

.check-item:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-light);
}

.check-item:has(input:checked) span {
  color: var(--pink-dark);
  font-weight: 600;
}

/* Radio */
.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.radio-item:hover { border-color: var(--pink); }

.radio-item:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-light);
}

.radio-item input[type="radio"] {
  accent-color: var(--pink-dark);
  cursor: pointer;
}

/* Conditional Fields */
.conditional-field {
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 1;
}

.conditional-field[hidden] {
  display: none;
}

/* Order Summary */
.order-summary {
  background: var(--pink-light);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.order-summary h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text);
}

.order-summary ul { list-style: none; }

.order-summary li {
  font-size: 13px;
  padding: 4px 0;
  color: var(--text-light);
  border-bottom: 1px solid rgba(244,167,187,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.order-summary li:last-child { border-bottom: none; }

.summary-price {
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
  font-size: 13px;
}

.order-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid var(--pink);
}

.order-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.order-total-line strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--pink-dark);
}

.order-total small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

.form-field-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.form-field-note a {
  color: var(--pink-dark);
  font-weight: 600;
  text-decoration: none;
}

.form-field-note a:hover {
  text-decoration: underline;
}

.form-note a {
  color: var(--pink-dark);
  text-decoration: none;
  font-weight: 600;
}

/* ===== SOCIAL FOLLOW CAMPAIGN ===== */
.social-follow-section {
  background: linear-gradient(170deg, var(--cream) 0%, var(--lavender-light) 100%);
}

.social-follow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.social-follow-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  background: linear-gradient(110deg, var(--pink-light) 0%, var(--lavender-light) 50%, var(--pink-light) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.social-follow-bg {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

.social-follow-card:hover .social-follow-bg {
  transform: scale(1.12);
}

.social-follow-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(to top, rgba(253, 248, 244, 0.97) 0%, rgba(253, 248, 244, 0.9) 50%, rgba(253, 248, 244, 0.4) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-follow-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 3;
  transition: height 0.3s ease;
}

.social-follow-ig::before { background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045); }
.social-follow-fb::before { background: #1877f2; }
.social-follow-tt::before { background: linear-gradient(90deg, #00f2ea, #ff0050); }
.social-follow-wa::before { background: #25D366; }

.social-follow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.social-follow-card:hover::before {
  height: 5px;
}

.social-follow-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.social-follow-ig .social-follow-icon { color: #c13584; }
.social-follow-fb .social-follow-icon { color: #1877f2; }
.social-follow-tt .social-follow-icon { color: #010101; }
.social-follow-wa .social-follow-icon { color: #25D366; }

.social-follow-card:hover .social-follow-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.9);
}

.social-follow-overlay strong {
  font-size: 18px;
  font-family: var(--font-display);
  color: var(--text);
}

.social-follow-handle {
  font-size: 13px;
  color: var(--text-muted);
}

.social-follow-overlay p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 4px 0 12px;
}

.social-follow-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink-dark);
  padding: 8px 18px;
  border: 1.5px solid var(--pink);
  border-radius: var(--radius-pill);
  transition: all 0.25s;
}

.social-follow-card:hover .social-follow-btn {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.social-follow-tagline {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 768px) {
  .social-follow-grid {
    gap: 12px;
  }

  .social-follow-overlay {
    padding: 14px;
  }

  .social-follow-overlay strong {
    font-size: 14px;
  }

  .social-follow-btn {
    padding: 5px 12px;
    font-size: 11px;
  }

  .social-follow-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }

  .social-follow-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .social-follow-grid {
    gap: 8px;
  }

  .social-follow-overlay {
    padding: 10px;
  }

  .social-follow-overlay p {
    display: none;
  }

  .social-follow-overlay strong {
    font-size: 13px;
  }

  .social-follow-handle {
    font-size: 11px;
  }

  .social-follow-btn {
    padding: 4px 10px;
    font-size: 10px;
  }

  .social-follow-icon {
    width: 28px;
    height: 28px;
  }

  .social-follow-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Order items list (form) */
.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-item-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.order-item-row:hover {
  border-color: var(--pink);
  background: var(--pink-light);
}

.order-item-row:has(input[type="checkbox"]:checked) {
  border-color: var(--pink);
  background: var(--pink-light);
}

.order-item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex: 1;
  font-size: 13px;
}

.order-item-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--pink-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.order-item-label span {
  color: var(--text-light);
}

.order-item-row:has(input[type="checkbox"]:checked) .order-item-label span {
  color: var(--pink-dark);
  font-weight: 600;
}

.order-item-row:has(input[type="checkbox"]:checked) .qty-input {
  opacity: 1;
  border-color: var(--pink);
}

/* ===== CARE TIPS ===== */
.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.care-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: all 0.2s ease;
}

.section-alt .care-item { background: var(--white); }

.care-item:hover { box-shadow: var(--shadow-card); }

.care-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.care-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text);
}

.care-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== FEATURED PRODUCT HIGHLIGHT ===== */
.featured-section {
  background: linear-gradient(170deg, var(--lavender-light) 0%, var(--pink-light) 50%, var(--cream) 100%);
}

.featured-badge-wrap {
  text-align: center;
  margin-bottom: 12px;
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-dark), var(--lavender));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Featured Carousel */
.featured-carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.featured-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(110deg, var(--pink-light) 0%, var(--lavender-light) 50%, var(--pink-light) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.featured-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.featured-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.featured-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 26px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.25s;
}

.featured-carousel-btn:hover {
  background: var(--white);
  border-color: var(--pink);
  color: var(--pink-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.featured-prev { left: 16px; }
.featured-next { right: 16px; }

.featured-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.featured-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}

.featured-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.featured-dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

.featured-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.featured-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: all 0.2s ease;
}

.featured-detail-item:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--pink);
}

.featured-detail-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.featured-detail-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text);
}

.featured-detail-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== PRODUCT GALLERY ===== */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.gallery-filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
  border-color: var(--pink);
  color: var(--pink-dark);
  background: var(--pink-light);
}

.gallery-filter-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  font-weight: 600;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  background: linear-gradient(110deg, var(--pink-light) 0%, var(--lavender-light) 50%, var(--pink-light) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.gallery-item.loaded {
  animation: none;
  background: var(--cream);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gallery-item.visible {
  animation: galleryFadeIn 0.4s ease forwards;
}

@keyframes galleryFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Multi-image gallery cards */
.gallery-item-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-item-images .gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.4s ease;
}

.gallery-item-images .gallery-img.active {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Pip indicators */
.gallery-pips {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-pips,
.gallery-item.tapped .gallery-pips {
  opacity: 1;
}

.gallery-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  transition: all 0.25s;
}

.gallery-pip.active {
  background: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(61, 44, 62, 0.92) 0%, rgba(61, 44, 62, 0.6) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .featured-carousel-wrap {
    border-radius: var(--radius-sm);
    max-width: 100%;
  }

  .featured-carousel {
    aspect-ratio: 3/3;
  }

  .featured-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .featured-prev { left: 10px; }
  .featured-next { right: 10px; }

  .featured-details {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-filter {
    gap: 6px;
  }

  .gallery-filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .gallery-item-overlay {
    opacity: 1;
  }

  .gallery-pips {
    opacity: 1;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .featured-carousel-wrap {
    max-width: 85%;
  }
}

@media (min-width: 1025px) {
  .featured-carousel-wrap {
    max-width: 900px;
  }
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: var(--cream);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-icon { font-size: 22px; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.footer-tagline {
  font-size: 14px;
  color: var(--pink);
  font-style: italic;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  transition: all 0.25s;
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-location {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all 0.3s;
  animation: wa-bounce 2s ease-in-out 1s 1;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-4px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero { min-height: 85vh; padding: 100px 20px 60px; }
  .hero-title { font-size: 2rem; }
  .section { padding: 60px 0; }

  .offer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .order-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .order-quick-card { position: static; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }

  .steps-timeline { padding-left: 36px; }
  .steps-timeline::before { left: 16px; }
  .step-number { left: -36px; width: 32px; height: 32px; font-size: 13px; }

  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .order-form-wrap { padding: 24px 18px; }
  .price-row { font-size: 14px; }
  .price-amount { font-size: 17px; }
}
