/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink-1: #fff0f5;
  --pink-2: #ffe0ee;
  --pink-3: #ffb8d8;
  --pink-4: #ff85b8;
  --pink-5: #e8559a;
  --pink-6: #c93d82;
  --blush: #ffd6e8;
  --cream: #fff8fb;
  --white: #ffffff;
  --text-dark: #3a1a2e;
  --text-mid: #7a4060;
  --text-light: #b07090;
  --shadow-pink: 0 4px 24px rgba(233,85,154,0.13);
  --shadow-sm: 0 2px 12px rgba(180,60,120,0.10);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== CLOUD BACKGROUND ===== */
.clouds-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255,255,255,0.7);
  border-radius: 50px;
}
.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 { width: 200px; height: 60px; top: 8%; left: -5%; animation: driftCloud 28s linear infinite; opacity: 0.6; }
.cloud-1::before { width: 100px; height: 80px; top: -35px; left: 30px; }
.cloud-1::after { width: 70px; height: 60px; top: -20px; left: 90px; }

.cloud-2 { width: 150px; height: 45px; top: 22%; right: -3%; animation: driftCloud 22s linear infinite reverse; opacity: 0.5; animation-delay: -8s; }
.cloud-2::before { width: 80px; height: 65px; top: -30px; left: 20px; }
.cloud-2::after { width: 55px; height: 50px; top: -18px; left: 70px; }

.cloud-3 { width: 180px; height: 55px; top: 45%; left: -8%; animation: driftCloud 35s linear infinite; opacity: 0.45; animation-delay: -15s; }
.cloud-3::before { width: 90px; height: 75px; top: -35px; left: 25px; }
.cloud-3::after { width: 65px; height: 55px; top: -22px; left: 80px; }

.cloud-4 { width: 120px; height: 38px; top: 65%; right: -2%; animation: driftCloud 20s linear infinite reverse; opacity: 0.4; animation-delay: -5s; }
.cloud-4::before { width: 65px; height: 55px; top: -25px; left: 15px; }
.cloud-4::after { width: 45px; height: 40px; top: -14px; left: 55px; }

.cloud-5 { width: 240px; height: 70px; top: 78%; left: 20%; animation: driftCloud2 40s linear infinite; opacity: 0.35; animation-delay: -20s; }
.cloud-5::before { width: 120px; height: 95px; top: -45px; left: 40px; }
.cloud-5::after { width: 85px; height: 70px; top: -28px; left: 110px; }

.cloud-6 { width: 160px; height: 50px; top: 90%; right: 10%; animation: driftCloud2 32s linear infinite reverse; opacity: 0.4; animation-delay: -12s; }
.cloud-6::before { width: 85px; height: 70px; top: -32px; left: 22px; }
.cloud-6::after { width: 60px; height: 52px; top: -20px; left: 75px; }

@keyframes driftCloud {
  from { transform: translateX(-300px); }
  to { transform: translateX(110vw); }
}
@keyframes driftCloud2 {
  from { transform: translateX(110vw); }
  to { transform: translateX(-300px); }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,240,245,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pink-3);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(233,85,154,0.15); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--pink-6);
  text-decoration: none;
  font-weight: 700;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 0.2rem;
}
.nav-link {
  display: block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active {
  background: var(--pink-2);
  color: var(--pink-6);
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--pink-5);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 4rem;
  background: linear-gradient(135deg, #fff0f5 0%, #ffe8f2 40%, #ffd6e8 100%);
  overflow: hidden;
}
.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.8s ease both;
}
.hero-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink-5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--pink-5);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.btn-hero {
  display: inline-block;
  background: var(--pink-5);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(233,85,154,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(233,85,154,0.45);
  background: var(--pink-6);
}

.hero-clouds { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hcloud { position: absolute; opacity: 0.5; }
.hcloud-1 { width: 280px; top: 15%; animation: driftCloud 25s linear infinite; opacity: 0.6; }
.hcloud-2 { width: 180px; top: 50%; animation: driftCloud 32s linear infinite; opacity: 0.5; animation-delay: -10s; }
.hcloud-3 { width: 220px; top: 30%; animation: driftCloud2 28s linear infinite; opacity: 0.55; animation-delay: -5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}
.section-alt {
  background: linear-gradient(180deg, var(--pink-1) 0%, var(--cream) 100%);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.cat-card {
  background: var(--white);
  border: 2px solid var(--pink-3);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-3), var(--pink-5));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.cat-card:hover {
  border-color: var(--pink-5);
  transform: translateY(-5px);
  box-shadow: var(--shadow-pink);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon { font-size: 3rem; line-height: 1; }
.cat-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
}
.cat-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
.cat-arrow {
  font-size: 1.2rem;
  color: var(--pink-5);
  margin-top: 0.5rem;
  transition: transform 0.2s;
}
.cat-card:hover .cat-arrow { transform: translateX(5px); }

/* ===== BRAND TABS ===== */
.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.brand-tab {
  padding: 7px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--pink-3);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.brand-tab:hover { background: var(--pink-2); border-color: var(--pink-4); color: var(--pink-6); }
.brand-tab.active { background: var(--pink-5); border-color: var(--pink-5); color: #fff; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--pink-2);
  transition: all 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-4);
}
.product-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: var(--pink-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.product-img img { width: 100%; height: 270px; object-fit: cover; }
.product-body { padding: 1rem 1.1rem 1.2rem; }
.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink-5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.product-name { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.product-condition { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--pink-6); }
.product-sold {
  display: inline-block;
  background: #f3f3f3;
  color: #aaa;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  text-decoration: line-through;
}

.empty-note {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
  font-size: 1rem;
  display: none;
}
.empty-note.visible { display: block; }

/* ===== TIPS ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--pink-2);
  transition: all 0.3s;
}
.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-3);
}
.tip-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.tip-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.tip-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: flex;
  justify-content: center;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--pink-3);
  padding: 3rem 3rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-pink);
}
.contact-cloud {
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 60px;
  background: var(--pink-1);
  border-radius: 80px;
  opacity: 0.7;
}
.contact-cloud::before {
  content: '';
  position: absolute;
  width: 80px; height: 70px;
  background: inherit;
  border-radius: 50%;
  top: -30px; left: 20px;
}
.contact-avatar {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.contact-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.contact-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(220,39,67,0.3);
}
.btn-ig:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(220,39,67,0.4);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(80,10,50,0.45);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: var(--pink-2);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--pink-6);
  z-index: 10;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--pink-3); }
.modal-img-wrap {
  width: 100%;
  height: 240px;
  background: var(--pink-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-body { padding: 1.5rem 1.8rem 2rem; }
.modal-brand {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink-5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.modal-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.modal-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-6);
  margin-bottom: 12px;
}
.modal-condition {
  display: inline-block;
  background: var(--pink-1);
  color: var(--pink-6);
  border: 1px solid var(--pink-3);
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.modal-desc {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}
.modal-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-contact {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: #fff;
  box-shadow: 0 4px 16px rgba(220,39,67,0.25);
}
.btn-contact:hover { transform: translateY(-2px); box-shadow: 0 7px 22px rgba(220,39,67,0.35); }

/* ===== GALLERY / SLIDESHOW ===== */
.modal-gallery {
  background: #1a0a12;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 1rem 1rem 0.75rem;
}
.gallery-main {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.gallery-img-wrap {
  position: relative;
  flex: 1;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #2a1020;
  transition: opacity 0.15s ease;
  font-size: 4rem;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.gallery-arrow {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  padding-bottom: 2px;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-arrow.left { left: 8px; }
.gallery-arrow.right { right: 8px; }
.gallery-arrow:hover { background: rgba(255,255,255,0.35); }
.gallery-counter {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 6px 0 8px;
}
.gallery-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.thumb {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: all 0.2s;
  background: #2a1020;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--pink-4); opacity: 1; }
.thumb:hover { opacity: 0.85; }

/* ===== SEARCH ===== */
.search-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 12px 20px 12px 44px;
  border: 2px solid var(--pink-3);
  border-radius: 30px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
  border-color: var(--pink-5);
  box-shadow: 0 0 0 3px rgba(233,85,154,0.15);
}

/* ===== PRICE FILTER ===== */
.price-filter {
  text-align: center;
  margin-bottom: 1.5rem;
}
.price-label {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: block;
  margin-bottom: 14px;
}
.price-label b { color: var(--pink-6); }
.price-sliders {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  height: 36px;
  display: flex;
  align-items: center;
}
.price-sliders::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--pink-2);
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.price-range {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
  top: 28%;
  transform: translateY(-50%);
  margin: 0;
  outline: none;
}
.price-range::-webkit-slider-runnable-track {
  background: transparent;
  height: 4px;
}
.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--pink-5);
  border: none;
  pointer-events: all;
  cursor: pointer;
  transition: transform 0.15s;
  clip-path: path('M12 21.593c-5.63-5.539-11-10.297-11-14.402 0-3.791 3.068-5.191 5.281-5.191 1.312 0 4.151.501 5.719 4.457 1.59-3.968 4.464-4.447 5.726-4.447 2.54 0 5.274 1.621 5.274 5.181 0 4.069-5.136 8.625-11 14.402z');
}
.price-range::-webkit-slider-thumb:hover { transform: scale(1.25); }
.price-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--pink-5);
  border: none;
  pointer-events: all;
  cursor: pointer;
  clip-path: path('M12 21.593c-5.63-5.539-11-10.297-11-14.402 0-3.791 3.068-5.191 5.281-5.191 1.312 0 4.151.501 5.719 4.457 1.59-3.968 4.464-4.447 5.726-4.447 2.54 0 5.274 1.621 5.274 5.181 0 4.069-5.136 8.625-11 14.402z');
}

/* ===== BADGE ===== */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  letter-spacing: 0.04em;
}
.badge-new { background: var(--pink-5); color: #fff; }
.badge-hot { background: #ff6b35; color: #fff; }

/* ===== SOLD OVERLAY ===== */
.sold-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(50,5,30,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius) var(--radius) 0 0;
  z-index: 5;
  backdrop-filter: blur(1px);
}
.sold-overlay span {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

/* ===== DELIVERY ===== */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.delivery-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--pink-2);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-3);
}
.delivery-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.delivery-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.delivery-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.delivery-free {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  min-height: 160px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--pink-2);
  padding: 1.25rem 1.5rem;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.review-card:hover {
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-3);
}
.review-card.fade-out {
  opacity: 0;
  transform: translateY(10px);
}
.review-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.review-stars { color: #ffb347; font-size: 0.9rem; margin-bottom: 0.5rem; }
.review-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.5rem;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-3);
  transition: background 0.3s;
  cursor: pointer;
}
.reviews-dot.active { background: var(--pink-5); }


/* ===== QUIZ ===== */
.quiz-wrap {
  display: flex;
  justify-content: center;
}
.quiz-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--pink-3);
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-pink);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--pink-2);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink-4), var(--pink-5));
  border-radius: 10px;
  transition: width 0.4s ease;
}
.quiz-step-label { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.5rem; }
.quiz-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.quiz-question {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.quiz-answers { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.quiz-btn {
  background: var(--pink-1);
  border: 1.5px solid var(--pink-3);
  color: var(--text-mid);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}
.quiz-btn:hover { background: var(--pink-2); border-color: var(--pink-4); color: var(--pink-6); transform: translateX(4px); }
.quiz-btn.selected { background: var(--pink-5); border-color: var(--pink-5); color: #fff; }
.quiz-result { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.quiz-result-emoji { font-size: 3.5rem; }
.quiz-result-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--text-dark); }
.quiz-result-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; max-width: 400px; }
.quiz-result-brands { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 0.5rem 0; }
.quiz-brand-tag {
  background: var(--pink-1);
  border: 1px solid var(--pink-3);
  color: var(--pink-6);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}
.quiz-result-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }
.quiz-restart {
  background: none;
  border: 1.5px solid var(--pink-3);
  color: var(--text-mid);
  padding: 11px 20px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
}
.quiz-restart:hover { background: var(--pink-1); border-color: var(--pink-4); color: var(--pink-6); }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  background: var(--text-dark);
  padding: 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-logo {
  font-family: var(--font-display);
  color: var(--pink-3);
  font-size: 1.1rem;
}
.footer-copy {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(255,240,245,0.97);
    border-bottom: 1px solid var(--pink-3);
    flex-direction: column;
    padding: 1rem;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .hero-deco { display: none; }
  .hero { text-align: center; padding-top: 90px; }
  .contact-card { padding: 2rem 1.5rem; }
}
