/* L&E Beauty — Professional Light & Dark Themes */
:root {
  --rose-gold: #b76e79;
  --rose-gold-light: #d4a0a8;
  --rose-gold-deep: #9a5563;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --pink: #f4c2c2;
  --pink-soft: #fce4ec;
  --gradient-rose: linear-gradient(135deg, #b76e79 0%, #d4a0a8 50%, #c9a96e 100%);
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(183, 110, 121, 0.12);
  --shadow-lg: 0 16px 48px rgba(183, 110, 121, 0.18);
}

/* Dark theme (default fallback) */
:root,
[data-theme="dark"] {
  --bg-body: #0a0a0a;
  --bg-soft: #141414;
  --bg-card: #1a1a1a;
  --bg-elevated: #222222;
  --bg-input: #1a1a1a;
  --bg-image: #111111;
  --bg-overlay: rgba(10, 10, 10, 0.95);
  --bg-mobile-nav: rgba(10, 10, 10, 0.98);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --text-on-accent: #0a0a0a;
  --border: rgba(183, 110, 121, 0.25);
  --border-strong: rgba(183, 110, 121, 0.4);
  --price-color: #d4a0a8;
  --hero-overlay: linear-gradient(
    115deg,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.28) 32%,
    transparent 58%
  ),
  linear-gradient(to top, rgba(10, 10, 10, 0.35) 0%, transparent 40%);
  --hero-media-position: 68% center;
  --hero-panel-bg: rgba(10, 10, 10, 0.55);
  --hero-panel-border: rgba(183, 110, 121, 0.28);
  --category-overlay: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 60%);
  --hero-brightness: 0.55;
  --wishlist-bg: rgba(10, 10, 10, 0.65);
  --shade-active-bg: rgba(183, 110, 121, 0.18);
  --btn-outline-text: #ffffff;
  --btn-add-text: #ffffff;
  --announcement-text: #0a0a0a;
  --divider-bg: #0a0a0a;
  --logo-filter: none;
}

/* Light / Day theme */
[data-theme="light"] {
  --bg-body: #faf7f5;
  --bg-soft: #f3eeea;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --bg-input: #ffffff;
  --bg-image: #f8f4f1;
  --bg-overlay: rgba(255, 255, 255, 0.92);
  --bg-mobile-nav: rgba(255, 255, 255, 0.98);
  --text-primary: #1c1416;
  --text-secondary: #4a3f42;
  --text-muted: #8a7a7e;
  --text-on-accent: #1c1416;
  --border: rgba(183, 110, 121, 0.22);
  --border-strong: rgba(183, 110, 121, 0.35);
  --price-color: #9a5563;
  --hero-overlay: linear-gradient(
    to top,
    rgba(28, 20, 22, 0.18) 0%,
    transparent 42%
  );
  --hero-media-position: 72% center;
  --hero-panel-bg: rgba(255, 255, 255, 0.78);
  --hero-panel-border: rgba(183, 110, 121, 0.18);
  --category-overlay: linear-gradient(to top, rgba(28, 20, 22, 0.45) 0%, rgba(28, 20, 22, 0.08) 55%, transparent 75%);
  --hero-brightness: 1;
  --wishlist-bg: rgba(255, 255, 255, 0.9);
  --shade-active-bg: rgba(183, 110, 121, 0.1);
  --btn-outline-text: #9a5563;
  --btn-add-text: #4a3f42;
  --announcement-text: #1c1416;
  --divider-bg: #faf7f5;
  --logo-filter: none;
  --shadow-sm: 0 2px 16px rgba(183, 110, 121, 0.08);
  --shadow-md: 0 8px 32px rgba(183, 110, 121, 0.14);
  --shadow-lg: 0 20px 60px rgba(183, 110, 121, 0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  color-scheme: light dark;
}

html[data-theme="dark"] { color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-gold); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; letter-spacing: 0.05em; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* Announcement */
.announcement-bar {
  background: var(--gradient-rose);
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--announcement-text);
}
.announcement-bar span { margin: 0 20px; }

.strip-banner-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  padding: 14px 20px;
  background: var(--color-accent, #c9a86c);
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strip-banner-item {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.strip-banner-item:hover { opacity: 0.75; }


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-overlay);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, border-color 0.4s ease;
}

[data-theme="light"] .site-header {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}

.nav-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}

.nav-wrap::-webkit-scrollbar { display: none; }

.header-actions {
  flex: 0 0 auto;
}

.logo img {
  height: 56px;
  width: auto;
  max-width: min(160px, 28vw);
  object-fit: contain;
  filter: var(--logo-filter);
  transition: filter 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  border-radius: 8px;
}

[data-theme="light"] .logo img {
  box-shadow: 0 2px 12px rgba(28, 20, 22, 0.12);
}

.logo:hover img { transform: scale(1.02); }

.footer-brand img {
  height: 92px;
  margin-bottom: 16px;
  border-radius: 6px;
}

[data-theme="light"] .footer-brand img {
  box-shadow: 0 2px 16px rgba(28, 20, 22, 0.1);
}

.main-nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.main-nav li { flex: 0 0 auto; display: flex; align-items: center; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding: 8px 11px;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--text-primary); }
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gradient-rose);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.search-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
  transition: border-color var(--transition);
}
.search-box:focus-within { border-color: var(--rose-gold); }
.search-box input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 12px;
  width: 110px;
  outline: none;
  padding: 4px 8px;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box button {
  background: none;
  border: none;
  color: var(--rose-gold);
  cursor: pointer;
  padding: 4px;
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.theme-toggle:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  box-shadow: var(--shadow-sm);
}
.theme-toggle i {
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.4s ease, color 0.3s ease;
}
.theme-toggle.is-light i { color: var(--rose-gold-light); }
.theme-toggle:active i { transform: rotate(20deg) scale(0.9); }
.theme-toggle-label { display: none; }

@media (min-width: 1100px) {
  .theme-toggle-label { display: inline; }
}

.icon-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}
.icon-btn:hover { color: var(--rose-gold); }
.icon-btn .badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--gradient-rose);
  color: var(--text-on-accent);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(var(--hero-brightness));
  transition: filter 0.4s ease;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  transition: background 0.4s ease;
}

.hero-content { position: relative; z-index: 2; max-width: 600px; padding: 80px 0; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
  margin-bottom: 16px;
  font-weight: 600;
}
[data-theme="dark"] .hero-eyebrow { color: var(--rose-gold-light); }

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 20px;
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 440px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}
.btn-primary {
  background: var(--gradient-rose);
  color: var(--text-on-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--text-on-accent);
}
.btn-outline {
  background: transparent;
  color: var(--btn-outline-text);
  border: 1px solid var(--rose-gold);
}
.btn-outline:hover {
  background: var(--rose-gold);
  color: #fff;
  border-color: var(--rose-gold);
}
.btn-full { width: 100%; justify-content: center; }

/* Sections */
.section { padding: 80px 0; transition: background 0.4s ease; }
[data-theme="light"] .section.alt-bg { background: var(--bg-soft); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
  margin-bottom: 8px;
  font-weight: 600;
}
.section-header h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; color: var(--text-primary); }
.section-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gradient-rose);
  margin: 16px auto 0;
  position: relative;
}
.section-divider::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--divider-bg);
  padding: 0 8px;
  color: var(--gold);
  font-size: 10px;
  transition: background 0.4s ease;
}

/* Categories */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (min-width: 1100px) {
  .category-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
}
.category-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}
[data-theme="light"] .category-card { border: 1px solid var(--border); }
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.category-card-media {
  position: absolute;
  inset: 0;
  bottom: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 8px;
  background: linear-gradient(165deg, var(--bg-soft) 0%, var(--bg-card) 55%, var(--bg-soft) 100%);
}
.category-card-media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 14px 28px rgba(28, 20, 22, 0.12));
}
.category-card:hover .category-card-media img { transform: scale(1.04); }
.category-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  min-height: 72px;
  background: linear-gradient(to top, rgba(28, 20, 22, 0.82) 0%, rgba(28, 20, 22, 0.35) 70%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.category-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 72px;
  justify-content: flex-end;
}
.category-card-copy span {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.6vw, 17px);
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.category-card-copy small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: clamp(9px, 1.1vw, 11px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
}
@media (min-width: 1100px) {
  .category-card-media { bottom: 68px; padding: 16px 12px 6px; }
  .category-card-copy { padding: 10px 12px 12px; min-height: 68px; gap: 3px; }
  .category-card-copy span { letter-spacing: 0.08em; }
}

/* Shop category banner */
.shop-category-banner {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 21/7;
  min-height: 160px;
}
.shop-category-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-category-banner-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(28, 20, 22, 0.65), transparent 60%);
  color: #fff;
}
.shop-category-banner-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 4px;
}
.shop-category-banner-copy p { font-size: 14px; opacity: 0.9; }
.hidden { display: none !important; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border-radius: 4px;
  overflow: hidden;
}
[data-theme="light"] .product-card { box-shadow: var(--shadow-sm); }
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--gradient-rose);
  color: var(--text-on-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  text-transform: uppercase;
  border-radius: 2px;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--wishlist-bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.wishlist-btn:hover,
.wishlist-btn.active {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: #fff;
}

.product-image-link {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-image);
  transition: background 0.4s ease;
}
.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.45s ease;
}
.product-image-link .product-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-img-primary { transform: scale(1.05); opacity: 0; }
.product-card:hover .product-img-hover { opacity: 1; transform: scale(1.05); }
.product-card:hover .product-image-link img:only-child { opacity: 1; }

.product-info { padding: 20px; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; font-size: 11px; color: var(--gold); }
.product-rating span { color: var(--text-muted); }
.product-name { font-family: var(--font-sans); font-size: 13px; font-weight: 500; margin-bottom: 12px; line-height: 1.4; color: var(--text-primary); }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.price-current { font-size: 16px; font-weight: 600; color: var(--price-color); }
.price-compare { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }

.btn-add-bag {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--rose-gold);
  color: var(--btn-add-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}
.btn-add-bag:hover {
  background: var(--rose-gold);
  color: #fff;
  border-color: var(--rose-gold);
}

/* Features */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-item {
  background: var(--bg-soft);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.4s ease;
}
.feature-item i { font-size: 24px; color: var(--rose-gold); margin-bottom: 12px; }
.feature-item h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.feature-item p { font-size: 12px; color: var(--text-muted); }

/* Newsletter */
.newsletter-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  transition: background 0.4s ease;
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-inner h2 { font-size: 32px; margin-bottom: 8px; }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 480px; }
.newsletter-form input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text-primary);
  padding: 14px 20px;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition), background 0.4s ease;
  border-radius: 2px 0 0 2px;
}
.newsletter-form input:focus { border-color: var(--rose-gold); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--gradient-rose);
  border: none;
  color: var(--text-on-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 2px 2px 0;
}

/* Footer */
.site-footer {
  background: var(--bg-soft);
  padding: 64px 0 0;
  transition: background 0.4s ease;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition);
  border-radius: 50%;
}
.social-links a:hover { border-color: var(--rose-gold); color: var(--rose-gold); background: var(--shade-active-bg); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--rose-gold-deep);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom p {
  margin: 0;
  width: 100%;
}

.site-credit {
  text-align: center;
  padding: 14px 24px 22px;
  margin-top: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--bg-body);
}
.site-credit a {
  color: var(--rose-gold-deep);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: color var(--transition);
}
[data-theme="dark"] .site-credit a { color: var(--rose-gold-light); }
.site-credit a:hover { color: var(--rose-gold); text-decoration: underline; }

/* Product Detail */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 48px 0 80px; }
.product-gallery-wrap { display: flex; flex-direction: column; gap: 12px; }
.product-gallery {
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  transition: border-color var(--transition);
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--rose-gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-subcategory {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
  margin: -4px 0 12px;
}
.before-after-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.before-after-section h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 6px;
}
.before-after-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.before-after-grid figure { margin: 0; text-align: center; }
.before-after-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.before-after-grid figcaption {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.product-detail-info .breadcrumb { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.product-detail-info .breadcrumb a { color: var(--rose-gold-deep); }
.product-detail-info h1 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 12px; }
.detail-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--gold); font-size: 13px; }
.detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.detail-price .current { font-size: 28px; font-weight: 600; color: var(--price-color); }
.detail-price .compare { font-size: 18px; color: var(--text-muted); text-decoration: line-through; }
.detail-description { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.8; }
.shade-selector { margin-bottom: 32px; }
.shade-selector label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.shade-options { display: flex; flex-wrap: wrap; gap: 8px; }
.shade-btn {
  padding: 8px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}
.shade-btn:hover,
.shade-btn.active {
  border-color: var(--rose-gold);
  color: var(--rose-gold-deep);
  background: var(--shade-active-bg);
}
[data-theme="dark"] .shade-btn.active { color: var(--text-primary); }

.qty-selector { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-selector label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-input);
}
.qty-control button {
  background: none;
  border: none;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
}
.qty-control input {
  width: 48px;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
}
.detail-actions { display: flex; gap: 12px; }
.detail-actions .btn { flex: 1; justify-content: center; }

/* Shop */
.page-hero {
  padding: 48px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: 42px; margin-bottom: 8px; }
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 48px 0 80px; }
.shop-filters h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--rose-gold-deep);
}
.filter-group { margin-bottom: 32px; }
.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
}
.filter-group input[type="checkbox"] { accent-color: var(--rose-gold); }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.shop-toolbar select {
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 16px;
  font-size: 12px;
  outline: none;
  border-radius: 2px;
}

/* Cart */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding: 48px 0 80px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: var(--bg-image);
  border-radius: 4px;
  border: 1px solid var(--border);
}
.cart-product h4 { font-family: var(--font-sans); font-size: 14px; margin-bottom: 4px; }
.cart-product .shade { font-size: 12px; color: var(--text-muted); }
.remove-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 14px; transition: color var(--transition); }
.remove-btn:hover { color: var(--rose-gold); }
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  position: sticky;
  top: 120px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.cart-summary h3 {
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; color: var(--text-secondary); }
.summary-row.total {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--price-color);
}
.empty-cart { text-align: center; padding: 80px 0; }
.empty-cart i { font-size: 48px; color: var(--text-muted); margin-bottom: 16px; }
.empty-cart h2 { margin-bottom: 12px; }

/* Checkout & Forms */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; padding: 48px 0 80px; }
.form-section { margin-bottom: 40px; }
.form-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  border-radius: 2px;
  transition: border-color var(--transition), background 0.4s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px var(--shade-active-bg);
}

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 48px 0 80px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-item i {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-card);
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gradient-rose);
  color: var(--text-on-accent);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.toast-notification.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Community */
.community-section {
  text-align: center;
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  transition: background 0.4s ease;
}
.community-section h2 { font-size: 36px; margin-bottom: 16px; }
.community-section p { color: var(--text-muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.community-tags { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.community-tags span {
  padding: 8px 20px;
  border: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--rose-gold-deep);
  background: var(--bg-card);
  border-radius: 999px;
  transition: all var(--transition);
}
.community-tags span:hover { border-color: var(--rose-gold); }

/* Mobile Nav — drawer handled in experience.css */
.mobile-nav ul { list-style: none; }

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gradient-rose);
  color: var(--text-on-accent);
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 999;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.back-to-top:hover { transform: translateY(-3px); }

/* Responsive */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .features-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail, .shop-layout, .cart-layout, .checkout-layout, .contact-layout { grid-template-columns: 1fr; }
  .shop-filters { display: block; order: -1; }
}

@media (max-width: 640px) {
  .search-box, .theme-toggle-label { display: none; }
  .theme-toggle { padding: 8px 10px; }
  .category-grid, .features-bar, .footer-grid { grid-template-columns: 1fr; }
  .form-row, .detail-actions { grid-template-columns: 1fr; flex-direction: column; }
  .announcement-bar span { display: block; margin: 4px 0; }
  .promo-grid { grid-template-columns: 1fr !important; }
  .promo-banner.promo-large { grid-column: span 1; }
}

.section-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 0;
  grid-column: 1 / -1;
}

.hero-placeholder {
  min-height: 85vh;
  background: var(--bg-soft) url('img/hero-banner.png?v=6') center/cover no-repeat;
}
.hero-placeholder:has(.hero-slider) {
  min-height: 0;
  background: none;
}

/* Hero Slider */
.hero-slider { position: relative; min-height: 85vh; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease; pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: var(--hero-media-position, center);
  filter: brightness(var(--hero-brightness));
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-gallery { position: absolute; inset: 0; }
.hero-gallery-item {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-gallery-item.active { opacity: 1; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}
.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  padding: 44px 40px;
  margin: 80px 0;
  background: var(--hero-panel-bg, rgba(255, 255, 255, 0.78));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--hero-panel-border, rgba(183, 110, 121, 0.18));
  border-radius: 2px;
  box-shadow: 0 12px 48px rgba(28, 20, 22, 0.08);
}
[data-theme="dark"] .hero-slide .hero-content {
  --hero-panel-bg: rgba(10, 10, 10, 0.55);
  --hero-panel-border: rgba(183, 110, 121, 0.28);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.35);
}
.hero-slide .hero-content .hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
  margin-bottom: 14px;
  font-weight: 600;
}
[data-theme="dark"] .hero-slide .hero-content .hero-eyebrow { color: var(--rose-gold-light); }
.hero-slide .hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.hero-slide .hero-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 380px;
}
.hero-slide .hero-content .btn-primary {
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.25);
}
.hero-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--rose-gold);
  background: transparent; cursor: pointer; padding: 0; transition: background 0.3s;
}
.hero-dot.active { background: var(--rose-gold); }

/* Promo Banners */
.promo-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  min-height: 460px;
}
.promo-banner {
  position: relative; overflow: hidden; border-radius: 4px;
  display: block; min-height: 220px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.promo-banner.promo-large {
  grid-row: span 2;
  min-height: 100%;
  aspect-ratio: auto;
}
.promo-banner.promo-medium { aspect-ratio: 4/3; min-height: 0; }
.promo-banner:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promo-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.promo-banner:hover img { transform: scale(1.05); }
.promo-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.promo-banner-content {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2; color: #fff;
}
.promo-banner-content span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.9; }
.promo-banner-content h3 { font-family: var(--font-serif); font-size: 24px; margin-top: 4px; }

.product-badge.stock-warn { left: auto; right: 48px; background: #ff9800; }

/* Auth */
.auth-page { display: flex; justify-content: center; padding: 60px 0 80px; }
.auth-card {
  width: 100%; max-width: 440px; padding: 48px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; box-shadow: var(--shadow-md);
}
.auth-card h1 { font-size: 32px; text-align: center; margin-bottom: 8px; }
.auth-sub { text-align: center; color: var(--text-muted); margin-bottom: 32px; }
.auth-switch { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-muted); }
.auth-switch a { color: var(--rose-gold-deep); font-weight: 600; }
.auth-error { color: #f44336; font-size: 13px; margin-bottom: 12px; min-height: 18px; }

/* Account */
.account-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding: 0 0 80px; }
.account-sidebar {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 32px; border-radius: 4px; height: fit-content;
}
.account-user { text-align: center; margin-bottom: 24px; }
.account-user i { font-size: 48px; color: var(--rose-gold); margin-bottom: 12px; }
.account-user h3 { font-size: 18px; margin-bottom: 4px; }
.account-user p { font-size: 13px; color: var(--text-muted); }
.account-main h2 { font-size: 22px; margin-bottom: 24px; }
.order-status {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
}
.order-status.pending { background: rgba(255,152,0,0.15); color: #ff9800; }
.order-status.processing { background: rgba(33,150,243,0.15); color: #2196f3; }
.order-status.shipped { background: rgba(76,175,80,0.15); color: #4caf50; }
.order-status.completed { background: rgba(76,175,80,0.2); color: #4caf50; }
.order-status.cancelled { background: rgba(244,67,54,0.15); color: #f44336; }

.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; }

@media (max-width: 768px) {
  .hero-slide .hero-content {
    max-width: 100%;
    padding: 32px 28px;
    margin: 60px 0;
  }
  .hero-slide-media { background-position: center center; }
  .category-card-media { padding: 16px 14px 6px; }
}

/* Order confirmation (checkout success) */
.order-confirm { max-width: 760px; margin: 0 auto; padding: 48px 0 80px; }
.order-confirm-hero { text-align: center; margin-bottom: 32px; }
.order-confirm-icon { width: 88px; height: 88px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, rgba(183,110,121,.15), rgba(212,175,55,.12)); color: var(--rose-gold); font-size: 40px; }
.order-confirm.is-paid .order-confirm-icon { color: #2e7d32; background: rgba(46,125,50,.12); }
.order-confirm.failed .order-confirm-icon, .order-confirm.cancelled .order-confirm-icon { color: #c62828; background: rgba(198,40,40,.1); }
.order-confirm-eyebrow { letter-spacing: .14em; text-transform: uppercase; font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.order-confirm h1 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.order-confirm-subtitle { color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.order-confirm-card { background: var(--card-bg, #fff); border: 1px solid var(--border, rgba(0,0,0,.08)); border-radius: 20px; padding: 28px; box-shadow: 0 18px 50px rgba(0,0,0,.06); }
.order-confirm-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
.order-confirm-meta div { padding: 14px 16px; border-radius: 12px; background: var(--section-alt, rgba(0,0,0,.03)); }
.order-confirm-meta span { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.order-confirm-items { border-top: 1px solid var(--border, rgba(0,0,0,.08)); padding-top: 16px; margin-bottom: 16px; }
.order-confirm-item { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; font-size: 14px; }
.order-confirm-email { text-align: center; color: var(--text-muted); margin: 8px 0 20px; }
.order-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 24px 0; }
.order-step { display: flex; gap: 10px; align-items: flex-start; padding: 12px; border-radius: 12px; background: var(--section-alt, rgba(0,0,0,.03)); opacity: .55; }
.order-step span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--border, rgba(0,0,0,.1)); font-size: 12px; font-weight: 700; flex-shrink: 0; }
.order-step.is-done, .order-step.is-active { opacity: 1; }
.order-step.is-active { box-shadow: inset 0 0 0 1px var(--rose-gold); }
.order-step strong { display: block; font-size: 13px; }
.order-step small { color: var(--text-muted); font-size: 11px; }
.order-confirm-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.order-confirm-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 20px; }
@media (max-width: 768px) {
  .order-confirm-meta, .order-steps { grid-template-columns: 1fr; }
  .order-confirm-actions .btn { width: 100%; }
}

/* Checkout payment methods */
.payment-methods { display: grid; gap: 12px; }
.payment-method-card {
  display: block; border: 1px solid var(--border, rgba(0,0,0,.1)); border-radius: 14px;
  padding: 16px 18px; cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.payment-method-card input { position: absolute; opacity: 0; pointer-events: none; }
.payment-method-card.is-selected {
  border-color: var(--rose-gold); box-shadow: 0 0 0 1px var(--rose-gold);
}
.payment-method-body strong { display: block; margin-bottom: 4px; }
.payment-method-body small { color: var(--text-muted); font-size: 12px; }
.pay-icons { display: flex; gap: 10px; margin-top: 10px; font-size: 22px; color: var(--text-muted); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Secure payment page */
.payment-page { max-width: 560px; margin: 0 auto; padding: 40px 0 80px; }
.payment-page-header { text-align: center; margin-bottom: 24px; }
.payment-secure-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(46,125,50,.1); color: #2e7d32; font-size: 12px; margin-bottom: 16px;
}
.payment-page-header h1 { font-family: var(--font-serif); margin-bottom: 8px; }
.payment-page-card {
  background: var(--card-bg, #fff); border: 1px solid var(--border, rgba(0,0,0,.08));
  border-radius: 20px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.payment-loading, .payment-error { text-align: center; padding: 48px 24px; color: var(--text-muted); }
.payment-loading i, .payment-error i { font-size: 36px; margin-bottom: 16px; display: block; }
.payment-frame-wrap iframe { display: block; width: 100%; min-height: 820px; border: 0; }
.payment-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 24px;
  color: var(--text-muted); font-size: 13px;
}
.hidden { display: none !important; }

