/* =========================================================================
   DRESSED TO GLOW — MASTER STYLESHEET
   Used across every page. All brand tokens, shared components.
   ========================================================================= */

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

/* ---------- BRAND TOKENS ---------- */
:root {
  /* Colours */
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --pink: #ec2478;
  --pink-bright: #ff3a8c;
  --pink-deep: #c8145e;
  --pink-soft: #fff5f8;
  --pink-glow: rgba(236, 36, 120, 0.4);
  --cream: #faf7f2;
  --white: #ffffff;
  --grey-muted: rgba(255, 255, 255, 0.55);
  --grey-subtle: rgba(255, 255, 255, 0.08);
  --grey-border: rgba(255, 255, 255, 0.12);

  /* Dark-on-light versions for light pages */
  --text-on-light: #0a0a0a;
  --text-on-light-muted: #666666;
  --border-on-light: rgba(10, 10, 10, 0.1);

  /* Spacing scale (8px base) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* Typography */
  --font-display: 'Italiana', 'Playfair Display', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast: 0.2s var(--ease);
  --trans: 0.3s var(--ease);
  --trans-slow: 0.5s var(--ease);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Light page variant (e.g. About page, Prom Promise page sections) */
body.light {
  background: var(--cream);
  color: var(--text-on-light);
}

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink);
  text-transform: lowercase;
  font-size: 1.3em;
  line-height: 0.85;
  letter-spacing: 0;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: 0.02em; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: 0.02em; line-height: 1.1; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); letter-spacing: 0.03em; }

p { line-height: 1.7; font-weight: 300; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--pink);
  opacity: 0.7;
}

.eyebrow.start::before { display: none; }
.eyebrow.end::after { display: none; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.7));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-subtle);
  transition: background var(--trans);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.35em;
}

.nav-logo .script {
  font-size: 1.4em;
  color: var(--pink);
}

.nav .nav-links {
  display: flex !important;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
  display: list-item;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color var(--trans);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

/* Dropdown menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #131313;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 0.6rem 0;
  margin: 12px 0 0 0;
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

/* Show dropdown on hover (desktop) and when toggled (mobile/keyboard) */
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu,
.nav-dropdown.open > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Hover bridge to prevent dropdown closing when moving from toggle to menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: none;
}

.nav-dropdown:hover::after,
.nav-dropdown.open::after {
  pointer-events: auto;
}

.nav-dropdown-menu li {
  display: block;
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--white);
  transition: all var(--trans);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(236, 36, 120, 0.08);
  color: var(--pink);
  padding-left: 1.5rem;
}

.nav-dropdown-menu a::after {
  display: none;
}

/* When a dropdown child is the active page, highlight the parent */
.nav-dropdown.active > .nav-dropdown-toggle {
  color: var(--pink);
}

.nav-dropdown.active > .nav-dropdown-toggle::after {
  width: 100%;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width var(--trans);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--grey-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all var(--trans);
  cursor: pointer;
  background: transparent;
}

.nav-icon:hover {
  border-color: var(--pink);
  color: var(--pink);
}

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

.nav-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pink);
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  transition: all var(--trans);
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.nav-cta:hover {
  background: var(--pink-bright);
  box-shadow: 0 0 30px var(--pink-glow);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85vw;
  max-width: 360px;
  background: var(--black);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--trans);
  overflow-y: auto;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
  display: block;
  padding: 1rem 0;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--grey-subtle);
  transition: color var(--trans);
}

.nav-drawer a:hover,
.nav-drawer a.active { color: var(--pink); }

.nav-drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
  opacity: 0;
  transition: opacity var(--trans);
}

.nav-overlay.open {
  display: block;
  opacity: 1;
}

/* ---------- BUTTONS ---------- */
.btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1.05rem 2.5rem;
  text-decoration: none;
  transition: all var(--trans);
  display: inline-block;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  color: var(--white);
  background: var(--pink);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s var(--ease);
}

.btn-primary:hover {
  background: var(--pink-bright);
  box-shadow: 0 0 40px var(--pink-glow);
  transform: translateY(-2px);
}

.btn-primary:hover::before { left: 100%; }

.btn-pink {
  color: var(--white);
  background: var(--pink);
}

.btn-pink:hover {
  background: var(--pink-bright);
  box-shadow: 0 0 40px var(--pink-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(236, 36, 120, 0.4);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(236, 36, 120, 0.08);
}

.btn-disabled {
  color: var(--grey-muted);
  background: var(--grey-subtle);
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.btn-disabled::before { display: none; }

.btn-full { width: 100%; }

/* ---------- SECTIONS ---------- */
section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header .eyebrow { margin-bottom: 1.2rem; }

.section-header h2 { margin-bottom: 1.25rem; }

.section-header p {
  color: var(--grey-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  border-top: 1px solid var(--grey-subtle);
  border-bottom: 1px solid var(--grey-subtle);
  background: var(--black-soft);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--pink);
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--grey-subtle);
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  transition: all var(--trans);
}

.product-card:hover {
  border-color: rgba(236, 36, 120, 0.4);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.product-image svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform var(--trans-slow);
}

.product-card:hover .product-image svg {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 1;
}

.product-info {
  padding: 1.1rem 1rem 1.25rem;
}

.product-occasion {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.product-price {
  font-size: 0.88rem;
  color: var(--grey-muted);
  font-weight: 400;
}

.product-colours {
  display: flex;
  gap: 4px;
  margin-top: 0.5rem;
}

.product-colour-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #050505;
  padding: 3.5rem 2rem 1.75rem;
  border-top: 1px solid rgba(236, 36, 120, 0.15);
  margin-top: 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--grey-subtle);
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand-logo .script {
  font-size: 1.6em;
  color: var(--pink);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--grey-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(236, 36, 120, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-muted);
  text-decoration: none;
  transition: all var(--trans);
}

.footer-socials a:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(236, 36, 120, 0.08);
}

.footer-socials svg { width: 14px; height: 14px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: var(--grey-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--trans);
}

.footer-col a:hover { color: var(--pink); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.75rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- UTILITIES ---------- */
.sparkle-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--pink);
}

.sparkle-divider::before,
.sparkle-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--pink);
  opacity: 0.4;
}

.sparkle-divider-icon {
  font-size: 1rem;
  color: var(--pink);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 2rem;
  font-size: 0.72rem;
  color: var(--grey-muted);
  letter-spacing: 0.1em;
  max-width: 1400px;
  margin: 0 auto;
}

.breadcrumbs a {
  color: var(--grey-muted);
  text-decoration: none;
  transition: color var(--trans);
}

.breadcrumbs a:hover { color: var(--pink); }

.breadcrumbs .sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* ---------- MOBILE ---------- */
@media (max-width: 1300px) {
  .nav .nav-links { gap: 1.15rem; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 0.05em; }
  .nav-cta { padding: 0.7rem 0.95rem; letter-spacing: 0.07em; font-size: 0.63rem; }
}
@media (max-width: 1150px) {
  .nav .nav-links { gap: 0.85rem; }
  .nav-links a { font-size: 0.66rem; letter-spacing: 0.03em; }
  .nav-cta { padding: 0.6rem 0.8rem; letter-spacing: 0.05em; font-size: 0.6rem; }
}

@media (max-width: 1024px) {
  .nav .nav-links { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-cta { display: none; }
  .nav-drawer { display: block; }
}
@media (max-width: 900px) {
  .nav { padding: 1rem 1.25rem; }
  .nav .nav-links { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-cta { display: none; }

  section { padding: 3.5rem 1.25rem; }

  .trust-strip { gap: 1.5rem; padding: 1.25rem 1rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-drawer { display: block; }
}

@media (max-width: 600px) {
  .trust-item {
    flex: 0 0 calc(50% - 1rem);
    justify-content: center;
  }
}

/* ============================================
   CART DRAWER
   ============================================ */

.cart-icon-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--grey-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  padding: 0;
}

.cart-icon-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.cart-icon-btn svg { width: 16px; height: 16px; pointer-events: none; }

.cart-badge { pointer-events: none;
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--black);
}

.cart-badge[data-count="0"] { display: none; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 92vw;
  background: var(--black);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--grey-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.cart-drawer-title .count-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-muted);
  font-weight: 400;
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--grey-border);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--trans);
}

.cart-drawer-close:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.75rem;
}

.cart-drawer-body::-webkit-scrollbar { width: 6px; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: var(--grey-border); border-radius: 3px; }

.cart-empty {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--grey-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-subtle);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 80px;
  height: 100px;
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--grey-subtle);
}

.cart-item-img svg { width: 100%; height: 100%; }

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

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.cart-item-type {
  font-size: 0.78rem;
  color: var(--grey-muted);
  margin-bottom: 0.35rem;
}

.cart-item-meta {
  font-size: 0.72rem;
  color: var(--pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--grey-border);
  border-radius: 2px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0;
  transition: all var(--trans);
}

.qty-btn:hover {
  color: var(--pink);
}

.qty-val {
  min-width: 24px;
  text-align: center;
  color: var(--white);
  font-size: 0.82rem;
  padding: 0 4px;
}

.cart-remove {
  background: transparent;
  border: none;
  color: var(--grey-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 4px 0;
  transition: color var(--trans);
}

.cart-remove:hover { color: var(--pink); }

.cart-item-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  white-space: nowrap;
}

.cart-footer {
  padding: 1.25rem 1.75rem 1.5rem;
  border-top: 1px solid var(--grey-subtle);
  flex-shrink: 0;
  background: var(--black);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.cart-subtotal-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.cart-subtotal-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
}

.cart-footer-note {
  font-size: 0.72rem;
  color: var(--grey-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

.cart-footer-note strong {
  color: var(--pink);
  font-weight: 500;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 600px) {
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item-price { grid-column: 2; }
}

/* ============================================
   PRODUCT CARD — QUICK ADD BUTTON
   ============================================ */

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-quick-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.product-quick-add svg { width: 16px; height: 16px; }

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-add:hover {
  background: var(--pink-bright);
  transform: translateY(0) scale(1.08);
  box-shadow: 0 4px 24px var(--pink-glow);
}

.product-quick-add.added {
  background: var(--white);
  color: var(--pink);
  opacity: 1;
  transform: translateY(0);
}

.product-quick-add.added svg {
  animation: checkPop 0.4s ease;
}

@keyframes checkPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Always show on touch devices (no hover) */
@media (hover: none) {
  .product-quick-add {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   WISHLIST BUTTON
   ============================================ */

.btn-wishlist {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--trans);
}

.btn-wishlist .heart-icon {
  font-size: 1.1em;
  line-height: 1;
  transition: all var(--trans);
  display: inline-block;
}

.btn-wishlist.saved .heart-icon,
.btn-wishlist.saved {
  color: var(--pink) !important;
  border-color: var(--pink) !important;
}

.btn-wishlist:hover .heart-icon {
  animation: heartPulse 0.4s ease;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ============================================
   COOKIE CONSENT BANNER + MODAL
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--black-soft);
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  padding: 1.5rem;
  z-index: 400;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cookie-banner-text {
  font-size: 0.85rem;
  color: var(--grey-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.cookie-banner-text a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: rgba(236, 36, 120, 0.4);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-banner-actions button {
  flex: 1;
  padding: 0.7rem 1rem;
  font-size: 0.68rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--trans);
  border: 1px solid var(--grey-border);
  background: transparent;
  color: var(--white);
  min-width: 0;
}

.cookie-banner-actions button.primary {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.cookie-banner-actions button.primary:hover {
  background: var(--pink-bright);
  box-shadow: 0 0 20px var(--pink-glow);
}

.cookie-banner-actions button:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.cookie-banner-actions button.primary:hover {
  color: var(--white);
}

@media (max-width: 500px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1.2rem; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions button { flex: 1 0 auto; }
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-inner {
  background: var(--black);
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-inner::-webkit-scrollbar { width: 6px; }
.cookie-modal-inner::-webkit-scrollbar-thumb { background: var(--grey-border); border-radius: 3px; }

.cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--grey-border);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}

.cookie-modal-close:hover { border-color: var(--pink); color: var(--pink); }

.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.cookie-modal-intro {
  color: var(--grey-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.cookie-option {
  padding: 1.25rem 0;
  border-top: 1px solid var(--grey-subtle);
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  gap: 1rem;
}

.cookie-option-title {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--white);
  font-size: 0.95rem;
}

.cookie-option-description {
  color: var(--grey-muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.cookie-option-locked {
  font-size: 0.7rem;
  color: var(--pink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--grey-border);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--trans);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s var(--ease);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--pink);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-modal-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-subtle);
  display: flex;
  justify-content: flex-end;
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */

.newsletter-block {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a0a12 0%, #0a0a0a 100%);
  text-align: center;
  position: relative;
}

.newsletter-block-inner {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form {
  margin-top: 1.5rem;
}

.newsletter-input-row {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--grey-border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 2px;
  transition: border-color var(--trans);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--pink);
}

.newsletter-input::placeholder {
  color: var(--grey-muted);
}

.newsletter-btn {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
  border-radius: 2px;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--pink-bright);
  box-shadow: 0 0 20px var(--pink-glow);
}

.newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-success {
  display: none;
  padding: 1.5rem;
  background: rgba(236, 36, 120, 0.08);
  border: 1px solid rgba(236, 36, 120, 0.3);
  border-radius: 2px;
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-disclaimer {
  font-size: 0.72rem;
  color: var(--grey-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

@media (max-width: 500px) {
  .newsletter-input-row { flex-direction: column; }
}

/* Footer newsletter (smaller variant) */
.footer-newsletter {
  margin-top: 1rem;
}

.footer-newsletter-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}

.footer-newsletter .newsletter-input-row {
  max-width: none;
  margin: 0;
}

.footer-newsletter .newsletter-input {
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
}

.footer-newsletter .newsletter-btn {
  padding: 0.6rem 1rem;
  font-size: 0.65rem;
}

.footer-newsletter .newsletter-success {
  padding: 0.75rem;
  font-size: 0.8rem;
}

/* ============================================
   PRODUCT CARD — DUAL-MODE (Book vs Online)
   ============================================ */

/* Availability badge — top-left */
.product-avail-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}
.product-avail-badge.book {
  background: var(--pink);
  color: var(--white);
}
.product-avail-badge.online {
  background: rgba(255, 255, 255, 0.95);
  color: var(--black);
}

/* Sub-badge (New In / Best Seller) — second row top-left if present */
.product-sub-badge {
  position: absolute;
  top: 38px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}

/* Heart icon — top-right of card, always visible */
.product-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 0;
  transition: all 0.25s var(--ease);
}

.product-heart svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
  transition: all 0.25s var(--ease);
}

.product-heart:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: var(--pink);
  color: var(--pink);
  transform: scale(1.08);
}

.product-heart.saved {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.product-heart.saved svg {
  fill: var(--white);
}

/* Action button — bottom-right (book or online) */
.product-action {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 0;
}

.product-action svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

/* Online action uses pink + plus, book action uses white + speech bubble */
.product-action.book {
  background: var(--white);
  color: var(--pink);
}

.product-action.book svg {
  width: 15px;
  height: 15px;
}

/* Hover-reveal on desktop */
.product-card:hover .product-action {
  opacity: 1;
  transform: translateY(0);
}

/* Always show on touch devices (no hover) */
@media (hover: none) {
  .product-action {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-action:hover {
  transform: translateY(0) scale(1.08);
  box-shadow: 0 4px 24px var(--pink-glow);
}

.product-action.book:hover {
  background: var(--white);
  color: var(--pink-bright);
}

.product-action.online:hover {
  background: var(--pink-bright);
}

.product-action.added {
  background: var(--white);
  color: var(--pink);
  opacity: 1;
  transform: translateY(0);
}

.product-action.added svg {
  animation: actionPop 0.4s ease;
}

@keyframes actionPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Price RRP strikethrough */
.product-price-rrp {
  text-decoration: line-through;
  color: var(--grey-muted);
  font-size: 0.85em;
  margin-left: 0.4em;
  opacity: 0.65;
}

/* ============================================
   AVAILABILITY FILTER PILLS (above product grids)
   ============================================ */

.availability-pills {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.avail-pill {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--grey-border);
  padding: 7px 14px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
}

.avail-pill:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.avail-pill.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  font-weight: 500;
}

/* ============================================
   WISHLIST ICON IN NAV
   ============================================ */

.wishlist-icon-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--grey-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  padding: 0;
  text-decoration: none;
}

.wishlist-icon-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.wishlist-icon-btn svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.wishlist-badge {
  pointer-events: none;
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--black);
}

.wishlist-badge[data-count="0"] { display: none; }

/* ============================================
   CART ITEM — DUAL-MODE
   ============================================ */

.cart-item-availability-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.cart-item-availability-tag.book {
  background: rgba(236, 36, 120, 0.15);
  color: var(--pink);
  border: 1px solid rgba(236, 36, 120, 0.4);
}

.cart-item-availability-tag.online {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-book-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 2px;
  transition: all var(--trans);
  display: inline-block;
}

.cart-book-link:hover {
  background: var(--pink);
  color: var(--white);
}

/* ============================================
   PRODUCT PLACEHOLDER (no real photo yet)
   ============================================ */

.product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a0d15 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-placeholder.is-large {
  background: linear-gradient(160deg, #1f0e19 0%, #0a0a0a 100%);
}

.product-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-placeholder-ring {
  border: 1px solid rgba(236, 36, 120, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}

.product-placeholder-dot {
  background: var(--pink);
  border-radius: 50%;
  display: block;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-placeholder-ring {
  border-color: var(--pink);
}

.product-card:hover .product-placeholder-dot {
  transform: scale(1.15);
}

.product-placeholder-label {
  color: var(--pink);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
}

.product-placeholder-sub {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  max-width: 220px;
  line-height: 1.4;
}

/* "Ask about this dress" button — appears on hover (or always on touch) */
.product-ask-btn {
  margin-top: 14px;
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 7px 14px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  z-index: 4;
}

.product-card:hover .product-ask-btn {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .product-ask-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-ask-btn:hover {
  background: var(--pink-bright, #ff3a8c);
  transform: translateY(0) scale(1.04);
}

.product-placeholder.is-large .product-ask-btn {
  margin-top: 20px;
  padding: 10px 22px;
  font-size: 0.7rem;
  opacity: 1;
  transform: translateY(0);
}

/* Real product image */
.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   ENQUIRY MODAL ("Ask about this dress")
   ============================================ */

.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.enquiry-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.enquiry-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 92vw;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--black);
  border: 1px solid rgba(236, 36, 120, 0.25);
  border-radius: 4px;
  padding: 2.5rem 2rem 2rem;
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.enquiry-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.enquiry-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--grey-border);
  border-radius: 50%;
  background: transparent;
  color: var(--grey-muted);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  padding: 0;
}

.enquiry-modal-close:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.enquiry-modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.2;
}

.enquiry-modal-title .script {
  font-family: 'Great Vibes', cursive;
  color: var(--pink);
  font-size: 1.4em;
  font-weight: normal;
}

.enquiry-modal-sub {
  color: var(--grey-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.enquiry-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .enquiry-form-row { grid-template-columns: 1fr; }
}

.enquiry-form-group {
  margin-bottom: 1rem;
}

.enquiry-form .form-label {
  font-size: 0.7rem;
  color: var(--grey-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.enquiry-form .form-input,
.enquiry-form .form-textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--grey-border);
  color: var(--white);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border-radius: 2px;
  transition: border-color var(--trans);
  font-weight: 300;
}

.enquiry-form .form-input:focus,
.enquiry-form .form-textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.enquiry-form .form-textarea {
  resize: vertical;
  min-height: 70px;
  font-family: var(--font-body);
}

/* ============================================
   PRODUCT CARD — SOLD OUT STATE
   ============================================ */

.product-card.is-sold .product-image {
  filter: grayscale(0.6) brightness(0.55);
  transition: filter 0.3s var(--ease);
}

.product-card.is-sold .product-info {
  opacity: 0.55;
}

.product-card.is-sold .product-heart {
  opacity: 0.6;
}

.product-sold-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-sold-label {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--pink);
  color: var(--pink);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* On product detail page, show a sold-out band instead of CTA buttons */
.product-detail-sold {
  background: rgba(236, 36, 120, 0.08);
  border: 1px solid rgba(236, 36, 120, 0.3);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 1rem;
}

.product-detail-sold-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.product-detail-sold-msg {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* Appointment-led site — no online purchasing. Cart hidden site-wide. */
.cart-icon-btn, .cart-overlay, .cart-drawer { display: none !important; }

/* ---- Mobile QA guards (mobile-only; approved desktop layout untouched) ---- */
@media (max-width: 900px) {
  img, video, iframe { max-width: 100%; }
}
