/* Flora Flowers - Premium Styles */

:root {
  --cream: #f9f4ee;
  --cream-dark: #f0e8df;
  --plum: #5c2e3a;
  --plum-light: #7a3d4d;
  --plum-dark: #3d1f28;
  --rose: #c9a0a8;
  --rose-light: #e8d5d9;
  --gold: #b8956b;
  --text: #2c2420;
  --text-muted: #6b5f58;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 12px 48px rgba(44, 36, 32, 0.12);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans: 'Montserrat', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 15px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--plum-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

em, .script { font-family: var(--font-script); font-style: normal; color: var(--plum); }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--gold, #c4a574), transparent);
}

.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--white); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-text { background: none; color: var(--plum); padding: 8px 0; letter-spacing: 0.05em; text-transform: none; font-weight: 500; }
.btn-text:hover { color: var(--plum-dark); }
.btn-danger { color: #a04040; }
.btn-sm { padding: 8px 16px; font-size: 11px; }
.btn-lg { padding: 18px 40px; font-size: 13px; }
.btn-block { width: 100%; }

/* Header */
.header-top {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.header-badge {
  background: var(--gold);
  color: var(--plum-dark);
  padding: 3px 10px;
  border-radius: 2px;
  font-weight: 600;
}

.header-promo { color: var(--rose-light); }
.header-instagram:hover { color: var(--white); }

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
  top: 0;
  z-index: 100;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-flora {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--plum-dark);
  letter-spacing: 0.02em;
}
.logo-flowers {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--plum);
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu > a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-menu > a:hover { color: var(--plum); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
}

.nav-actions > a[data-nav-link] {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
}

.nav-actions > a[data-nav-link]:hover { color: var(--plum); }

.cart-link {
  position: relative;
  color: var(--plum);
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--plum);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(61, 31, 40, 0.18);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--plum);
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
  height: 14px;
}

.nav-toggle-bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.menu-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.menu-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,31,40,0.75) 0%, rgba(92,46,58,0.45) 50%, rgba(44,36,32,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 80px 24px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero h1 em {
  color: var(--rose-light);
  font-size: 1.1em;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Campaign Banner */
.campaign-banner {
  background: var(--plum);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.campaign-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--plum-dark);
  padding: 4px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 16px;
}

.campaign-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.campaign-inner h2 span {
  font-family: var(--font-script);
  font-size: 1.3em;
  color: var(--rose-light);
}

.campaign-inner p { opacity: 0.85; font-weight: 300; }

/* Sections */
.section { padding: 80px 0; }
.section-muted { background: var(--cream-dark); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--rose-light); }

.section-cta { text-align: center; margin-top: 48px; }

.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.page-hero-sm { padding: 60px 0 40px; }
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { color: var(--text-muted); }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 32px;
}

.product-grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* Base product card — premium.css overrides on catalog pages */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.product-card-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: block;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img { transform: scale(1.08); }

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,31,40,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card-overlay span {
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 24px;
}

.product-card:hover .product-card-overlay { opacity: 1; }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--plum);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.product-card-body { padding: 24px; }

.product-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.product-card-body h3 a:hover { color: var(--plum); }

.product-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-price { display: flex; align-items: center; gap: 10px; }

.price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--plum);
}

.price-badge {
  background: var(--rose-light);
  color: var(--plum);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
}

.product-price-lg .price-new { font-size: 2rem; }

/* Features */
.features-section {
  background: var(--plum-dark);
  color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

.feature-icon { font-size: 28px; margin-bottom: 16px; opacity: 0.9; }

.feature-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p { font-size: 13px; opacity: 0.75; font-weight: 300; }

/* Gift Section */
.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gift-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gift-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.gift-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--rose);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.gift-content h2 { margin-bottom: 24px; }

.gift-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.gift-tags span {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--plum);
}

.gift-quote {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--plum);
  margin: 24px 0 32px;
}

/* Delivery */
.delivery-section { padding: 40px 0 80px; }

.delivery-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--plum);
}

.delivery-icon { color: var(--plum); flex-shrink: 0; }
.delivery-card h3 { margin-bottom: 8px; }
.delivery-card p { color: var(--text-muted); }

/* Product Detail */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.breadcrumb a:hover { color: var(--plum); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
}

.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all var(--transition);
  padding: 0;
}

.gallery-thumb.active, .gallery-thumb:hover {
  border-color: var(--plum);
  opacity: 1;
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 { margin-bottom: 16px; }
.product-description { color: var(--text-muted); margin: 24px 0; line-height: 1.8; }

.product-features-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

.quantity-selector { margin-bottom: 20px; }
.quantity-selector label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: var(--plum);
  transition: background var(--transition);
}
.qty-control button:hover { background: var(--cream-dark); }

.qty-control input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
  background: var(--white);
  -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; }

.delivery-note-box {
  margin-top: 24px;
  padding: 20px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  font-size: 13px;
}

.delivery-note-box strong { color: var(--plum); display: block; margin-bottom: 4px; }

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  align-items: center;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.cart-item-info p { font-size: 13px; color: var(--text-muted); }
.cart-item-price { font-family: var(--font-serif); font-size: 1.2rem; color: var(--plum); font-weight: 600; margin-top: 8px; }

.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }

.cart-summary, .checkout-summary .cart-summary {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.cart-summary h3 { margin-bottom: 24px; font-size: 1.3rem; }

.cart-mobile-checkout {
  display: none;
}

.cart-page .cart-layout {
  padding-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.summary-row.discount { color: #2d7a4f; }
.summary-row.total {
  border-top: 1px solid var(--cream-dark);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 600;
  font-size: 1.1rem;
}

.summary-row.total span:last-child {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--plum);
}

.summary-note { font-size: 12px; color: var(--text-muted); margin: 16px 0; }
.summary-login { font-size: 13px; text-align: center; margin-top: 12px; }
.summary-login a { color: var(--plum); font-weight: 500; }

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  color: var(--text-muted);
}

/* Forms */
.form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum);
}

.form-group input:disabled { background: var(--cream); color: var(--text-muted); }

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

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.checkbox input { width: 18px; height: 18px; accent-color: var(--plum); }

.divider { border: none; border-top: 1px solid var(--cream-dark); margin: 8px 0; }

/* Auth */
.auth-section { padding: 60px 0; min-height: 80vh; display: flex; align-items: center; }

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

.auth-card { padding: 48px; }
.auth-header { margin-bottom: 32px; }
.auth-header h1 { font-size: 2rem; margin-bottom: 8px; }
.auth-header p { color: var(--text-muted); font-size: 14px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.auth-footer a { color: var(--plum); font-weight: 600; }

.auth-visual {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 500px;
}

.auth-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.auth-visual-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(61,31,40,0.8));
  color: var(--white);
}

.auth-visual-text p {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--rose-light);
}

/* Account */
.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 100px;
}

.account-nav a {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.account-nav a:hover { background: var(--white); color: var(--plum); }
.account-nav a.active { background: var(--plum); color: var(--white); }

.logout-form { display: contents; }

.logout-link {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.logout-link:hover { background: var(--white); color: var(--plum); }

.card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.card h2 { font-size: 1.4rem; margin-bottom: 24px; }

/* Addresses */
.address-list { display: grid; gap: 16px; }

.address-card {
  padding: 20px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  position: relative;
}

.address-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.badge {
  background: var(--rose-light);
  color: var(--plum);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.address-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 2px; }
.address-delete { margin-top: 12px; }

.address-select { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }

.address-option {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.address-option:has(input:checked) {
  border-color: var(--plum);
  background: rgba(92,46,58,0.03);
}

.address-option input { margin-top: 4px; accent-color: var(--plum); }
.address-option-content p { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* Orders */
.orders-list { display: flex; flex-direction: column; gap: 16px; }

.order-card {
  display: block;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.order-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.order-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.order-card-top span { font-size: 13px; color: var(--text-muted); margin-left: 12px; }
.order-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
  font-size: 13px;
  color: var(--text-muted);
}

.status-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-preparing { background: #cce5ff; color: #004085; }
.status-delivering { background: #e2d5f5; color: #4a2c7a; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

.orders-mini { display: flex; flex-direction: column; gap: 12px; }

.order-mini-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.order-mini-item:hover { border-color: var(--plum); }

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.payment-info {
  background: var(--cream-dark);
  padding: 20px;
  border-radius: var(--radius);
  margin: 8px 0;
}

.payment-info h3 { font-size: 1rem; margin-bottom: 8px; }
.payment-info p { font-size: 14px; color: var(--text-muted); }

/* Order Success */
.order-success-section { padding: 60px 0; }

.order-success { text-align: center; max-width: 720px; }

.success-icon {
  width: 72px;
  height: 72px;
  background: #d4edda;
  color: #155724;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.order-number { font-size: 1.1rem; margin: 16px 0; }
.order-detail-card { text-align: left; margin: 40px 0; }

.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.order-total {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--plum);
  margin: 8px 0;
}

.order-items-list { display: flex; flex-direction: column; gap: 16px; }

.order-item-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.order-item-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
}

.order-item-qty { text-align: right; font-size: 14px; }
.order-actions { display: flex; gap: 16px; justify-content: center; margin-top: 32px; }

/* About & Contact */
.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image, .contact-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 4/5;
}

.about-image img, .contact-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--plum);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.about-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--plum);
}

.about-stats span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-card a:not(.btn) { color: var(--plum); font-weight: 500; font-size: 1.1rem; }
.contact-card a:not(.btn):hover { color: var(--plum-dark); }

.contact-card-featured {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-phone {
  display: block;
  line-height: 1.4;
}

.contact-card .btn {
  margin-top: 14px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-card p { color: var(--text-muted); font-size: 14px; }

.contact-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(61,31,40,0.85));
}

.contact-quote p {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--rose-light);
  text-align: center;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h2 { margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 24px; }

.text-muted { color: var(--text-muted); }

/* Flash Messages */
.flash {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.flash-success { background: #d4edda; color: #155724; }
.flash-error { background: #f8d7da; color: #721c24; }

/* Footer */
.site-footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-floral {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  opacity: 0.05;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo-flora { color: var(--white); }
.footer-brand .logo-flowers { color: var(--rose-light); }
.footer-brand p { margin: 16px 0; font-size: 14px; font-weight: 300; line-height: 1.7; }

.footer-social {
  font-size: 14px;
  color: var(--rose-light);
  font-weight: 500;
}
.footer-social:hover { color: var(--white); }

.site-footer h4 {
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { font-size: 14px; font-weight: 300; opacity: 0.8; }
.site-footer a:hover { opacity: 1; color: var(--white); }

.footer-note { font-size: 13px; font-weight: 300; line-height: 1.7; opacity: 0.75; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-detail, .gift-grid, .about-grid, .contact-grid,
  .auth-container, .cart-layout, .checkout-layout, .account-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-visual { display: none; }
  .cart-summary, .checkout-summary .cart-summary { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    z-index: 1002;
  }

  .site-header.menu-open .nav-toggle {
    border-color: rgba(61, 31, 40, 0.16);
    background: rgba(255, 255, 255, 0.98);
    color: var(--lux-plum);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  .site-header.hero-active .nav-toggle {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(10, 8, 8, 0.32);
    color: var(--lux-cream);
  }

  .site-header.hero-active.menu-open .nav-toggle {
    border-color: rgba(61, 31, 40, 0.16);
    background: rgba(255, 255, 255, 0.98);
    color: var(--lux-plum);
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height-mobile, 64px);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    z-index: 1001;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px max(24px, env(safe-area-inset-right)) 32px max(24px, env(safe-area-inset-left));
    gap: 0;
    border-bottom: none;
    box-shadow: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .nav-menu.open { display: flex; }

  .nav-menu.open > a,
  .nav-menu.open .nav-link-icon,
  .nav-menu.open .nav-actions > a[data-nav-link] {
    color: var(--plum) !important;
    padding: 14px 0;
    border-bottom: 1px solid rgba(61, 31, 40, 0.08);
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(61, 31, 40, 0.08);
  }

  .nav-menu.open .cart-link {
    color: var(--plum) !important;
    border-color: rgba(61, 31, 40, 0.15) !important;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  .nav-menu.open .btn-nav {
    width: 100%;
    margin-top: 12px;
    background: var(--plum) !important;
    color: var(--white) !important;
    border: none !important;
  }

  .flower-petals,
  .floral-corners { display: none !important; }

  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }

  .form-row, .form-row-3, .order-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .delivery-card { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; }
  .products-toolbar { flex-direction: column; gap: 12px; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }

  .cart-toast {
    left: 50%;
    right: auto;
    bottom: 88px;
    transform: translateX(-50%);
    max-width: calc(100% - 48px);
    white-space: nowrap;
  }

  @keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(16px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  @keyframes toastOut {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to { opacity: 0; transform: translateX(-50%) translateY(16px); }
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .cart-item-image {
    width: 72px;
    height: 72px;
  }

  .cart-item-info {
    min-width: 0;
  }

  .cart-item-info h3 {
    font-size: 1rem;
    word-break: break-word;
  }

  .cart-page {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .cart-mobile-checkout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 14px max(20px, env(safe-area-inset-right)) calc(14px + env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    background: rgba(249, 244, 238, 0.98);
    border-top: 1px solid rgba(61, 31, 40, 0.1);
    box-shadow: 0 -8px 24px rgba(10, 8, 8, 0.08);
    backdrop-filter: blur(8px);
  }

  .cart-mobile-checkout-total {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .cart-mobile-checkout-total span {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .cart-mobile-checkout-total strong {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--plum);
    font-weight: 600;
  }

  .cart-mobile-checkout .btn-luxury {
    flex-shrink: 0;
    padding: 14px 18px;
    font-size: 10px;
    white-space: nowrap;
  }
}

/* Prevent base card styles from conflicting with premium catalog */
.products-showcase .product-card,
.product-grid-premium .product-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.products-showcase .product-card:hover,
.product-grid-premium .product-card:hover {
  transform: none;
  box-shadow: none;
}

.products-showcase .product-card-image,
.product-grid-premium .product-card-image {
  aspect-ratio: auto;
  overflow: visible;
}

.products-showcase .product-card:hover .product-card-image img,
.product-grid-premium .product-card:hover .product-card-image img {
  transform: none;
}

.products-showcase .product-card-body,
.product-grid-premium .product-card-body {
  padding: 20px 0 0;
}

/* ═══════════════════════════════════════
   PREMIUM FLOWER EFFECTS & ENHANCEMENTS
   ═══════════════════════════════════════ */

/* Floating Hearts */
.flower-petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -40px;
  left: var(--left);
  width: 14px;
  height: 12px;
  opacity: 0;
  animation: petalFall var(--duration) linear var(--delay) infinite;
}

.petal::before,
.petal::after {
  content: '';
  position: absolute;
  top: 0;
  width: 7px;
  height: 11px;
  border-radius: 7px 7px 0 0;
}

.petal::before {
  left: 7px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.petal::after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.petal-0::before, .petal-0::after { background: rgba(201, 160, 168, 0.55); }
.petal-1::before, .petal-1::after { background: rgba(232, 213, 217, 0.6); }
.petal-2::before, .petal-2::after { background: rgba(184, 149, 107, 0.45); }
.petal-3::before, .petal-3::after { background: rgba(122, 61, 77, 0.35); }
.petal-4::before, .petal-4::after { background: rgba(249, 244, 238, 0.7); }
.petal-5::before, .petal-5::after { background: rgba(201, 160, 168, 0.4); }

@keyframes petalFall {
  0% { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { transform: translateY(105vh) rotate(720deg) translateX(80px); opacity: 0; }
}

/* Floral Corners */
.floral-corners { pointer-events: none; }
.floral-corner {
  position: fixed;
  width: 120px;
  height: 120px;
  opacity: 0.06;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%235c2e3a' d='M50 10c-5 15-20 20-30 15 10 5 15 20 10 30 15-10 30-5 35 10-5-15 5-30 20-35-15 5-25-15-20-30-10 15-25 10-35-5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.floral-tl { top: 80px; left: 10px; }
.floral-tr { top: 80px; right: 10px; transform: scaleX(-1); }
.floral-bl { bottom: 10px; left: 10px; transform: scaleY(-1); }
.floral-br { bottom: 10px; right: 10px; transform: scale(-1); }

/* WhatsApp Float — base positioning only; premium layer styles the look */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

/* Header phone */
.header-phone {
  color: var(--rose-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.header-phone:hover { color: var(--white); }

/* Footer enhancements */
.footer-petals {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1em;
  color: rgba(255,255,255,0.15);
  padding-bottom: 24px;
  animation: petalGlow 4s ease-in-out infinite;
}

@keyframes petalGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.footer-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--rose-light);
  margin: 12px 0;
}
.footer-phone:hover { color: var(--white); }

.footer-wa {
  margin-top: 16px;
  border-color: rgba(255,255,255,0.4) !important;
  color: var(--white) !important;
}
.footer-wa:hover { background: var(--white) !important; color: var(--plum) !important; }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-credit {
  opacity: 0.7;
}
.footer-credit a {
  color: var(--rose-light);
  font-weight: 500;
  opacity: 1;
}
.footer-credit a:hover { color: var(--white); }

/* Products Page Premium - moved to premium.css */

/* Cart toast */
.cart-toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 10000;
  background: var(--plum);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  animation: toastIn 0.4s ease, toastOut 0.4s ease 2.6s forwards;
}

.cart-toast::before { content: '✿'; font-size: 18px; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(40px); }
}

/* Premium button glow on product page */
.add-to-cart-form .btn-primary {
  position: relative;
  overflow: hidden;
}

.add-to-cart-form .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.add-to-cart-form .btn-primary:hover::after {
  transform: translateX(100%);
}

/* Body subtle texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}



/* === PREMIUM LAYER === */

/* ═══════════════════════════════════════════════════════
   FLORA FLOWERS — ULTRA PREMIUM LAYER
   Inspired by Locomotive.ca + Porsche.com.tr
   ═══════════════════════════════════════════════════════ */

:root {
  --lux-black: #0a0808;
  --lux-dark: #141010;
  --lux-plum: #3d1f28;
  --lux-accent: #8b5a62;
  --lux-gold: #c4a574;
  --lux-cream: #faf7f2;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Page Loader (Porsche-style) ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--lux-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out-expo);
}

.page-loader.fonts-ready .loader-inner {
  opacity: 1;
}

.page-loader.fonts-ready .loader-progress {
  animation: loaderFill 1.8s var(--ease-out-expo) forwards;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: var(--lux-gold);
}

.loader-text {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.loader-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 40px;
}

.loader-logo .logo-flora {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--lux-cream);
  letter-spacing: 0.05em;
}

.loader-logo .logo-flowers {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--lux-accent);
  margin-top: -4px;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 16px;
  overflow: hidden;
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* ─── Custom Cursor (Locomotive-style) ─── */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [data-cursor-hover] { cursor: none; }

  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s;
  }

  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--lux-plum);
  }

  .cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid rgba(61, 31, 40, 0.4);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s, background 0.3s;
  }

  .cursor-ring.hover {
    width: 64px; height: 64px;
    border-color: var(--lux-accent);
    background: rgba(139, 90, 98, 0.08);
  }
}

/* ─── Header Marquee (Locomotive) ─── */
.header-marquee {
  background: var(--lux-black);
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  overflow: hidden;
  max-width: 100%;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span:nth-child(even) { color: var(--lux-gold); opacity: 0.6; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Scroll Progress ─── */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--lux-gold);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 10;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  transition: background 0.5s var(--ease-out-expo), box-shadow 0.5s;
}

@media (min-width: 769px) {
  .navbar {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    gap: 32px;
    box-sizing: border-box;
  }

  .navbar > .container.navbar-inner {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    width: auto;
    max-width: none;
    padding: 0;
    background: transparent;
    overflow: visible;
  }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-flora {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-flowers {
  font-family: var(--font-script);
  font-size: 22px;
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu > a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(61, 31, 40, 0.18);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lux-plum);
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
  height: 14px;
}

.nav-toggle-bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.menu-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.menu-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-header.scrolled .navbar {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.site-header.hero-active .navbar {
  background: transparent;
}

.site-header.hero-active .logo-flora { color: var(--lux-cream); }
.site-header.hero-active .logo-flowers { color: var(--lux-accent); }
.site-header.hero-active .nav-menu > a,
.site-header.hero-active .nav-link-icon,
.site-header.hero-active .nav-actions > a[data-nav-link] { color: rgba(255,255,255,0.7); }
.site-header.hero-active .nav-menu > a:hover,
.site-header.hero-active .nav-link-icon:hover,
.site-header.hero-active .nav-actions > a[data-nav-link]:hover { color: var(--lux-cream); }
.site-header.hero-active .cart-link { color: var(--lux-cream); }

.site-header.hero-active .nav-toggle {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(10, 8, 8, 0.32);
  color: var(--lux-cream);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.site-header.scrolled .nav-toggle {
  border-color: rgba(61, 31, 40, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--lux-plum);
  box-shadow: none;
}

.site-header .navbar {
  border-bottom: none;
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
}

.site-header .header-top { display: none; }

.btn-nav {
  padding: 10px 20px !important;
  font-size: 10px !important;
  background: var(--lux-plum) !important;
  color: var(--lux-cream) !important;
  border: none !important;
}

.site-header.hero-active .btn-nav {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  backdrop-filter: blur(8px);
}

.cart-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(61,31,40,0.15);
  border-radius: 100px;
  transition: all 0.3s;
}

.cart-link:hover { border-color: var(--lux-plum); }

.site-header.hero-active .cart-link {
  border-color: rgba(255,255,255,0.25);
  color: var(--lux-cream);
}

main { padding-top: 0; }

/* ─── Cinematic Hero (Porsche) ─── */
.cinematic-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--lux-black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-bg-layer {
  position: absolute;
  inset: -5%;
  display: block;
  overflow: hidden;
  will-change: transform;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to bottom, rgba(10,8,8,0.3) 0%, transparent 30%),
    linear-gradient(to top, rgba(10,8,8,0.95) 0%, rgba(10,8,8,0.4) 40%, transparent 70%),
    linear-gradient(to right, rgba(10,8,8,0.5) 0%, transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 5;
  padding: 0 0 180px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-meta.revealed { opacity: 1; transform: none; transition: all 1s var(--ease-out-expo); }

.hero-tag, .hero-year {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.hero-title {
  margin-bottom: 28px;
}

.hero-line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--lux-cream);
  letter-spacing: -0.02em;
  overflow: hidden;
}

.hero-line .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.hero-line.revealed .char {
  opacity: 1;
  transform: translateY(0);
}

.hero-line-accent em {
  font-family: var(--font-script);
  color: var(--lux-accent);
  font-size: 1.05em;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Luxury Buttons (Porsche Explore) */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--lux-cream);
  color: var(--lux-black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lux-gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: 0;
}

.btn-luxury span, .btn-luxury svg { position: relative; z-index: 1; }
.btn-luxury svg { transition: transform 0.3s; }

.btn-luxury:hover::before { transform: translateX(0); }
.btn-luxury:hover svg { transform: translateX(4px); }

.btn-luxury-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: var(--lux-cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.4s var(--ease-out-expo);
}

.btn-luxury-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 120px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,8,8,0.6);
  backdrop-filter: blur(12px);
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--lux-cream);
  font-weight: 400;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--lux-gold);
}

.stat-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ─── Editorial Intro (Locomotive) ─── */
.editorial-intro {
  padding: 120px 0;
  background: var(--lux-cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.section-index {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(61,31,40,0.1);
  line-height: 1;
  display: block;
}

.display-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--lux-plum);
  letter-spacing: -0.02em;
}

.display-heading em {
  font-family: var(--font-script);
  color: var(--lux-accent);
}

.display-heading.light { color: var(--lux-cream); }
.display-heading.light em { color: var(--rose-light); }

.intro-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 560px;
  font-weight: 300;
}

/* ─── Collection Showcase (Porsche horizontal) ─── */
.collection-showcase {
  padding: 80px 0 120px;
  background: var(--lux-dark);
  overflow-x: clip;
  max-width: 100%;
}

.showcase-track-shell {
  overflow-x: auto;
  overflow-y: visible;
  max-width: 100%;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.showcase-header {
  margin-bottom: 48px;
}

.showcase-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.showcase-header .section-eyebrow { color: var(--lux-gold); }
.showcase-header .display-heading { color: var(--lux-cream); }
.showcase-header .display-heading em { color: var(--lux-accent); }
.showcase-header .section-index { color: rgba(255,255,255,0.08); }

.link-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lux-cream);
  opacity: 0.7;
  transition: all 0.3s;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.link-explore:hover { opacity: 1; gap: 14px; }

.showcase-track {
  display: flex;
  gap: 20px;
  padding: 12px 48px 28px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track:active { cursor: grabbing; }

.showcase-card {
  flex: 0 0 clamp(280px, 36vw, 400px);
  scroll-snap-align: start;
}

.showcase-card-link { display: block; }

.showcase-card-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: visible;
  margin-bottom: 20px;
}

.showcase-card-media .product-card-media {
  transition: box-shadow 0.5s ease;
}

.collection-showcase .product-card-media img {
  filter: none;
}

.collection-showcase .showcase-card:hover .showcase-card-media,
.collection-showcase .showcase-card-link:hover .showcase-card-media,
.collection-showcase .showcase-card.led-active .showcase-card-media {
  filter: drop-shadow(0 0 18px rgba(255, 200, 110, 0.42)) drop-shadow(0 0 36px rgba(255, 180, 85, 0.22));
}

.collection-showcase .showcase-card:hover .product-card-media img,
.collection-showcase .showcase-card-link:hover .product-card-media img {
  filter: none;
  transform: none;
}

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,8,8,0);
  transition: background 0.5s;
}

.showcase-card:hover .showcase-card-overlay {
  background: transparent;
}

.explore-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-cream);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out-expo);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
}

.showcase-card:hover .explore-label {
  opacity: 1;
  transform: translateY(0);
}

.showcase-card-info {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  color: var(--lux-cream);
}

.showcase-index {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--lux-gold);
  opacity: 0.5;
}

.showcase-card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--lux-cream);
  margin-bottom: 2px;
}

.showcase-card-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.showcase-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--lux-gold);
  white-space: nowrap;
}

.btn-showcase-add {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-showcase-add:hover {
  background: var(--lux-cream);
  color: var(--lux-black);
  border-color: var(--lux-cream);
}

/* ─── Manifesto ─── */
.manifesto-section {
  position: relative;
  padding: 160px 0;
  background: var(--lux-plum);
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,90,98,0.3) 0%, transparent 60%);
}

.manifesto-content { text-align: center; position: relative; }

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.3;
  color: var(--lux-cream);
  font-weight: 400;
}

.manifesto-quote em {
  font-family: var(--font-script);
  color: var(--lux-accent);
  font-size: 1.1em;
}

.manifesto-divider {
  width: 60px;
  height: 1px;
  background: var(--lux-gold);
  margin: 40px auto;
}

.manifesto-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ─── Craft Section ─── */
.craft-section {
  padding: 120px 0;
  background: var(--lux-cream);
}

.craft-header { margin-bottom: 64px; }

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(61,31,40,0.08);
}

.craft-item {
  background: var(--lux-cream);
  padding: 48px 32px;
  transition: background 0.4s;
}

.craft-item:hover { background: var(--white); }

.craft-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(61,31,40,0.08);
  line-height: 1;
  display: block;
  margin-bottom: 24px;
  transition: color 0.4s;
}

.craft-item:hover .craft-num { color: var(--lux-gold); }

.craft-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--lux-plum);
  margin-bottom: 12px;
}

.craft-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── Immersive Banner (Porsche full-bleed) ─── */
.immersive-banner {
  position: relative;
  min-height: clamp(360px, 48vh, 480px);
  max-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.immersive-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  filter: brightness(0.52) saturate(0.9);
  transform: scale(1.04);
}

.immersive-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10, 8, 8, 0.88) 0%, rgba(10, 8, 8, 0.5) 38%, rgba(10, 8, 8, 0.15) 68%, transparent 85%),
    linear-gradient(to top, rgba(10, 8, 8, 0.4) 0%, transparent 45%);
}

.immersive-content {
  position: relative;
  z-index: 2;
  padding: 40px 40px;
  max-width: 420px;
  margin-left: max(40px, calc((100vw - 1200px) / 2 + 24px));
}

.immersive-content .section-eyebrow.light {
  color: var(--lux-gold);
  font-size: 10px;
  letter-spacing: 0.26em;
  margin-bottom: 16px;
}

.immersive-content .section-eyebrow.light::after {
  width: 36px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--lux-gold), transparent);
}

.immersive-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--lux-cream);
}

.immersive-line {
  display: block;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.immersive-line em {
  font-family: var(--font-script);
  font-size: 1.22em;
  font-style: normal;
  color: var(--rose-light);
  font-weight: 400;
}

.btn-immersive {
  padding: 13px 26px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

/* ─── Delivery Luxury ─── */
.delivery-luxury {
  padding: 56px 0 88px;
  background: var(--white);
}

.delivery-luxury-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.delivery-luxury-text .display-heading { margin: 16px 0 24px; }
.delivery-luxury-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-weight: 300; }

.delivery-phone {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--lux-plum);
  transition: color 0.3s;
}

.delivery-phone:hover { color: var(--lux-accent); }

.delivery-card-lux {
  background: var(--lux-dark);
  color: var(--lux-cream);
  padding: 48px;
  position: relative;
}

.delivery-card-lux::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--lux-gold);
}

.delivery-card-icon { color: var(--lux-gold); margin-bottom: 20px; }

.delivery-card-lux h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--lux-cream);
  margin-bottom: 4px;
}

.delivery-card-lux > p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.delivery-card-lux ul { list-style: none; }

.delivery-card-lux li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 300;
}

.delivery-card-lux li::before {
  content: '—';
  color: var(--lux-gold);
  margin-right: 12px;
}

/* ─── CTA Final ─── */
.cta-final {
  padding: 120px 0;
  background: var(--lux-cream);
  text-align: center;
  border-top: 1px solid rgba(61,31,40,0.06);
}

.cta-final-inner .display-heading { margin-bottom: 12px; }
.cta-final-inner > p { color: var(--text-muted); margin-bottom: 40px; font-weight: 300; }

.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-final .btn-luxury {
  background: var(--lux-plum);
  color: var(--lux-cream);
}

.cta-final .btn-luxury::before { background: var(--lux-black); }

.cta-final .btn-luxury-ghost {
  color: var(--lux-plum);
  border-color: rgba(61,31,40,0.2);
}

/* ─── Scroll Animations ─── */
[data-fade-up] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

[data-fade-up].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Inner Pages Premium Override ─── */
.page-hero {
  padding-top: 160px !important;
  background: var(--lux-cream) !important;
}

.page-hero-products {
  padding-top: 160px !important;
}

.page-hero .display-heading,
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Products page premium */
.products-showcase {
  background: var(--lux-cream) !important;
}

.products-toolbar {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 0 40px !important;
  border-bottom: 1px solid rgba(61,31,40,0.08) !important;
  border-radius: 0 !important;
}

.products-count {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--lux-plum);
}

.products-promo-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--lux-plum);
}

.product-grid-premium {
  gap: 48px 32px;
  overflow: visible;
}

.product-grid.product-grid-4 {
  overflow: visible;
}

/* Editorial product cards */
.product-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  transform: none !important;
}

.product-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.product-card::before { display: none !important; }

.product-card-image {
  border-radius: 2px !important;
  overflow: visible !important;
  background: transparent;
  position: relative;
  display: block;
  aspect-ratio: auto !important;
}

.product-card-media {
  position: relative;
  z-index: 1;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--lux-dark);
  transition: box-shadow 0.5s ease, filter 0.5s ease;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
  filter: none;
}

.product-led-glow {
  position: absolute;
  inset: -8%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 210, 130, 0.5) 0%, rgba(255, 185, 95, 0.22) 42%, transparent 72%),
    linear-gradient(to top, rgba(255, 175, 80, 0.35) 0%, transparent 52%);
  mix-blend-mode: soft-light;
}

/* Katalog / anasayfa: sadece dış LED halesi, resim sabit kalır */
.collection-showcase .showcase-card:hover .product-led-glow,
.collection-showcase .showcase-card-link:hover .product-led-glow,
.collection-showcase .showcase-card.led-active .product-led-glow,
.signature-collection .signature-card:hover .product-led-glow,
.signature-collection .signature-card-link:hover .product-led-glow,
.signature-collection .signature-card.led-active .product-led-glow,
.products-showcase .product-card:hover .product-led-glow,
.product-grid-premium .product-card:hover .product-led-glow,
.related-products-lux .product-card:hover .product-led-glow,
.products-showcase .product-card.led-active .product-led-glow,
.product-grid-premium .product-card.led-active .product-led-glow,
.related-products-lux .product-card.led-active .product-led-glow {
  opacity: 0;
}

.signature-collection .signature-card:hover .signature-card-media,
.signature-collection .signature-card.led-active .signature-card-media,
.products-showcase .product-card:hover .product-card-image,
.products-showcase .product-card.led-active .product-card-image,
.product-grid-premium .product-card:hover .product-card-image,
.product-grid-premium .product-card.led-active .product-card-image,
.related-products-lux .product-card:hover .product-card-image,
.related-products-lux .product-card.led-active .product-card-image {
  filter: drop-shadow(0 0 18px rgba(255, 200, 110, 0.42)) drop-shadow(0 0 36px rgba(255, 180, 85, 0.22));
}

.signature-collection .signature-card:hover .product-card-media img,
.signature-collection .signature-card-link:hover .product-card-media img,
.signature-collection .signature-card.led-active .product-card-media img,
.products-showcase .product-card:hover .product-card-media img,
.products-showcase .product-card.led-active .product-card-media img,
.product-grid-premium .product-card:hover .product-card-media img,
.product-grid-premium .product-card.led-active .product-card-media img,
.related-products-lux .product-card:hover .product-card-media img,
.related-products-lux .product-card.led-active .product-card-media img {
  filter: none;
  transform: none;
}

.product-card.cart-bloom .product-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 210, 120, 0.5) 0%, transparent 60%);
  animation: cartBloom 0.7s var(--ease-out-expo) forwards;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}

.showcase-card.cart-bloom .product-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 210, 120, 0.45) 0%, transparent 60%);
  animation: cartBloom 0.7s var(--ease-out-expo) forwards;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}

@keyframes cartBloom {
  0% { opacity: 0; transform: scale(0.8); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.1); }
}

.product-card-body {
  padding: 20px 0 0 !important;
}

.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--lux-plum);
}

.product-card-overlay {
  background: transparent !important;
  z-index: 5;
}

.product-card:hover .product-card-overlay {
  background: transparent !important;
}

.product-card-overlay span {
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
  border: none !important;
  padding: 0 !important;
  color: var(--lux-cream) !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 200, 120, 0.45);
}

.product-material-badge {
  top: 12px;
  left: 12px;
}

.product-badge {
  top: 12px;
  right: 12px;
  left: auto;
  background: var(--lux-gold) !important;
  color: var(--lux-black) !important;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.quick-add-form {
  flex-shrink: 0;
}

.btn-quick-add {
  background: var(--lux-plum) !important;
  color: #fff !important;
  border: none;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 10px 14px !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-quick-add:hover {
  background: var(--lux-black) !important;
  transform: none !important;
}

.price-new {
  font-family: var(--font-serif) !important;
  color: var(--lux-plum) !important;
}

/* Auth premium */
.auth-section {
  padding-top: 160px;
  background: var(--lux-cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.auth-container {
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(10, 8, 8, 0.1) !important;
}

.auth-card h1 {
  font-family: var(--font-serif);
  font-weight: 400;
}

.auth-visual img {
  filter: brightness(0.85);
  transition: filter 0.6s;
}

.auth-container:hover .auth-visual img {
  filter: brightness(1);
}

/* Footer override */
.site-footer {
  background: var(--lux-black) !important;
}

/* WhatsApp float — luxury pill */
.whatsapp-float {
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 10px;
  background: var(--lux-plum);
  color: var(--lux-cream);
  border: 1px solid rgba(196, 165, 116, 0.42);
  border-radius: 2px;
  box-shadow: 0 10px 28px rgba(10, 8, 8, 0.2);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.4s var(--ease-out-expo),
    border-color 0.35s,
    box-shadow 0.4s var(--ease-out-expo),
    background 0.35s;
}

.whatsapp-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: rgba(196, 165, 116, 0.1);
  border: 1px solid rgba(196, 165, 116, 0.28);
  border-radius: 50%;
  color: #7bc99a;
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}

.whatsapp-float-icon svg {
  width: 14px;
  height: 14px;
}

.whatsapp-float-label {
  line-height: 1;
  padding-right: 2px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  border-color: var(--lux-gold);
  background: var(--lux-black);
  box-shadow: 0 18px 52px rgba(10, 8, 8, 0.3);
  color: var(--lux-cream);
}

.whatsapp-float:hover .whatsapp-float-icon {
  background: rgba(123, 201, 154, 0.14);
  border-color: rgba(123, 201, 154, 0.38);
  color: #8fdcad;
}

@media (max-width: 520px) {
  .whatsapp-float {
    padding: 10px;
    gap: 0;
    width: 44px;
    height: 44px;
    justify-content: center;
    border-radius: 2px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float-icon {
    width: 22px;
    height: 22px;
    border: none;
    background: transparent;
  }

  .whatsapp-float-icon svg {
    width: 15px;
    height: 15px;
  }
}

/* Product Detail Luxury */
.product-detail-lux {
  padding: 160px 0 80px;
  background: var(--lux-cream);
}

.product-detail-lux .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.product-detail-lux .breadcrumb span { opacity: 0.3; margin: 0 8px; }

.product-features-lux {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}

.product-features-lux span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(61,31,40,0.12);
  color: var(--lux-plum);
}

.delivery-note-lux {
  margin-top: 32px;
  padding: 24px;
  background: var(--lux-dark);
  color: var(--lux-cream);
}

.delivery-note-lux strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin-bottom: 8px;
}

.delivery-note-lux p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 12px;
}

.delivery-note-lux a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--lux-cream);
}

.related-products-lux {
  padding: 80px 0 120px;
  background: var(--white);
}

.page-hero-products {
  padding-top: 160px !important;
  padding-bottom: 64px !important;
  background: var(--lux-dark) !important;
  color: var(--lux-cream);
  position: relative;
}

.page-hero-products .display-heading { color: var(--lux-cream); }
.page-hero-products .display-heading em { color: var(--lux-accent); }
.page-hero-products .section-eyebrow { color: var(--lux-gold); }
.page-hero-products .section-index { color: rgba(255,255,255,0.12); }
.page-hero-products p { color: rgba(255,255,255,0.55); }

/* Floating hearts - subtle */
.petal { opacity: 0; }
body.loaded .petal { opacity: 1; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .craft-grid { grid-template-columns: 1fr 1fr; }
  .delivery-luxury-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; padding: 24px; }
  .showcase-track { padding: 12px 24px 24px; }
  .immersive-banner {
    min-height: 320px;
    max-height: none;
  }

  .immersive-content {
    margin-left: 24px;
    padding: 32px 24px;
    max-width: 340px;
  }

  .immersive-line {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }
}

@media (max-width: 768px) {
  .hero-stats { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-content-wrap { padding-bottom: 80px; }
  .craft-grid { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    touch-action: none;
  }

  .site-header,
  .navbar,
  .navbar-inner {
    max-width: 100%;
    overflow-x: clip;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height-mobile, 64px);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    z-index: 1001;
    background: var(--lux-cream) !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px max(24px, env(safe-area-inset-right)) 32px max(24px, env(safe-area-inset-left)) !important;
    border-bottom: none !important;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .hero-bg-layer {
    inset: 0;
  }

  .immersive-content {
    margin-left: 24px;
    padding-left: 0;
    padding-right: 24px;
    max-width: calc(100% - 48px);
  }

  .showcase-track {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-marquee { display: none; }
  .site-header .navbar { padding-top: 0; }

  .brand-showcase {
    padding: 56px 0;
  }

  .brand-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .atelier-photo-stack {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
    overflow: hidden;
  }

  .atelier-photo-main,
  .atelier-photo-accent {
    position: static;
    width: 100%;
    margin: 0;
    transform: none !important;
    border: none;
    aspect-ratio: 4/5;
    box-shadow: 0 6px 20px rgba(10, 8, 8, 0.08);
  }

  .polaroid-gallery {
    padding: 48px 0 56px;
    overflow-x: clip;
  }

  .polaroid-grid,
  .polaroid-grid.polaroid-grid-wide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 28px;
    align-items: start;
    width: 100%;
    max-width: 100%;
  }

  .polaroid-item,
  .polaroid-item.polaroid-offset {
    max-width: none;
    width: 100%;
    transform: none !important;
    margin-top: 0;
    padding: 6px 6px 22px;
    box-shadow: 0 4px 16px rgba(10, 8, 8, 0.06);
    border: 1px solid rgba(61, 31, 40, 0.07);
    border-radius: 2px;
  }

  .polaroid-item:nth-child(3) {
    grid-column: 1 / -1;
    width: min(100%, 220px);
    justify-self: center;
  }

  .polaroid-photo {
    aspect-ratio: 1 / 1;
  }

  .polaroid-item p {
    font-size: 0.95rem;
    margin-top: 6px;
    line-height: 1.2;
  }

  .polaroid-quote {
    font-size: 1.15rem;
    line-height: 1.5;
    padding: 0 4px;
  }

  .audience-grid { grid-template-columns: 1fr 1fr; }
  .page-hero,
  .page-hero-products,
  .product-detail-lux,
  .auth-section {
    padding-top: calc(var(--header-height-mobile, 64px) + 28px) !important;
  }
  .product-detail-lux {
    padding-bottom: 56px;
  }
  .atelier-photo-stack {
    min-height: 360px;
  }
}

/* ═══ Brand & Product Image Enhancements ═══ */

.product-frame {
  position: relative;
  overflow: hidden;
}

.showcase-card-media,
.signature-card-media,
.product-card-image.product-frame {
  overflow: visible;
}

.product-frame > img {
  transition: transform 1s var(--ease-out-expo), filter 0.5s;
}

.product-frame:hover > img {
  transform: scale(1.05);
}

.product-material-badge,
.showcase-material {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 8, 8, 0.7);
  backdrop-filter: blur(8px);
  color: var(--lux-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 3;
}

.brand-showcase {
  padding: 100px 0;
  background: var(--lux-cream);
}

.brand-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.atelier-photo-stack {
  position: relative;
  min-height: 480px;
}

.atelier-photo-main {
  width: 72%;
  margin-left: auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10, 8, 8, 0.14);
  aspect-ratio: 3/4;
}

.atelier-photo-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10, 8, 8, 0.18);
  border: 4px solid var(--lux-cream);
  transform: rotate(-4deg);
  aspect-ratio: 3/4;
}

.atelier-photo-fill {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--lux-dark);
}

.atelier-photo-fill img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.brand-tags span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(61, 31, 40, 0.15);
  color: var(--lux-plum);
}

/* Polaroid Gallery */
.polaroid-gallery {
  padding: 80px 0 100px;
  background: var(--white);
  text-align: center;
}

.polaroid-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
}

.polaroid-item {
  background: var(--white);
  padding: 12px 12px 48px;
  box-shadow: 0 8px 32px rgba(10, 8, 8, 0.1);
  transform: rotate(-3deg);
  transition: transform 0.5s var(--ease-out-expo);
  width: 100%;
  max-width: 260px;
}

.polaroid-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--lux-dark);
}

.polaroid-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.polaroid-item:hover {
  transform: rotate(0deg) scale(1.03);
  z-index: 2;
}

.polaroid-offset {
  transform: rotate(4deg);
  margin-top: 32px;
}

.polaroid-offset:hover {
  transform: rotate(0deg) scale(1.03);
}

.polaroid-item p {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--lux-plum);
  margin-top: 12px;
}

.polaroid-grid-wide {
  flex-wrap: wrap;
  align-items: flex-start;
}

.polaroid-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--lux-plum);
  max-width: 600px;
  margin: 0 auto;
}

.polaroid-quote em {
  font-family: var(--font-script);
  color: var(--lux-accent);
}

/* Signature Collection */
.signature-collection {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--lux-cream) 0%, var(--white) 100%);
}

.signature-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.signature-lead {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1rem;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.signature-grid-about {
  margin-bottom: 24px;
}

.signature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(61, 31, 40, 0.06);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  overflow: visible;
}

.signature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 8, 8, 0.1);
}

.signature-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.signature-card-media {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  overflow: visible;
  background: var(--lux-dark);
}

.signature-card-media .product-card-media {
  width: 100%;
  aspect-ratio: 3/4;
}

.signature-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 12px 16px;
  text-align: center;
}

.signature-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--lux-plum);
  margin-bottom: 6px;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signature-card-body p {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
  min-height: 2.9em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.signature-price {
  margin-top: auto;
  padding-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lux-accent);
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .signature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .signature-grid,
  .signature-grid-about { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .signature-grid,
  .signature-grid-about { grid-template-columns: 1fr; }
}

/* Legacy catalog poster — removed from site */
.catalog-poster-section {
  padding: 60px 0 80px;
  background: var(--lux-cream);
}

.catalog-poster {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(10, 8, 8, 0.1);
}

/* Gift Audience */
.gift-audience {
  padding: 72px 0 32px;
  background: var(--white);
  text-align: center;
}

.gift-audience .display-heading {
  margin-bottom: 36px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.audience-card {
  padding: 40px 24px;
  border: 1px solid rgba(61, 31, 40, 0.08);
  transition: all 0.4s var(--ease-out-expo);
}

.audience-card:hover {
  border-color: var(--lux-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 8, 8, 0.08);
}

.audience-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--lux-plum);
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   POLISH & FIXES — unified premium layer
   ═══════════════════════════════════════════════════════ */

:root {
  --header-height: 108px;
  --header-height-mobile: 64px;
}

/* Selection & scroll */
::selection {
  background: rgba(196, 165, 116, 0.35);
  color: var(--lux-plum);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

/* Flash messages — fixed below header */
.flash {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
  animation: flashSlide 0.4s var(--ease-out-expo);
}

@keyframes flashSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.flash-success {
  background: rgba(212, 237, 218, 0.95) !important;
  color: #155724 !important;
}

.flash-error {
  background: rgba(248, 215, 218, 0.95) !important;
  color: #721c24 !important;
}

/* Header — non-hero pages always scrolled look */
.site-header.scrolled .logo-flora { color: var(--lux-plum); }
.site-header.scrolled .logo-flowers { color: var(--lux-accent); }
.site-header.scrolled .nav-menu > a { color: var(--text-muted); }
.site-header.scrolled .nav-menu > a:hover { color: var(--lux-plum); }
.site-header.scrolled .nav-link-icon,
.site-header.scrolled .nav-actions > a[data-nav-link] { color: var(--text-muted); }
.site-header.scrolled .nav-link-icon:hover,
.site-header.scrolled .nav-actions > a[data-nav-link]:hover { color: var(--lux-plum); }
.site-header.scrolled .cart-link { color: var(--lux-plum); border-color: rgba(61,31,40,0.15); }

/* Mobile nav fix */
@media (max-width: 768px) {
  :root { --header-height: var(--header-height-mobile); }

  html { scroll-padding-top: var(--header-height-mobile); }

  .flash { top: var(--header-height-mobile); }

  .flower-petals,
  .floral-corners { display: none !important; }

  .hero-grain { display: none; }

  .hero-bg-layer { will-change: auto; }

  .navbar { position: relative; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height-mobile, 64px);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px max(24px, env(safe-area-inset-right)) 32px max(24px, env(safe-area-inset-left)) !important;
    background: var(--lux-cream) !important;
    border-bottom: none !important;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .nav-menu.open { display: flex; }

  .nav-menu.open > a,
  .nav-menu.open .nav-link-icon,
  .nav-menu.open .nav-actions > a[data-nav-link] {
    color: var(--lux-plum) !important;
    font-size: 13px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(61, 31, 40, 0.08);
  }

  .nav-menu.open .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(61, 31, 40, 0.08);
  }

  .nav-menu.open .cart-link {
    color: var(--lux-plum) !important;
    border-color: rgba(61, 31, 40, 0.15) !important;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  .nav-menu.open .btn-nav {
    width: 100%;
    margin-top: 12px;
    background: var(--lux-plum) !important;
    color: var(--lux-cream) !important;
    border: none !important;
    backdrop-filter: none !important;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 1002;
  }

  .site-header.menu-open .nav-toggle {
    border-color: rgba(61, 31, 40, 0.16);
    background: rgba(255, 255, 255, 0.98);
    color: var(--lux-plum);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  .site-header.hero-active .nav-toggle {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(10, 8, 8, 0.32);
    color: var(--lux-cream);
  }

  .site-header.hero-active.menu-open .nav-toggle {
    border-color: rgba(61, 31, 40, 0.16);
    background: rgba(255, 255, 255, 0.98);
    color: var(--lux-plum);
  }

  .site-header.hero-active .nav-menu.open,
  .site-header.hero-active .nav-menu.open > a,
  .site-header.hero-active .nav-menu.open .nav-link-icon,
  .site-header.hero-active .nav-menu.open .nav-actions > a[data-nav-link] {
    color: var(--lux-plum) !important;
  }

  .site-header.hero-active .nav-menu.open {
    background: var(--lux-cream) !important;
  }

  .site-header.hero-active .nav-menu.open .cart-link {
    color: var(--lux-plum) !important;
    border-color: rgba(61, 31, 40, 0.15) !important;
  }

  .site-header.scrolled .navbar,
  .site-header.hero-active .navbar {
    backdrop-filter: none;
  }

  .btn-nav { width: 100%; justify-content: center; }
}

/* Inner page sections */
.section {
  padding: 80px 0;
}

.page-hero {
  padding-bottom: 48px !important;
  border-bottom: 1px solid rgba(61,31,40,0.06);
}

.page-hero-sm {
  padding-bottom: 32px !important;
}

/* Cart premium */
.cart-item {
  background: var(--white) !important;
  border-radius: 2px !important;
  border: 1px solid rgba(61,31,40,0.06) !important;
  box-shadow: none !important;
  transition: border-color 0.3s;
}

.cart-item:hover {
  border-color: rgba(196, 165, 116, 0.4) !important;
}

.cart-item-image {
  border-radius: 2px !important;
  overflow: hidden;
}

.cart-summary {
  border-radius: 2px !important;
  border: 1px solid rgba(61,31,40,0.08) !important;
  box-shadow: none !important;
  background: var(--white) !important;
}

.cart-summary .btn-primary,
.cart-summary .btn-luxury {
  border-radius: 0;
}

/* Forms premium */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lux-gold) !important;
  box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.15);
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 0 !important;
  border-color: rgba(61,31,40,0.12) !important;
  background: var(--white) !important;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Cards */
.card {
  border-radius: 2px !important;
  border: 1px solid rgba(61,31,40,0.06) !important;
  box-shadow: none !important;
}

/* Account sidebar */
.account-nav a {
  border-radius: 0 !important;
}

.account-nav a.active {
  background: var(--lux-plum) !important;
}

/* Product detail gallery */
.gallery-main {
  border-radius: 2px !important;
  background: var(--lux-dark) !important;
  overflow: hidden;
  position: relative;
}

.product-light-gallery .product-gallery-img {
  width: 100%;
  display: block;
  filter: brightness(0.62) saturate(0.88);
  transition: filter 0.6s ease;
}

.product-light-gallery.lights-on .product-gallery-img {
  filter: brightness(1.12) saturate(1.1) contrast(1.02);
}

.gallery-light-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 48%, rgba(255, 215, 140, 0.8) 0%, rgba(255, 185, 95, 0.35) 45%, transparent 70%),
    linear-gradient(to top, rgba(255, 190, 90, 0.5) 0%, transparent 50%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.6s ease;
}

.product-light-gallery.lights-on .gallery-light-glow {
  opacity: 1;
}

.product-light-gallery.lights-on {
  filter: drop-shadow(0 0 28px rgba(255, 195, 100, 0.55));
}

.btn-light-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid rgba(196, 165, 116, 0.4);
  color: var(--lux-plum);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.btn-light-toggle:hover,
.product-light-gallery.lights-on + .btn-light-toggle {
  background: var(--lux-plum);
  border-color: var(--lux-plum);
  color: var(--lux-cream);
}

.light-toggle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196, 165, 116, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 200, 100, 0);
  transition: background 0.3s, box-shadow 0.3s;
}

.product-light-gallery.lights-on + .btn-light-toggle .light-toggle-dot {
  background: #ffd080;
  box-shadow: 0 0 12px 4px rgba(255, 200, 100, 0.45);
}

.gallery-main img {
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-thumb {
  border-radius: 0 !important;
}

/* Contact cards */
.contact-card {
  border-radius: 2px !important;
  border: 1px solid rgba(61,31,40,0.06) !important;
  box-shadow: none !important;
  transition: border-color 0.3s, transform 0.3s;
}

.contact-card:hover {
  border-color: var(--lux-gold) !important;
  transform: translateY(-2px);
}

.contact-card .btn-primary {
  color: var(--lux-cream) !important;
  background: var(--lux-plum);
  border-color: var(--lux-plum);
}

.contact-card .btn-primary:hover {
  color: var(--lux-cream) !important;
  background: var(--lux-black);
  border-color: var(--lux-black);
}

/* Order cards */
.order-card {
  border-radius: 2px !important;
  border: 1px solid rgba(61,31,40,0.06) !important;
  box-shadow: none !important;
}

/* Empty state */
.empty-state {
  padding: 100px 24px;
}

.empty-state h2 {
  font-family: var(--font-serif);
  font-weight: 400;
}

/* CTA buttons on light bg */
.btn-luxury-ghost.on-light,
.cta-final .btn-luxury-ghost {
  color: var(--lux-plum) !important;
  border-color: rgba(61,31,40,0.2) !important;
}

.btn-luxury-ghost.on-light:hover,
.cta-final .btn-luxury-ghost:hover {
  background: var(--lux-plum) !important;
  color: var(--lux-cream) !important;
  border-color: var(--lux-plum) !important;
}

/* Showcase track scrollbar hint */
.showcase-hint {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 24px 0 0;
  margin: 0;
}

/* WhatsApp + cursor z-index harmony */

/* Smooth image loading */
img {
  opacity: 1;
  transition: opacity 0.4s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
  opacity: 1;
}

/* Footer refinement */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-credit a {
  transition: color 0.3s;
}

/* Hero stats bar refinement */
.hero-stats {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Catalog poster */
.catalog-poster {
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s;
}

.catalog-poster:hover {
  transform: scale(1.005);
  box-shadow: 0 24px 64px rgba(10, 8, 8, 0.15);
}

/* Product detail btn */
.product-detail-lux .btn-luxury {
  background: var(--lux-plum);
  color: var(--lux-cream);
}

.product-detail-lux .btn-luxury::before {
  background: var(--lux-black);
}

/* Related products link */
.related-products-lux .link-explore {
  color: var(--lux-plum) !important;
  border-color: rgba(61,31,40,0.2) !important;
}

/* SEO landing & FAQ */
.seo-lead {
  max-width: 720px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.seo-content-block {
  padding-top: 0;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.seo-list {
  margin: 20px 0 24px;
  padding-left: 18px;
  color: var(--text-muted);
}

.seo-list li + li {
  margin-top: 8px;
}

.faq-section {
  padding: 80px 0;
  background: var(--lux-cream);
  border-top: 1px solid rgba(61,31,40,0.06);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  max-width: 820px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(61,31,40,0.08);
  padding: 0 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 500;
  color: var(--lux-plum);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.audience-card h3 a {
  color: inherit;
  text-decoration: none;
}

.audience-card h3 a:hover {
  color: var(--lux-plum);
}

@media (max-width: 768px) {
  .seo-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .quick-add-form,
  .product-card-footer .btn-quick-add {
    width: 100%;
  }

  .btn-quick-add {
    font-size: 11px !important;
    padding: 12px 16px !important;
    text-align: center;
  }

  .qty-control button {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Mobile layout fixes — must stay after desktop base rules (cascade order) */
@media (max-width: 768px) {
  .brand-showcase,
  .gift-audience,
  .polaroid-gallery,
  .immersive-banner,
  .delivery-luxury {
    overflow-x: clip;
    max-width: 100%;
  }

  .brand-showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-showcase-text {
    min-width: 0;
    width: 100%;
  }

  .brand-showcase-text .section-index {
    font-size: 2.75rem;
  }

  .brand-showcase-text .display-heading {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .brand-showcase-text .intro-text {
    max-width: none;
    font-size: 1rem;
  }

  .atelier-photo-stack {
    min-height: 0;
    max-width: 100%;
    margin: 0 auto;
  }

  .polaroid-grid,
  .polaroid-grid.polaroid-grid-wide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 28px;
    align-items: start;
    width: 100%;
    max-width: 100%;
  }

  .polaroid-item,
  .polaroid-item.polaroid-offset {
    max-width: none;
    width: 100%;
    transform: none;
    margin-top: 0;
    padding: 6px 6px 22px;
  }

  .immersive-banner {
    min-height: 280px;
    max-height: none;
    isolation: isolate;
  }

  .immersive-content {
    margin-left: 0;
    padding: 28px 24px;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .audience-card {
    padding: 24px 12px;
    min-width: 0;
  }

  .audience-card h3 {
    font-size: 1rem;
  }

  .audience-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .delivery-luxury-text .section-index {
    font-size: 2.75rem;
  }
}

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

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

