@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --rose:    #C2185B;
  --blush:   #F8BBD9;
  --gold:    #D4AF37;
  --cream:   #FDF6F0;
  --dark:    #1A1A1A;
  --muted:   #6B6B6B;
  --light-border: #F0DDD5;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--dark);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 3px; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--rose); }

.btn-wa {
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-wa:hover { background: #1da851; transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 40%, #e1bee7 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1562690868-60bbe7293e94?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}

.hero-content { position: relative; z-index: 1; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-visual-card {
  display: none;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(90, 26, 58, 0.2);
  background: rgba(255, 248, 252, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(45, 10, 30, 0.15);
}

.hero-visual-media { position: relative; }

.hero-visual-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hero-visual-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #2d0a1e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.hero-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(90, 26, 58, 0.08);
}

.hero-visual-stats div {
  padding: 1rem 1.1rem;
  background: rgba(255, 248, 252, 0.95);
}

.hero-visual-stats strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #2d0a1e;
  margin-bottom: 0.2rem;
}

.hero-visual-stats span {
  font-size: 0.68rem;
  color: #5a1a3a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual-footer {
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.72rem;
  color: #5a1a3a;
  border-top: 1px solid rgba(90, 26, 58, 0.1);
}

@media (min-width: 992px) {
  .hero-visual-card { display: block; }
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #2d0a1e;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #5a1a3a;
  font-weight: 300;
  max-width: 480px;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(194, 24, 91, 0.3);
}
.btn-primary:hover {
  background: #a31150;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(194, 24, 91, 0.4);
}

.btn-outline {
  border: 2px solid var(--rose);
  color: var(--rose);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--rose);
  color: #fff;
}

/* ── Section headings ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

/* ── Category cards ── */
.cat-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
  aspect-ratio: 3/4;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.cat-card:hover img { transform: scale(1.06); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,10,30,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ── Product cards ── */
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--light-border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(194, 24, 91, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }

.product-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.product-top {
  flex: 1;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
  text-decoration: none;
}
.product-name:hover { color: var(--rose); }

.product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.product-price .old-price {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.4rem;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.03em;
  border: 2px solid #fff;
  white-space: nowrap;
}
.btn-order:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ── Filter tabs ── */
.filter-tab {
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid var(--light-border);
  background: #fff;
  color: var(--muted);
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

/* ── Occasions band ── */
.occasion-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.occasion-chip:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: translateY(-2px);
}

/* ── Instagram grid ── */
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.insta-item:hover img { transform: scale(1.08); }
.insta-item .insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(194, 24, 91, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  font-size: 1.5rem;
}
.insta-item:hover .insta-hover { opacity: 1; }

/* ── Footer ── */
footer {
  background: #1a0a12;
  color: #f0d0e0;
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--blush);
}

footer a {
  color: #c8a0b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
footer a:hover { color: var(--blush); }

footer p { font-size: 0.875rem; color: #a07090; }

.footer-divider { border-color: #3a1a2a; }

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--rose);
  padding: 0.75rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  gap: 3rem;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Utility ── */
.gold-dot { color: var(--gold); }

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--light-border);
  padding: 1rem 1.5rem;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }

/* ── Page header ── */
.page-header {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

/* ── Product detail ── */
.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.thumb-img.active, .thumb-img:hover { border-color: var(--rose); }

/* ── Badge ── */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  background: var(--blush);
  color: var(--rose);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .hero { min-height: 75vh; }
}
