:root {
  --blush: #f8d7da;
  --nude: #f5e6e8;
  --white: #ffffff;
  --gold: #d4af37;
  --ink: #402c32;
  --muted: #7e666d;
  --shadow: 0 18px 50px rgba(116, 80, 90, 0.12);
  --shadow-soft: 0 10px 24px rgba(116, 80, 90, 0.08);
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(248, 215, 218, 0.75), transparent 36%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdfd 0%, #fdf6f7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Playfair Display", serif;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.luxury-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.luxury-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: var(--shadow);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
  color: #fff;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.34);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(64, 44, 50, 0.12);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.45);
}

.section-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 215, 218, 0.34), rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.22);
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(49, 32, 37, 0.04), rgba(49, 32, 37, 0.42)),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(54, 29, 36, 0.45) 100%);
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

.editorial-photo {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.product-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  background: linear-gradient(180deg, #fff, #f8d7da);
}

.gallery-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.nav-link {
  position: relative;
  color: var(--ink);
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 112px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0;
}

.brand-logo {
  height: 8.25rem;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  margin-top: -1.2rem;
  margin-bottom: -1.2rem;
  filter: drop-shadow(0 10px 18px rgba(212, 175, 55, 0.12));
}

@media (min-width: 640px) {
  .brand-logo {
    height: 10rem;
  }
}

.desktop-nav {
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(116, 80, 90, 0.08);
  padding: 0.8rem 1rem;
}

.desktop-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 9999px;
  font-size: 0.95rem;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  background: rgba(248, 215, 218, 0.42);
}

.desktop-nav .nav-link::after {
  bottom: 0.25rem;
}

.mobile-menu-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 92px;
  }

  .brand-logo {
    height: 7.25rem;
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(64, 44, 50, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.cart-badge {
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--gold);
  color: white;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up,
  .luxury-card,
  .btn-primary,
  .btn-secondary {
    transition: none;
  }
}
