﻿/* ============================================================
   Muenzdiscount – Haupt-Stylesheet
   Farben: Dunkelblau #1a2744 | Gold #c9a84c | Hellgrau #f5f6fa
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* === Reset & Basis === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1a2744;
  --blue-light: #243460;
  --blue-dark:  #111c33;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark:  #a8862f;
  --white:      #ffffff;
  --gray-50:    #f5f6fa;
  --gray-100:   #eaecf4;
  --gray-200:   #d0d3e0;
  --gray-500:   #6b7190;
  --gray-700:   #3a3e55;
  --green:      #2e7d52;
  --red:        #c0392b;
  --shadow-sm:  0 2px 8px rgba(26,39,68,.10);
  --shadow-md:  0 4px 20px rgba(26,39,68,.15);
  --shadow-lg:  0 8px 40px rgba(26,39,68,.20);
  --radius:     10px;
  --radius-sm:  6px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--gray-50);
  color: var(--gray-700);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--blue);
  line-height: 1.25;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; display: block; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
}
.btn-primary:hover { background: var(--gold-light); color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn-secondary {
  background: var(--blue);
  color: var(--white);
}
.btn-secondary:hover { background: var(--blue-light); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: #a93226; color: var(--white); }

.btn-sm { padding: 7px 16px; font-size: .82rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* === Navbar (zweizeilig) === */
/* Sticky-Wrapper für Navbar + Preisleiste (wird per JS auf fixed gesetzt) */
.sticky-header {
  position: relative;
  z-index: 1000;
}

.navbar {
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* Zeile 1: Weißer Header mit Logo */
.nav-top {
  background: #ffffff;
  border-bottom: 2px solid var(--gold);
}
.nav-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}

/* Suchleiste in der Navbar */
.nav-search {
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 22px;
  padding: 0 6px 0 14px;
  flex: 1;
  max-width: 340px;
  min-width: 160px;
  transition: border-color var(--transition);
}
.nav-search:focus-within { border-color: var(--gold); }
.nav-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--blue);
  font-size: .88rem;
  padding: 7px 0;
  font-family: 'Inter', sans-serif;
  min-width: 0;
}
.nav-search-input::placeholder { color: var(--gray-500); }
.nav-search-btn {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color var(--transition);
}
.nav-search-btn:hover { color: var(--gold-dark); }
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 60px;
  display: block;
}

/* Zeile 2: Dunkle Menüleiste */
.nav-bottom {
  background: var(--blue);
}
.nav-menu {
  display: flex;
  align-items: stretch;
  list-style: none;
  height: 42px;
  gap: 0;
}
.nav-item {
  position: static;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 42px;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(201,168,76,.2);
  color: var(--gold-light);
}
.nav-link svg { width: 13px; height: 13px; transition: transform var(--transition); flex-shrink: 0; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }
.nav-highlight { color: var(--gold-light) !important; font-weight: 600; }

/* Mega-Dropdown */
.nav-mega-dropdown {
  display: none;
  position: absolute;
  top: 122px; /* nav-top (80px) + border (2px) + nav-bottom (42px) - etwas Luft */
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  z-index: 500;
  padding: 20px 0;
}
.nav-item:hover .nav-mega-dropdown { display: flex; }
.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
  width: 100%;
}
.mega-col {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--gray-100);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; }
.mega-heading {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-dark);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 8px;
}
.mega-col a {
  display: block;
  padding: 5px 0;
  color: var(--gray-700);
  font-size: .875rem;
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
}
.mega-col a:hover { color: var(--blue); padding-left: 6px; }

/* Aktionen (Warenkorb, Login) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--blue);
  font-size: 1.2rem;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-cart:hover { background: var(--gold); color: var(--white); }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--red);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.nav-login-btn {
  background: var(--gold);
  color: var(--blue-dark);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-login-btn:hover { background: var(--gold); color: var(--blue-dark); border-color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* === Price Ticker === */
.price-ticker {
  background: var(--blue-dark);
  padding: 3px 0;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
}

.ticker-metal {
  color: var(--gold);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ticker-price {
  color: var(--white);
  font-weight: 600;
  font-size: .78rem;
}

/* "Preise: alle 5 Min." ganz rechts in der Menüleiste */
.nav-price-note {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  pointer-events: none;
}

.ticker-change {
  font-size: .78rem;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}
.ticker-change.up { background: rgba(46,125,82,.3); color: #5ddb95; }
.ticker-change.down { background: rgba(192,57,43,.3); color: #f07070; }

.ticker-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .5;
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #2a3d6e 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,.2);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,.4);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
}
.trust-item-icon { font-size: 1.1rem; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.price-card:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }

.price-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.price-card-icon.gold { background: rgba(201,168,76,.2); }
.price-card-icon.silver { background: rgba(200,200,210,.15); }
.price-card-icon.platinum { background: rgba(180,190,220,.15); }
.price-card-icon.palladium { background: rgba(160,200,180,.15); }

.price-card-info { flex: 1; }
.price-card-metal { color: rgba(255,255,255,.6); font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; }
.price-card-value { color: var(--white); font-size: 1.25rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.price-card-gram { color: rgba(255,255,255,.5); font-size: .8rem; }

/* === Hero Slider === */
.hero-slider { padding: 0; overflow: hidden; }
.hero-slider::before,
.hero-slider::after { z-index: 0; }

.slider-track {
  display: flex;
  width: 400%;
  align-items: stretch;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.slide {
  width: 25%;
  flex-shrink: 0;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

.slide:first-child { padding: 80px 0 60px; }
.slide:first-child > .container { width: 100%; }

.slide-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,12,35,.72) 0%, rgba(20,35,80,.50) 100%);
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide-overlay > .container { width: 100%; }

.slide-caption {
  text-align: center;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px;
}

.slide-caption .slide-tag {
  display: inline-block;
  background: rgba(201,168,76,.2);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,.4);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.slide-caption h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.slide-caption h2 span { color: var(--gold); }

.slide-caption p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin: 0 auto 28px;
  line-height: 1.7;
  max-width: 560px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  padding: 0;
  line-height: 1;
}

.slider-btn:hover { background: rgba(255,255,255,.3); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 30;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 2px solid rgba(255,255,255,.55);
  cursor: pointer;
  padding: 0;
  transition: background .25s, border-color .25s, transform .25s;
}

.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* === Section === */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }

.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.section-header p { color: var(--gray-500); font-size: 1rem; max-width: 540px; margin: 0 auto; }

.section-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* === Category Cards === */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
}
.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.category-icon.gold { background: linear-gradient(135deg, #f5e070, #c9a84c); }
.category-icon.silver { background: linear-gradient(135deg, #e8eaf0, #9ba5c0); }
.category-icon.platinum { background: linear-gradient(135deg, #dde2f0, #8595b8); }
.category-icon.palladium { background: linear-gradient(135deg, #d0edd8, #6aaa7e); }
.category-icon.collector { background: linear-gradient(135deg, #fde8d0, #d4853a); }

.category-card h3 { font-size: 1rem; color: var(--blue); margin-bottom: 4px; }
.category-card p { font-size: .82rem; color: var(--gray-500); }

/* === Product Grid === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 320px));
  gap: 24px;
  justify-content: start;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-100);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.product-img {
  height: 220px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 12px;
  box-sizing: border-box;
}

.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
}
.product-img-placeholder-icon { font-size: 3rem; }
.product-img-placeholder-text { font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

.product-img img { width: 100%; height: 100%; object-fit: contain; }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }

.product-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.product-tag {
  font-size: .72rem;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 4px;
  line-height: 1.35;
}

.product-weight {
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.product-price-wrap { margin-top: auto; }

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Playfair Display', serif;
}

.product-price-sub {
  font-size: .75rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.product-actions { display: flex; gap: 8px; }

.btn-cart {
  flex: 1;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-cart:hover { background: var(--gold); color: var(--blue-dark); }

.btn-detail {
  background: var(--gray-100);
  color: var(--gray-700);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  transition: all var(--transition);
  font-size: .88rem;
  text-decoration: none;
  display: flex; align-items: center;
}
.btn-detail:hover { background: var(--gray-200); color: var(--blue); }

/* === Shop Filters === */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }

.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 88px;
}

.filter-section { margin-bottom: 24px; }
.filter-section:last-child { margin-bottom: 0; }

.filter-title {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--blue);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: .9rem;
  color: var(--gray-700);
}
.filter-option:hover { background: var(--gray-50); color: var(--blue); }
.filter-option.active { background: rgba(201,168,76,.12); color: var(--gold-dark); font-weight: 600; }

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] { accent-color: var(--gold); }

/* === Product Detail === */
.product-detail { padding: 48px 0; }

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

.product-detail-img {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}

.product-detail-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }

.product-detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.detail-badge {
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--gray-700);
}
.detail-badge.gold { background: rgba(201,168,76,.15); color: var(--gold-dark); }

.product-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Playfair Display', serif;
  margin-bottom: 4px;
}

.product-detail-per-gram { font-size: .9rem; color: var(--gray-500); margin-bottom: 24px; }

.product-specs {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--gray-500); }
.spec-value { color: var(--blue); font-weight: 600; }

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 42px; height: 42px;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--blue);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--gold); color: var(--white); }

.qty-input {
  width: 60px; height: 42px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--white);
}
.qty-input:focus { outline: none; }

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

.cart-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.cart-table-header {
  display: grid;
  grid-template-columns: 1fr 120px 120px 80px;
  gap: 16px;
  padding: 16px 24px;
  background: var(--gray-50);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-500);
  border-bottom: 2px solid var(--gray-100);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr 120px 120px 80px;
  gap: 16px;
  padding: 20px 24px;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.cart-item:hover { background: var(--gray-50); }
.cart-item:last-child { border-bottom: none; }

.cart-item-info { display: flex; gap: 14px; align-items: center; }

.cart-item-img {
  width: 60px; height: 60px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cart-item-name { font-weight: 600; color: var(--blue); font-size: .95rem; }
.cart-item-meta { font-size: .8rem; color: var(--gray-500); margin-top: 2px; }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-qty-btn {
  width: 28px; height: 28px;
  background: var(--gray-100);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cart-qty-btn:hover { background: var(--gold); color: var(--white); }
.cart-qty-input {
  width: 40px; height: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
}
.cart-qty-input:focus { outline: 2px solid var(--gold); border-color: transparent; }

.cart-item-price { font-weight: 700; color: var(--blue); }
.cart-item-total { font-weight: 700; color: var(--blue); }

.cart-remove {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color var(--transition);
  padding: 4px;
}
.cart-remove:hover { color: var(--red); }

.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  position: sticky;
  top: 88px;
}

.cart-summary h3 { margin-bottom: 20px; font-size: 1.1rem; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-100);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total { font-size: 1.1rem; font-weight: 700; color: var(--blue); padding: 16px 0 0; }

.cart-notice {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: .82rem;
  color: var(--gold-dark);
  margin: 16px 0;
}

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

.checkout-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.form-section { margin-bottom: 28px; }
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}

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

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}
.form-label .required { color: var(--red); margin-left: 3px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--gray-700);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-input.error { border-color: var(--red); }

.form-textarea { resize: vertical; min-height: 80px; }

.payment-options { display: flex; flex-direction: column; gap: 12px; }

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.payment-option:hover { border-color: var(--gold-light); }
.payment-option.selected { border-color: var(--gold); background: rgba(201,168,76,.06); }
.payment-option input[type="radio"] { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }

.payment-option-icon { font-size: 1.5rem; }
.payment-option-title { font-weight: 600; color: var(--blue); font-size: .95rem; }
.payment-option-desc { font-size: .82rem; color: var(--gray-500); margin-top: 2px; }

/* === Thank You === */
.thankyou-page { padding: 80px 0; text-align: center; }
.thankyou-icon { font-size: 4rem; margin-bottom: 20px; }
.thankyou-page h1 { font-size: 2rem; margin-bottom: 12px; }
.thankyou-page p { color: var(--gray-500); margin-bottom: 8px; max-width: 500px; margin-left: auto; margin-right: auto; }
.order-number {
  display: inline-block;
  background: var(--blue);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  padding: 10px 24px;
  border-radius: var(--radius);
  margin: 20px 0;
  letter-spacing: 1px;
}

/* === Auth Pages === */
.auth-page { min-height: 80vh; display: flex; align-items: center; padding: 40px 0; }

.auth-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

.auth-logo {
  text-align: center;
  margin-bottom: 28px;
}

.auth-logo h2 { font-size: 1.5rem; }
.auth-logo p { color: var(--gray-500); font-size: .9rem; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--gray-500);
  font-size: .85rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: .9rem;
  color: var(--gray-500);
}

/* === Alert === */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success { background: rgba(46,125,82,.1); color: #1a5c38; border: 1px solid rgba(46,125,82,.25); }
.alert-error { background: rgba(192,57,43,.1); color: #922b21; border: 1px solid rgba(192,57,43,.25); }
.alert-info { background: rgba(26,39,68,.08); color: var(--blue); border: 1px solid rgba(26,39,68,.2); }

/* === Konto === */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 40px 0; }

.account-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
  margin-bottom: 4px;
}
.account-nav a:hover { background: var(--gray-50); color: var(--blue); }
.account-nav a.active { background: rgba(201,168,76,.1); color: var(--gold-dark); font-weight: 600; }

.profile-section {
  border-top: 2px solid var(--gray-100);
  margin-top: 24px;
  padding-top: 20px;
}
.profile-section:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.profile-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.orders-table th {
  background: var(--gray-50);
  padding: 12px 16px;
  text-align: left;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-500);
  border-bottom: 2px solid var(--gray-100);
}
.orders-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); }
.orders-table tr:last-child td { border-bottom: none; }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.status-badge.pending { background: rgba(230,180,50,.15); color: #9a6f10; }
.status-badge.paid { background: rgba(46,125,82,.15); color: #1a5c38; }
.status-badge.shipped { background: rgba(26,39,68,.12); color: var(--blue); }
.status-badge.cancelled { background: rgba(192,57,43,.12); color: var(--red); }

/* === Admin === */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }

.admin-sidebar {
  background: var(--blue-dark);
  padding: 28px 0;
}

.admin-sidebar-logo {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}
.admin-sidebar-logo span { color: var(--gold); }

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.admin-nav a.active { background: rgba(201,168,76,.12); color: var(--gold-light); border-left-color: var(--gold); }

.admin-main { background: var(--gray-50); padding: 32px; }

.admin-header { margin-bottom: 28px; }
.admin-header h1 { font-size: 1.6rem; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
.stat-card-value { font-size: 1.8rem; font-weight: 700; color: var(--blue); font-family: 'Playfair Display', serif; }
.stat-card-label { font-size: .82rem; color: var(--gray-500); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }

.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 2px solid var(--gray-100);
}
.admin-card-header h3 { font-size: 1.05rem; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.admin-table th {
  background: var(--gray-50);
  padding: 11px 16px;
  text-align: left;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-500);
  border-bottom: 2px solid var(--gray-100);
}
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }

.admin-actions { display: flex; gap: 6px; }

/* === Modal === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(3px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(-20px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: 4px;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--red); }

/* === Toast Notifications === */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.toast {
  background: var(--blue-dark);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInToast .3s ease forwards;
  border-left: 4px solid var(--gold);
}
.toast.success { border-left-color: #2e7d52; }
.toast.error { border-left-color: var(--red); }

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* === Breadcrumb === */
.breadcrumb {
  padding: 14px 0;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gray-200); }
.breadcrumb-current { color: var(--blue); font-weight: 600; }

/* === Page Header === */
.page-header {
  background: var(--blue);
  padding: 36px 0;
  margin-bottom: 40px;
}
.page-header h1 { color: var(--white); font-size: clamp(1.4rem, 3vw, 1.9rem); }
.page-header p { color: rgba(255,255,255,.65); margin-top: 6px; font-size: .95rem; }

/* === Footer === */
footer {
  background: var(--blue-dark);
  padding: 56px 0 0;
  margin-top: auto;
}

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

.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.footer-logo-icon {
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.footer-desc { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }

.footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-icon {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.1);
}

.footer-col h4 {
  color: var(--gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.45); font-size: .82rem; }
.footer-bottom a:hover { color: var(--gold-light); }

/* === Utility === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.loading { opacity: .5; pointer-events: none; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}
.empty-state-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { color: var(--blue); margin-bottom: 8px; }

/* === Responsive === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 320px)); }
}

/* Mobile filter button – nur auf Mobilgeräten sichtbar */
.mobile-filter-btn {
  display: none;
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mobile-filter-btn .filter-arrow { transition: transform .25s; }
.mobile-filter-btn.open .filter-arrow { transform: rotate(180deg); }
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 490;
}
.filter-overlay.active { display: block; }

@media (max-width: 768px) {
  /* Navigation */
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--blue-dark);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 999;
  }
  .hamburger { display: flex; }
  .nav-search { display: none; }
  .nav-bottom { display: none; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.06);
    margin-top: 4px;
    border: none;
    border-radius: var(--radius-sm);
  }
  .nav-dropdown a { color: rgba(255,255,255,.7); border-bottom-color: rgba(255,255,255,.05); }
  .nav-dropdown a:hover { background: rgba(255,255,255,.06); color: var(--gold-light); }

  /* Hero */
  .hero { padding: 40px 0 32px; }
  .hero-slider { padding: 0; }
  .hero-slider .slide:first-child { padding: 40px 0 32px; }
  .slider-btn { width: 36px; height: 36px; font-size: 1.1rem; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .section { padding: 32px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Cart */
  .cart-table-header { display: none; }
  .cart-item { grid-template-columns: 1fr; gap: 8px; }

  /* Forms */
  .account-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row.cols-3 { grid-template-columns: 1fr; }

  /* Auth / Registrierung */
  .auth-card { padding: 24px 16px; }
  .auth-page {
    align-items: flex-start;
    min-height: unset;
    padding: 20px 0 120px; /* extra Platz für Tastatur */
  }

  /* Admin */
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }

  /* Ticker */
  .ticker-inner { gap: 12px; }
  .ticker-dot { display: none; }
  .price-ticker { overflow-x: auto; }

  /* Shop: Filter-Sidebar als aufklappbares Panel */
  .mobile-filter-btn { display: flex; }
  .filter-sidebar {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 500;
    overflow-y: auto;
    padding: 20px;
  }
  .filter-sidebar.mobile-open { display: block; }
  .filter-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
  }
  .filter-sidebar-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--gray-500);
    padding: 4px;
    line-height: 1;
  }

  /* Produkt-Grid: 2 Spalten auf Tablet */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: unset;
  }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .slide-caption h2 { font-size: 1.4rem; }
  .slide-caption p { font-size: .88rem; }
  .slider-btn { display: none; }
  .container { padding: 0 12px; }
  .product-card .product-actions { flex-direction: column; }
  .btn-cart { width: 100%; justify-content: center; }
  .auth-card { padding: 20px 12px; }
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp .5s ease forwards; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.loading-pulse { animation: pulse 1.5s ease-in-out infinite; }

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Price update flash */
@keyframes priceFlash {
  0% { background: transparent; }
  30% { background: rgba(201,168,76,.25); }
  100% { background: transparent; }
}
.price-updated { animation: priceFlash .8s ease; }
