/* ═══════════════════════════════════════════════════
   SEITZ JEWELRY — SHARED STYLESHEET v2.0
   Black & Gold Luxury Design System
═══════════════════════════════════════════════════ */

@font-face {
  font-family: 'Cinzel';
  src: url('Cinzel-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('Cinzel-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('Cinzel-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('Cinzel-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── DESIGN TOKENS ── */
:root {
  --gold:        #d4af37;
  --gold-dim:    rgba(212,175,55,0.10);
  --gold-line:   rgba(212,175,55,0.18);
  --gold-muted:  rgba(212,175,55,0.50);
  --gold-hover:  #e8c84a;
  --white:       #ffffff;
  --off-white:   #f5f0e8;
  --muted:       rgba(255,255,255,0.45);
  --muted-2:     rgba(255,255,255,0.22);
  --muted-3:     rgba(255,255,255,0.08);
  --black:       #000000;
  --surface:     #0a0800;
  --surface-2:   #0e0c03;
  --surface-3:   #050400;
  --font:        'Cinzel', Georgia, serif;
  --font-italic: Georgia, 'Times New Roman', serif;
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); }
ul { list-style: none; }

/* ── CANVAS ── */
.canvas-bg {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  opacity: 0.75;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-size: 20px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}
.preloader-dots {
  display: flex; gap: 8px;
}
.preloader-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: 0.3;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes preloaderPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }
@keyframes dotBounce { 0%,100%{transform:translateY(0);opacity:0.3;} 50%{transform:translateY(-6px);opacity:1;} }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  position: relative; z-index: 100;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 9px 16px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700;
}
.announce-bar a { color: var(--black); text-decoration: underline; opacity: 0.7; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 2500;
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-line);
  transition: height 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled { height: 60px; }
.header-logo {
  font-size: 1.5rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.header-logo strong { font-weight: 700; color: var(--gold); }
.header-logo:hover .header-logo-text { color: var(--gold); }
.header-logo-text { transition: color 0.25s; }
.header-nav {
  margin-left: auto;
  display: flex; align-items: center; gap: 4px;
}
.header-nav a {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 16px; color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.25s ease;
}
.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav a.active { color: var(--gold); }
.header-cart-btn {
  margin-left: 20px;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--gold-line);
  cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  position: relative;
}
.header-cart-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.header-cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  width: 16px; height: 16px;
  background: var(--gold); color: var(--black);
  border-radius: 50%; font-size: 8px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  letter-spacing: 0;
}
.cart-count.visible { display: flex; }

/* ── MOBILE HEADER BUTTONS ── */
.header-mobile-btns {
  display: none; align-items: center; gap: 8px;
  margin-right: 0;
}
.menu-btn {
  width: 40px; height: 40px;
  background: transparent; border: none;
  cursor: pointer; z-index: 2600;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.menu-btn-bar {
  position: absolute; width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.45s cubic-bezier(0.75,0,0.25,1);
  box-shadow: 0 0 4px rgba(255,255,255,0.6);
}
.menu-btn-bar::before, .menu-btn-bar::after {
  content: ''; position: absolute; width: 100%; height: 100%;
  background: var(--white);
  transition: all 0.45s cubic-bezier(0.75,0,0.25,1);
  box-shadow: 0 0 4px rgba(255,255,255,0.6);
}
.menu-btn-bar::before { top: -7px; }
.menu-btn-bar::after { bottom: -7px; }
.menu-btn.active .menu-btn-bar { background: transparent; box-shadow: none; }
.menu-btn.active .menu-btn-bar::before {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}
.menu-btn.active .menu-btn-bar::after {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}
.cart-btn-mobile {
  width: 40px; height: 40px;
  background: transparent; border: none;
  cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.25s;
}
.cart-btn-mobile svg { width: 20px; height: 20px; }
.cart-btn-mobile:hover { color: var(--gold); }

/* ── MOBILE MENU ── */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2050;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, rgba(5,4,0,0.98) 0%, rgba(0,0,0,0.96) 100%);
  z-index: 2100;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); pointer-events: auto; }
.mobile-menu-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  text-align: center;
}
.mobile-menu-nav a {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  transition: color 0.3s, transform 0.3s;
  transform: translateY(30px); opacity: 0;
  transition: color 0.3s, transform 0.5s ease, opacity 0.5s ease;
}
.mobile-menu.open .mobile-menu-nav a { color: var(--white); transform: translateY(0); opacity: 1; }
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu-nav a:hover { color: var(--gold); }
.mobile-menu-divider {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-muted), transparent);
  margin: 4px auto;
}
.mobile-menu-footer {
  position: absolute; bottom: 40px;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted-2);
}

/* ── SIDE NAV BUTTONS ── */
.sidenav-left, .sidenav-right {
  position: fixed; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px;
  z-index: 2000; padding: 8px;
}
.sidenav-left  { left: 16px; }
.sidenav-right { right: 16px; }
.sidenav-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,0.9);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
}
.sidenav-btn svg { width: 18px; height: 18px; }
.sidenav-btn:hover {
  border-color: var(--gold-muted);
  transform: scale(1.08);
  background: rgba(10,8,0,0.95);
}
.sidenav-btn::after {
  content: attr(data-label);
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.25s;
}
.sidenav-left .sidenav-btn::after  { left: calc(100% + 16px); }
.sidenav-right .sidenav-btn::after { right: calc(100% + 16px); }
.sidenav-btn:hover::after { opacity: 1; }

/* ── MAIN CONTAINER ── */
.main-wrap { position: relative; z-index: 1; flex: 1; }

/* ── UTILITY: SECTION WRAPPER ── */
.sw {
  position: relative; z-index: 2;
  padding: 88px 80px;
}
.sw--dark   { background: rgba(0,0,0,0.55); }
.sw--warm   { background: rgba(8,6,0,0.7); }
.sw--black  { background: var(--black); }
.container  { max-width: 1320px; margin: 0 auto; }
.divider    { border: none; border-top: 1px solid var(--gold-line); position: relative; z-index: 2; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.sec-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.1;
}
.sec-title strong { font-weight: 700; color: var(--gold); }
.sec-sub {
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px; color: var(--muted); line-height: 1.8;
  margin-top: 14px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  border: none; padding: 15px 38px;
  font-family: var(--font); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 0 28px rgba(212,175,55,0.25);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 14px 32px;
  font-family: var(--font); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--muted);
  border: none; padding: 0;
  font-family: var(--font); font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: color 0.25s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after { content: '→'; transition: transform 0.25s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── PRODUCT CARD ── */
.product-card { color: var(--white); position: relative; }
.product-img-wrap {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--gold-line);
  aspect-ratio: 1;
  margin-bottom: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover .product-img-wrap {
  border-color: rgba(212,175,55,0.38);
  box-shadow: 0 12px 40px rgba(212,175,55,0.07);
}
.product-img-link {
  display: block; position: absolute; inset: 0; z-index: 1;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 12px;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--gold); color: var(--black);
  font-size: 7px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; pointer-events: none;
}
.product-badge--new { background: var(--white); color: var(--black); }
.product-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: var(--gold); color: var(--black); border: none;
  padding: 13px; cursor: pointer;
  font-family: var(--font); font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-quick-add:hover { background: var(--gold-hover); }
.product-meta { display: block; text-decoration: none; color: var(--white); }
.product-category {
  font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 5px;
}
.product-name {
  font-size: 13px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.35; margin-bottom: 6px;
  transition: color 0.25s;
}
.product-meta:hover .product-name { color: var(--gold); }
.product-price { font-size: 14px; font-weight: 700; color: var(--gold); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--left  { transform: translateX(-18px); }
.reveal--right { transform: translateX(18px); }
.reveal--left.visible, .reveal--right.visible { transform: translateX(0); }

/* ── FOOTER ── */
.footer-main {
  position: relative; z-index: 2;
  border-top: 1px solid var(--gold-line);
  padding: 64px 80px 0;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { margin-bottom: 14px; }
.footer-brand-name {
  font-size: 17px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
}
.footer-brand-name strong { font-weight: 700; color: var(--gold); }
.footer-tagline {
  font-family: var(--font-italic); font-style: italic;
  font-size: 12px; color: var(--muted-2); line-height: 1.9;
  margin-top: 8px; max-width: 210px;
}
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2); text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.footer-social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.footer-col-title {
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-2); transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  position: relative; z-index: 2;
  padding: 24px 80px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(212,175,55,0.08);
  margin-top: 48px;
}
.footer-copy {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}
.footer-legal {
  display: flex; gap: 20px;
}
.footer-legal a {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.15); transition: color 0.25s;
}
.footer-legal a:hover { color: var(--gold-muted); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.98) 0%, rgba(10,8,0,0.97) 100%);
  border-top: 1px solid var(--gold-line);
  padding: 24px 40px;
  z-index: 8000;
  display: none; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-text {
  flex: 1; min-width: 280px;
  font-family: var(--font-italic); font-style: italic;
  font-size: 12px; color: var(--muted); line-height: 1.7;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-text a:hover { color: var(--white); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 20px;
  font-family: var(--font); font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s;
}
.cookie-btn:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.cookie-btn--primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.cookie-btn--primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.cookie-settings-modal {
  display: none;
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: linear-gradient(135deg, rgba(8,6,0,0.99) 0%, rgba(0,0,0,0.98) 100%);
  border: 1px solid var(--gold-line);
  padding: 36px; max-width: 500px; width: 90%;
  z-index: 8100; color: var(--white);
}
.cookie-settings-modal.show { display: block; }
.cookie-modal-title {
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-align: center; margin-bottom: 24px;
}
.cookie-option { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gold-line); }
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option input[type="checkbox"] { margin-top: 2px; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.cookie-option-label { font-size: 11px; color: var(--muted); line-height: 1.6; }
.cookie-option-label strong { color: var(--white); font-size: 12px; display: block; margin-bottom: 3px; letter-spacing: 0.08em; text-transform: uppercase; }
.cookie-modal-actions { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }

/* ── TESTIMONIALS ── */
.testi-header { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 40px; gap: 24px 40px; }
.testi-agg { text-align: right; }
.testi-agg-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 4px; }
.testi-agg-num { font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -0.01em; }
.testi-agg-label { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-top: 5px; }
.testi-featured { padding-bottom: 52px; border-bottom: 1px solid var(--gold-line); }
.testi-featured-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 22px; }
.testi-featured-quote { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: clamp(17px, 2vw, 24px); color: rgba(255,255,255,0.9); line-height: 1.75; max-width: 820px; margin-bottom: 28px; letter-spacing: 0.01em; }
.testi-featured-attr { display: flex; align-items: center; gap: 12px; }
.testi-attr-rule { width: 24px; height: 1px; background: var(--gold); opacity: 0.55; flex-shrink: 0; }
.testi-attr-name { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.testi-attr-sep { color: var(--gold-muted); }
.testi-attr-loc { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.testi-attr-prod { margin-left: auto; font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-muted); }
.testi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--gold-line); border-top: 1px solid var(--gold-line); }
.testi-card { background: var(--black); padding: 36px 40px; }
.testi-card-stars { color: var(--gold); font-size: 11px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card-text { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.85; margin-bottom: 20px; }
.testi-card-name { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.testi-card-prod { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-muted); margin-top: 4px; }

/* ── TESTI 3-COL GRID ── */
.testi-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--gold-line); padding-top: 36px; }
.testi-col { padding: 0 44px; border-left: 1px solid var(--gold-line); }
.testi-col:first-child { border-left: none; padding-left: 0; }
.testi-col:last-child { padding-right: 0; }
.testi-card-attr { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 1900;
  width: 44px; height: 44px;
  background: rgba(10,8,0,0.92);
  border: 1px solid rgba(212,175,55,0.28);
  cursor: pointer; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, border-color 0.25s;
  backdrop-filter: blur(12px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--gold); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── FOOTER PAYMENT ── */
.footer-payment {
  position: relative; z-index: 2;
  padding: 18px 80px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(212,175,55,0.06);
}
.footer-payment-label {
  font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); flex-shrink: 0;
}
.footer-payment-icons { display: flex; gap: 7px; flex-wrap: wrap; }
.pay-icon {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 3px;
  padding: 4px 10px;
  font-size: 8px; letter-spacing: 0.12em; font-weight: 700;
  color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.03);
  white-space: nowrap;
}

/* ── SNIPCART — Z-INDEX, FONT & ORIGINAL OVERRIDES ── */
#snipcart { z-index: 9000 !important; max-width: 400px !important; }
#snipcart.snipcart-modal { width: 100% !important; max-width: 400px !important; }
.snipcart-modal,
.snipcart-modal__container { z-index: 9000 !important; }
.snipcart-modal__overlay,
.snipcart__overlay { z-index: 8999 !important; }
#snipcart-footer { display: none !important; }
#snipcart, .snipcart-modal, .snipcart, .snipcart *,
#snipcart-main-container, #snipcart-main-container *,
.snipcart__font--sans, .snipcart__font--secondary,
.snipcart__font--bold, .snipcart__font--tiny,
.snipcart__font--std, .snipcart__font--large {
  font-family: var(--font) !important;
}
@media (max-width: 480px) {
  .snipcart-cart-button--highlight { margin-right: 18px !important; box-sizing: border-box !important; max-width: calc(100% - 8%) !important; }
  .snipcart-modal__container.snipcart-layout--large { z-index: 4000 !important; }
}

/* ── KEYFRAMES ── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn   { from{opacity:0;} to{opacity:1;} }
@keyframes shimmer  {
  0%,100%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
}
@keyframes float {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}
@keyframes glowPulse {
  0%,100%{opacity:0.5;transform:translate(-50%,-50%) scale(0.95);}
  50%{opacity:1;transform:translate(-50%,-50%) scale(1.12);}
}
@keyframes rotateCW  { to{transform:rotate(360deg);}  }
@keyframes rotateCCW { to{transform:rotate(-360deg);} }
@keyframes sparkleFade { 0%,100%{opacity:0.06;} 50%{opacity:0.9;} }

/* ── THEME TOGGLE ── */
.theme-toggle {
  position: fixed; bottom: 86px; right: 32px; z-index: 1900;
  width: 44px; height: 44px;
  background: rgba(10,8,0,0.92);
  border: 1px solid rgba(212,175,55,0.28);
  cursor: pointer; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s, transform 0.3s;
  backdrop-filter: blur(12px);
}
.theme-toggle:hover { border-color: var(--gold); transform: rotate(18deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle { background: rgba(245,240,228,0.95); border-color: rgba(212,175,55,0.4); }

/* ── LIGHT MODE ── */
[data-theme="light"] {
  --black:    #faf7f0;
  --white:    #0c0900;
  --surface:  #f0ebe0;
  --surface-2:#ece6d8;
  --surface-3:#f5f0e4;
  --muted:    rgba(12,9,0,0.62);
  --muted-2:  rgba(12,9,0,0.38);
  --muted-3:  rgba(12,9,0,0.08);
  --gold-line:rgba(212,175,55,0.30);
}
[data-theme="light"] body { background: #faf7f0; color: #0c0900; }
[data-theme="light"] #preloader { background: #faf7f0; }
[data-theme="light"] .canvas-bg { filter: invert(1) hue-rotate(45deg); opacity: 0.15; }
[data-theme="light"] .site-header { background: rgba(245,240,228,0.94); border-bottom-color: rgba(212,175,55,0.3); }
[data-theme="light"] .mobile-menu { background: linear-gradient(160deg,rgba(245,240,228,0.99) 0%,rgba(250,247,240,0.97) 100%); }
[data-theme="light"] .mobile-menu-nav a { color: rgba(12,9,0,0.12); }
[data-theme="light"] .mobile-menu.open .mobile-menu-nav a { color: var(--white); }
[data-theme="light"] .menu-btn-bar,[data-theme="light"] .menu-btn-bar::before,[data-theme="light"] .menu-btn-bar::after { background: var(--white); box-shadow: none; }
[data-theme="light"] .sidenav-btn { background: rgba(245,240,228,0.96); border-color: rgba(212,175,55,0.22); color: #0c0900; }
[data-theme="light"] .sidenav-btn:hover { background: rgba(238,232,218,1); }
[data-theme="light"] .sw--dark { background: rgba(238,233,220,0.72); }
[data-theme="light"] .sw--warm { background: rgba(232,226,210,0.72); }
[data-theme="light"] .product-img-wrap { background: var(--surface-2); border-color: rgba(212,175,55,0.28); }
[data-theme="light"] .story-text { background: rgba(232,226,210,0.96); }
[data-theme="light"] .cookie-banner { background: linear-gradient(0deg,rgba(245,240,228,0.99) 0%,rgba(245,240,228,0.97) 100%); border-top-color: rgba(212,175,55,0.28); }
[data-theme="light"] .cookie-settings-modal { background: linear-gradient(135deg,rgba(245,240,228,0.99) 0%,rgba(250,247,240,0.98) 100%); }
[data-theme="light"] .back-to-top { background: rgba(245,240,228,0.95); border-color: rgba(212,175,55,0.38); }
[data-theme="light"] .testi-featured-quote { color: rgba(12,9,0,0.82); }
[data-theme="light"] .testi-card { background: var(--black); }
[data-theme="light"] .testi-card-text { color: rgba(12,9,0,0.65); }
[data-theme="light"] .testi-attr-name { color: rgba(12,9,0,0.6); }
[data-theme="light"] .testi-attr-loc { color: rgba(12,9,0,0.36); }
[data-theme="light"] .usp-card { background: var(--black); }
[data-theme="light"] .usp-card:hover { background: var(--surface-2); }
[data-theme="light"] .usp-grid { background: rgba(212,175,55,0.3); border-color: rgba(212,175,55,0.3); }
[data-theme="light"] .product-quick-add { background: var(--gold); color: #0c0900; }
[data-theme="light"] .header-cart-btn { color: var(--white); border-color: rgba(212,175,55,0.3); }
[data-theme="light"] .cart-btn-mobile { color: var(--white); }
[data-theme="light"] .mobile-menu-overlay { background: rgba(12,9,0,0.35); }
[data-theme="light"] .divider { border-top-color: rgba(212,175,55,0.28); }

/* Light mode — canvas animation sichtbar */
[data-theme="light"] .canvas-bg { filter: invert(1) hue-rotate(45deg); opacity: 0.35; }

/* Light mode — Header */
[data-theme="light"] .header-nav a { color: rgba(12,9,0,0.55); }
[data-theme="light"] .header-nav a:hover { color: #0c0900; }
[data-theme="light"] .header-logo-text { color: #0c0900; }
[data-theme="light"] .header-logo strong { color: var(--gold); }

/* Light mode — Footer */
[data-theme="light"] .footer-copy { color: rgba(12,9,0,0.3); }
[data-theme="light"] .footer-legal a { color: rgba(12,9,0,0.3); }
[data-theme="light"] .footer-legal a:hover { color: var(--gold); }
[data-theme="light"] .footer-tagline { color: rgba(12,9,0,0.45); }
[data-theme="light"] .footer-links a { color: rgba(12,9,0,0.5); }
[data-theme="light"] .footer-col-title { color: rgba(212,175,55,0.7); }
[data-theme="light"] .footer-social-btn { color: rgba(12,9,0,0.45); border-color: rgba(212,175,55,0.22); }
[data-theme="light"] .footer-payment-label { color: rgba(12,9,0,0.28); }
[data-theme="light"] .pay-icon { color: rgba(12,9,0,0.4); border-color: rgba(12,9,0,0.1); background: rgba(12,9,0,0.04); }
[data-theme="light"] .footer-main { border-top-color: rgba(212,175,55,0.28); }
[data-theme="light"] .footer-bottom { border-top-color: rgba(212,175,55,0.12); }

/* Light mode — Produkt-Karten */
[data-theme="light"] .product-name { color: #0c0900; }
[data-theme="light"] .product-meta:hover .product-name { color: var(--gold); }
[data-theme="light"] .product-category { color: rgba(212,175,55,0.65); }

/* Light mode — Testimonials */
[data-theme="light"] .testi-featured-quote { color: rgba(12,9,0,0.88); }
[data-theme="light"] .testi-card-text { color: rgba(12,9,0,0.7); }
[data-theme="light"] .testi-attr-name { color: rgba(12,9,0,0.65); }
[data-theme="light"] .testi-attr-loc { color: rgba(12,9,0,0.4); }
[data-theme="light"] .testi-card-name { color: rgba(12,9,0,0.5); }

/* Light mode — Buttons */
[data-theme="light"] .btn-outline { color: var(--gold); border-color: rgba(212,175,55,0.35); }
[data-theme="light"] .btn-ghost { color: rgba(12,9,0,0.55); }
[data-theme="light"] .btn-ghost:hover { color: var(--gold); }

/* Light mode — Section wrapper */
[data-theme="light"] .sw--dark { background: rgba(232,226,210,0.72); }
[data-theme="light"] .sw--warm { background: rgba(240,235,224,0.72); }


/* ══════════════════
   RESPONSIVE
══════════════════ */

/* Tablet */
@media (max-width: 1200px) {
  .sw { padding: 72px 52px; }
  .footer-main { padding: 56px 52px 0; }
  .footer-payment { padding: 18px 52px; }
  .footer-bottom { padding: 20px 52px; }
  .site-header { padding: 0 32px; }
}

/* Tablet small */
@media (max-width: 1024px) {
  .sw { padding: 64px 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 40px 0; gap: 36px; }
  .footer-payment { padding: 18px 40px; }
  .footer-bottom { padding: 20px 40px; flex-direction: column; gap: 12px; text-align: center; }
  .sidenav-left, .sidenav-right { display: none; }
  .testi-cols { grid-template-columns: 1fr; border-top: none; padding-top: 0; }
  .testi-col { padding: 24px 0; border-left: none; border-top: 1px solid var(--gold-line); }
  .testi-col:first-child { border-top: none; padding-top: 0; }
  .testi-col:last-child { padding-bottom: 0; }
}

/* Mobile */
@media (max-width: 768px) {
  .site-header { padding: 0 16px; height: 60px; }
  .header-nav { display: none; }
  .header-cart-btn { display: none; }
  .header-mobile-btns { display: flex; }
  .sw { padding: 48px 20px; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 20px 0; gap: 28px; }
  .footer-payment { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom { padding: 18px 20px; }
  .footer-tagline { max-width: none; }
  .cookie-banner { padding: 18px 20px; }
  .cookie-text { font-size: 11px; }
  .sidenav-left, .sidenav-right { display: none; }
  .testi-header { grid-template-columns: 1fr; }
  .testi-agg { text-align: left; }
  .testi-row { grid-template-columns: 1fr; }
  .testi-card { padding: 28px 0; background: transparent; }
  .testi-card + .testi-card { border-top: 1px solid var(--gold-line); }
  .back-to-top { bottom: 20px; right: 16px; }
  .theme-toggle { bottom: 74px; right: 16px; }
}

@media (max-width: 480px) {
  .sw { padding: 40px 16px; }
  .btn-gold { padding: 14px 28px; font-size: 9px; }
  .btn-outline { padding: 12px 24px; font-size: 9px; }
}

/* ── MOBILE FIXES ── */

/* Cookie banner — Mobile fix */
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; padding: 16px; gap: 14px; }
  .cookie-text { min-width: 0; font-size: 11px; }
  .cookie-actions { flex-wrap: wrap; width: 100%; gap: 8px; }
  .cookie-btn {
    flex: 1 1 calc(50% - 4px); min-width: 0;
    padding: 10px 8px; font-size: 8px; letter-spacing: 0.12em;
    text-align: center; justify-content: center;
  }
  .cookie-btn--primary { flex: 1 1 100%; }
}

/* Cookie Settings Modal — Dimming Overlay */
.cookie-settings-modal.show {
  box-shadow: 0 0 0 200vmax rgba(0,0,0,0.65);
  animation: fadeIn 0.25s ease;
}

/* Issue 8: Subtle category separators on mobile */
@media (max-width: 1024px) {
  .cat-grid { gap: 2px; background: rgba(212,175,55,0.14); }
  .cat-col-right { gap: 2px; }
}
@media (max-width: 768px) {
  .cat-card--large { border-bottom: none; }
}

/* Issues 5 & 7: Mobile testimonials — transparent bg, no gold bleed */
@media (max-width: 1024px) {
  .testi-col { background: transparent; }
}
@media (max-width: 768px) {
  .sw--dark  { background: rgba(0,0,0,0.82); }
  .sw--warm  { background: rgba(5,4,0,0.88); }
  .testi-col { background: transparent !important; }
  .testi-card-attr { flex-wrap: wrap; gap: 6px 10px; }
  .testi-agg-num { font-size: 28px; }
  .testi-header { gap: 16px; }
}

/* Large screens */
@media (min-width: 1600px) {
  .sw { padding: 100px 100px; }
  .footer-main { padding: 72px 100px 0; }
  .footer-payment { padding: 18px 100px; }
  .footer-bottom { padding: 28px 100px; }
  .site-header { padding: 0 64px; }
}

/* Ultra-wide (2560px, 21:9, etc.) */
@media (min-width: 2000px) {
  .sw { padding: 110px max(160px, calc(50vw - 860px)); }
  .site-header { padding: 0 max(80px, calc(50vw - 900px)); }
  .footer-main { padding: 80px max(160px, calc(50vw - 860px)) 0; }
  .footer-payment, .footer-bottom { padding-left: max(160px, calc(50vw - 860px)); padding-right: max(160px, calc(50vw - 860px)); }
}
/* 2200px+ — volle Breite für 21:9 (2560×1080) */
@media (min-width: 2200px) {
  .sw { padding: 110px max(80px, calc(50vw - 1100px)); }
  .site-header { padding: 0 max(80px, calc(50vw - 1150px)); }
  .footer-main { padding: 80px max(80px, calc(50vw - 1100px)) 0; }
  .footer-payment, .footer-bottom { padding-left: max(80px, calc(50vw - 1100px)); padding-right: max(80px, calc(50vw - 1100px)); }
}

