/* =====================================================================
   Carl Thomass — Hofjuwelier & Goldschmiede seit 1848
   Gemeinsames Designsystem für alle Seiten
   Palette: Porzellan / Papier / Tinte / Gold / Wittelsbach-Blau
   Schriften: Italiana (Display) · Cormorant (Zitate) · Jost (Grundschrift)
   ===================================================================== */

:root {
  --porzellan: #F8F6F1;
  --papier: #FDFCF8;
  --tinte: #1E2A44;
  --tinte-tief: #141E33;
  --gold: #A5843C;
  --gold-hell: #C8A45E;
  --linie: rgba(165, 132, 60, 0.35);
  --linie-zart: rgba(30, 42, 68, 0.12);
  --wittelsbach: #6C8CBF;
  --smaragd: #2E7D5B;
  --rubin: #A03A4A;
  --perle: #EDE6DA;
  --text-soft: rgba(30, 42, 68, 0.76);
  --hell: #EFECE3;
  --hell-soft: rgba(239, 236, 227, 0.72);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Futura", sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--tinte);
  background: var(--porzellan);
  -webkit-font-smoothing: antialiased;
}

/* Feines Papierkorn über der ganzen Seite */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

::selection { background: var(--gold-hell); color: var(--tinte-tief); }

a { color: inherit; }
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

img { max-width: 100%; height: auto; }

.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin-top: 0.9rem;
}

.section-intro {
  max-width: 34rem;
  margin-top: 1.1rem;
  color: var(--text-soft);
}

.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.band-dark { background: var(--tinte-tief); color: var(--hell); }
.band-dark .eyebrow { color: var(--gold-hell); }
.band-dark .section-title { color: var(--hell); }
.band-dark .section-intro { color: var(--hell-soft); }

.band-paper { background: var(--papier); border-block: 1px solid var(--linie-zart); }

/* ---------- Navigation ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 241, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linie);
}

.topline {
  background: var(--tinte-tief);
  color: var(--hell-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding-block: 0.45rem;
}
.topline strong { color: var(--gold-hell); font-weight: 500; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.95rem;
}

.wordmark {
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.wordmark .logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  mix-blend-mode: multiply;
}
.wordmark .logo-invert {
  filter: invert(1);
  mix-blend-mode: screen;
}
.wordmark strong {
  display: block;
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.wordmark .wordmark-text { display: block; }
.wordmark .wordmark-text > span {
  display: block;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  text-decoration: none;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-block: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

/* Dropdowns */
.has-sub > a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 0.45rem;
  vertical-align: middle;
}
.submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: -1.2rem;
  min-width: 15rem;
  background: var(--papier);
  border: 1px solid var(--linie);
  box-shadow: 0 18px 40px rgba(20, 30, 51, 0.12);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu a {
  display: block;
  padding: 0.55rem 1.2rem;
  border-bottom: none;
  font-size: 0.74rem;
}
.submenu a:hover { background: var(--porzellan); }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: 1px solid var(--linie);
  border-radius: 2px;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.cart-link:hover { color: var(--gold); border-color: var(--gold); }
.cart-link svg { flex: 0 0 auto; width: 15px; height: 15px; }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding-inline: 0.25rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--papier);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--linie);
  border-radius: 2px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  color: var(--tinte);
}
.nav-toggle svg { display: block; width: 20px; height: 14px; }

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--porzellan);
    border-bottom: 1px solid var(--linie);
    padding: 0.5rem clamp(1.25rem, 5vw, 2.5rem) 1rem;
    display: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { display: block; padding-block: 0.8rem; white-space: normal; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 1px solid var(--linie);
    margin: 0 0 0.5rem 0.9rem;
    padding: 0;
    min-width: 0;
    background: transparent;
  }
  .submenu a { padding: 0.5rem 1rem; }
}

/* ---------- Buttons & Links ---------- */
.btn-gold {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #B08D42, #C8A45E);
  color: var(--tinte-tief) !important;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(165, 132, 60, 0.3);
}

.btn-line {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: var(--tinte);
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--linie);
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.btn-line:hover { color: var(--gold); border-color: var(--gold); }
.band-dark .btn-line { color: var(--hell); border-color: rgba(200, 164, 94, 0.5); }
.band-dark .btn-line:hover { color: var(--gold-hell); border-color: var(--gold-hell); }

.link-quiet {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--linie);
  padding-bottom: 0.25rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.link-quiet:hover { color: var(--gold); border-bottom-color: var(--gold); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.2rem;
}

/* ---------- Seitenkopf (Unterseiten) ---------- */
.page-head {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.2rem, 4vw, 3.2rem);
  border-bottom: 1px solid var(--linie-zart);
  position: relative;
  overflow: hidden;
}
.page-head h1 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-top: 0.9rem;
}
.page-head .lede {
  max-width: 38rem;
  margin-top: 1.2rem;
  color: var(--text-soft);
}
.page-head .lede-serif {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 1.25rem;
}

/* CTAs im Seitenkopf und Startseiten-Hero: Annotations-Stil statt Buttons */
.page-head .hero-actions,
.hero .hero-actions { column-gap: 1.6rem; row-gap: 1rem; margin-top: 2.1rem; }
.page-head .hero-actions a,
.hero .hero-actions a,
.page-head .hero-actions button,
.hero .hero-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0.2rem 0;
  color: var(--tinte) !important;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
  cursor: pointer;
}
.page-head .hero-actions a::before,
.hero .hero-actions a::before,
.page-head .hero-actions button::before,
.hero .hero-actions button::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.page-head .hero-actions a::after,
.hero .hero-actions a::after,
.page-head .hero-actions button::after,
.hero .hero-actions button::after {
  content: "→";
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.page-head .hero-actions a:hover,
.hero .hero-actions a:hover,
.page-head .hero-actions button:hover,
.hero .hero-actions button:hover {
  transform: none;
  box-shadow: none;
  color: var(--gold) !important;
}
.page-head .hero-actions a:hover::before,
.hero .hero-actions a:hover::before,
.page-head .hero-actions button:hover::before,
.hero .hero-actions button:hover::before { width: 3.6rem; }
.page-head .hero-actions a:hover::after,
.hero .hero-actions a:hover::after,
.page-head .hero-actions button:hover::after,
.hero .hero-actions button:hover::after { transform: translateX(4px); }

/* Dezente Annotations-Links auch außerhalb des Seitenkopfs */
.quiet-actions { gap: 2rem; }
.quiet-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.2rem 0;
  text-decoration: none;
  color: var(--tinte);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.quiet-actions a::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.quiet-actions a::after {
  content: "→";
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.quiet-actions a:hover { color: var(--gold); }
.quiet-actions a:hover::before { width: 3.6rem; }
.quiet-actions a:hover::after { transform: translateX(4px); }

/* Aquarell-Lavur als Hintergrundakzent */
.wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.16;
  pointer-events: none;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-block: 1.1rem;
}
.breadcrumb a { text-decoration: none; color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin-inline: 0.5rem; color: var(--linie); }

/* ---------- Karten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.card {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 2px;
  padding: 2.2rem 1.8rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30, 42, 68, 0.08);
}
.card svg { display: block; margin-bottom: 1.3rem; }
.card h3 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}
.card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-top: 0.6rem;
}
.card .card-more {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.icon { fill: none; stroke: var(--tinte); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.icon-gold { fill: var(--gold); stroke: none; }

@media (max-width: 960px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Zweispaltiges Inhaltslayout ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
@media (max-width: 840px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
}

.prose { max-width: 44rem; }
.prose h2 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  margin-top: 2.4rem;
}
.prose h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2rem;
}
.prose p { margin-top: 1rem; color: var(--text-soft); }
.prose ul, .prose ol { margin: 1rem 0 0 1.3rem; color: var(--text-soft); }
.prose li { margin-top: 0.4rem; }
.prose li::marker { color: var(--gold); }
.prose a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--linie); }
.prose a:hover { border-bottom-color: var(--gold); }
.prose a.btn-gold, .prose a.btn-line, .prose a.link-quiet { border-bottom: none; }
.prose a.btn-line { color: var(--tinte); }
.prose a.link-quiet { color: var(--tinte); border-bottom: 1px solid var(--linie); }
.prose strong { font-weight: 500; color: var(--tinte); }
.prose blockquote {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin-top: 1.6rem;
}

/* Zeichnungs-Stile (Signatur der Seite) */
.ink {
  fill: none;
  stroke: var(--tinte);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ink-fine { stroke-width: 1; }
.ink-band { stroke-width: 2; }
.ann-line { stroke: var(--gold); stroke-width: 1; fill: none; }
.ann-dot { fill: var(--gold); }
.ann-text {
  font-family: "Jost", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.6px;
  fill: rgba(30, 42, 68, 0.75);
}
.spark { fill: var(--gold-hell); }
.band-dark .ink { stroke: var(--hell); }
.band-dark .ann-text { fill: rgba(239, 236, 227, 0.8); }

/* ---------- Zitat ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  max-width: 46rem;
  margin-inline: auto;
}
.quote-band .rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.quote-band cite {
  display: block;
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.8rem;
}

/* ---------- Shop: Produktgrid ---------- */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--linie-zart);
}
.result-count { font-size: 0.85rem; color: var(--text-soft); }
.orderby {
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--tinte);
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 2px;
  padding: 0.6rem 2.2rem 0.6rem 0.9rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23A5843C' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.2rem;
}
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30, 42, 68, 0.09);
}
.product-media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 62% 30%, rgba(200, 164, 94, 0.10), transparent 55%),
    var(--papier);
  border-bottom: 1px solid var(--linie-zart);
  padding: 1.6rem;
}
.product-media svg { width: 78%; height: auto; transition: transform 0.4s ease; }
.product-card:hover .product-media svg { transform: scale(1.04) rotate(-1deg); }
.product-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-cat {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-title {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-top: 0.35rem;
  color: var(--tinte);
}
.product-price {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--tinte);
}
.product-price .vat {
  display: block;
  font-size: 0.7rem;
  color: var(--text-soft);
}

/* Kategorie-Kacheln im Shop */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}
@media (max-width: 960px) { .cat-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cat-tiles { grid-template-columns: 1fr; } }
.cat-tile {
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--tinte-tief);
  color: var(--hell);
  border-radius: 2px;
  overflow: hidden;
  padding: 2.1rem 1.8rem;
  min-height: 11rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20, 30, 51, 0.28); }
.cat-tile h3 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  position: relative;
}
.cat-tile .count {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-hell);
  position: relative;
}
.cat-tile svg { position: absolute; right: -8%; bottom: -14%; width: 55%; opacity: 0.4; }
.cat-tile .ink { stroke: var(--gold-hell); }

/* ---------- Produkt-Detailseite ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 1.5rem;
}
@media (max-width: 840px) { .product-detail { grid-template-columns: 1fr; } }

.product-stage {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 2px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 2.5rem;
  position: sticky;
  top: 7.5rem;
}
@media (max-width: 840px) { .product-stage { position: static; } }
.product-stage svg { width: 88%; height: auto; }

.summary h1 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.12;
}
.summary .price {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 1.1rem;
}
.summary .vat-note { font-size: 0.78rem; color: var(--text-soft); }
.summary .short-desc { margin-top: 1.3rem; color: var(--text-soft); max-width: 32rem; }

.add-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.9rem;
  margin-top: 1.9rem;
}
.qty {
  width: 4.6rem;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  text-align: center;
  border: 1px solid var(--linie);
  border-radius: 2px;
  background: var(--papier);
  color: var(--tinte);
  padding: 0.6rem 0.4rem;
}

.product-meta {
  margin-top: 1.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--linie-zart);
  font-size: 0.85rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.4rem;
}
.product-meta a { color: var(--gold); text-decoration: none; }
.product-meta a:hover { text-decoration: underline; }
.product-meta .label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tinte);
  margin-right: 0.5rem;
}

/* Tabs (Beschreibung / Zusätzliche Informationen) */
.tabs { margin-top: clamp(3rem, 6vw, 4.5rem); }
.tab-list {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--linie);
  list-style: none;
  flex-wrap: wrap;
}
.tab-list button {
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-soft);
  padding: 0.9rem 1.3rem;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tab-list button[aria-selected="true"] { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { padding-top: 1.8rem; }
.tab-panel[hidden] { display: none; }

table.attributes { border-collapse: collapse; width: 100%; max-width: 36rem; }
table.attributes th, table.attributes td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--linie-zart);
  font-size: 0.92rem;
}
table.attributes th {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  width: 40%;
}
table.attributes td { color: var(--text-soft); }

.related h2 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

/* ---------- Warenkorb ---------- */
.cart-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.cart-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--linie);
  padding: 0.8rem 0.6rem;
}
.cart-table td {
  padding: 1.1rem 0.6rem;
  border-bottom: 1px solid var(--linie-zart);
  font-size: 0.95rem;
  vertical-align: middle;
}
.cart-table .item-name { font-family: "Marcellus", "Times New Roman", serif; font-size: 1.15rem; text-decoration: none; }
.cart-table .item-name:hover { color: var(--gold); }
.cart-thumb {
  width: 64px;
  height: 64px;
  border: 1px solid var(--linie);
  border-radius: 2px;
  background: var(--papier);
  display: grid;
  place-items: center;
  padding: 6px;
}
.remove-item {
  background: none;
  border: 1px solid var(--linie);
  border-radius: 50%;
  width: 1.9rem;
  height: 1.9rem;
  cursor: pointer;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.remove-item:hover { color: var(--rubin); border-color: var(--rubin); }

.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 1rem;
}
@media (max-width: 840px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-totals {
  background: var(--tinte-tief);
  color: var(--hell);
  border-radius: 2px;
  padding: 2.2rem 2rem;
  position: sticky;
  top: 7.5rem;
}
.cart-totals h2 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.cart-totals table { width: 100%; border-collapse: collapse; margin-top: 1.2rem; }
.cart-totals td {
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(239, 236, 227, 0.14);
  font-size: 0.95rem;
}
.cart-totals td:last-child { text-align: right; color: var(--gold-hell); }
.cart-totals .note { font-size: 0.78rem; color: var(--hell-soft); margin-top: 1.1rem; }
.cart-totals .btn-gold { display: block; text-align: center; margin-top: 1.5rem; }

.empty-cart {
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.empty-cart p { color: var(--text-soft); margin-top: 0.8rem; }

/* Hinweis nach "In den Warenkorb" */
.woo-notice {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--papier);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: 2px;
  padding: 1rem 1.3rem;
  margin-top: 1.6rem;
  font-size: 0.92rem;
}
.woo-notice.show { display: flex; }

/* Toast unten rechts */
.toast {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 70;
  background: var(--tinte-tief);
  color: var(--hell);
  border-left: 3px solid var(--gold-hell);
  border-radius: 2px;
  padding: 0.95rem 1.3rem;
  font-size: 0.88rem;
  box-shadow: 0 18px 40px rgba(20, 30, 51, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  max-width: min(21rem, calc(100vw - 2.8rem));
}
.toast.show { opacity: 1; transform: none; }

/* ---------- Formulare ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.8rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--tinte);
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 2px;
  padding: 0.8rem 0.9rem;
}
.field textarea { min-height: 9rem; resize: vertical; }

/* ---------- Öffnungszeiten-Box ---------- */
.hours {
  background: var(--tinte-tief);
  color: var(--hell);
  border-radius: 2px;
  padding: 2.4rem 2.2rem;
}
.hours h3 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.hours table { width: 100%; border-collapse: collapse; margin-top: 1.4rem; }
.hours td {
  padding-block: 0.7rem;
  border-bottom: 1px solid rgba(239, 236, 227, 0.14);
  font-size: 0.95rem;
}
.hours td:last-child { text-align: right; color: var(--gold-hell); }
.hours tr:last-child td { border-bottom: none; }
.hours .note { font-size: 0.82rem; color: var(--hell-soft); margin-top: 1.2rem; }

.visit-details { margin-top: 2rem; display: grid; gap: 1.1rem; }
.visit-details a { text-decoration: none; border-bottom: 1px solid var(--linie); }
.visit-details a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.visit-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.15rem;
}

/* ---------- Blog / News ---------- */
.post-list { display: grid; gap: 1.4rem; margin-top: 2.6rem; }
.post-item {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 1.6rem;
  align-items: baseline;
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 2px;
  padding: 1.7rem 1.8rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-item:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(30, 42, 68, 0.08); }
.post-date {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-item h3 { font-family: "Marcellus", "Times New Roman", serif; font-weight: 400; font-size: 1.4rem; }
.post-item p { font-size: 0.92rem; color: var(--text-soft); margin-top: 0.4rem; }
.post-item .arrow { color: var(--gold); font-size: 1.2rem; }
@media (max-width: 680px) {
  .post-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .post-item .arrow { display: none; }
}

/* ---------- Akkordeon (FAQ, AGB) ---------- */
details.fold {
  border-top: 1px solid var(--linie-zart);
  padding-block: 0.4rem;
}
details.fold:last-of-type { border-bottom: 1px solid var(--linie-zart); }
details.fold summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
details.fold summary::-webkit-details-marker { display: none; }
details.fold summary::after { content: "+"; color: var(--gold); font-size: 1.2rem; }
details.fold[open] summary::after { content: "–"; }
details.fold .fold-body { padding-bottom: 1.3rem; color: var(--text-soft); font-size: 0.95rem; }
details.fold .fold-body p + p { margin-top: 0.7rem; }

/* ---------- Steckbrief / Edelstein-Tabellen ---------- */
.stone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}
@media (max-width: 960px) { .stone-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stone-grid { grid-template-columns: 1fr; } }
.stone {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 2px;
  padding: 1.9rem 1.7rem;
}
.stone .gem-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  border: 1px solid var(--linie);
  background: radial-gradient(circle at 34% 30%, rgba(255,255,255,0.85), transparent 42%), var(--stone-color, var(--wittelsbach));
}
.stone h3 { font-family: "Marcellus", "Times New Roman", serif; font-weight: 400; font-size: 1.35rem; }
.stone .stone-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}
.stone p { font-size: 0.9rem; color: var(--text-soft); margin-top: 0.7rem; }

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.timeline article {
  border-top: 1px solid rgba(200, 164, 94, 0.4);
  padding-top: 1.3rem;
  position: relative;
}
.timeline article::before {
  content: "";
  position: absolute;
  top: -3.5px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-hell);
}
.timeline .year {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 2.1rem;
  color: var(--gold-hell);
  line-height: 1;
}
.timeline h3 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.7rem;
}
.timeline p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--hell-soft);
  margin-top: 0.5rem;
}
@media (max-width: 960px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- Schritte ---------- */
.steps { list-style: none; margin-top: 0.4rem; }
.steps li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1rem;
  align-items: baseline;
  border-top: 1px solid var(--linie);
  padding-block: 1.35rem;
}
.steps li:last-child { border-bottom: 1px solid var(--linie); }
.steps .numeral {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 1.55rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.steps h3 {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.steps p { font-size: 0.92rem; color: var(--text-soft); margin-top: 0.35rem; }
.band-dark .steps h3 { color: var(--hell); }
.band-dark .steps p { color: var(--hell-soft); }
.band-dark .steps .numeral { color: var(--gold-hell); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.person {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 2px;
  padding: 2.4rem 2rem;
}
.monogram {
  width: 74px;
  height: 74px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.4rem;
}
.person h3 { font-family: "Marcellus", "Times New Roman", serif; font-weight: 400; font-size: 1.5rem; }
.person .role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}
.person p { font-size: 0.95rem; color: var(--text-soft); margin-top: 1rem; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- CTA-Band ---------- */
.cta-band { text-align: center; }
.cta-band .section-intro { margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--tinte-tief);
  color: var(--hell-soft);
  padding-block: 3.8rem 2.5rem;
  font-size: 0.88rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 960px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }

footer .wordmark strong { color: var(--hell); font-size: 1.2rem; }
.footer-about { margin-top: 1.1rem; font-size: 0.85rem; line-height: 1.65; max-width: 20rem; }

.footer-h {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-hell);
  margin-bottom: 1rem;
}
.footer-list { list-style: none; display: grid; gap: 0.55rem; }
.footer-list a { text-decoration: none; font-size: 0.85rem; transition: color 0.2s ease; }
.footer-list a:hover { color: var(--gold-hell); }

.footer-contact p { margin-bottom: 0.55rem; }
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: var(--gold-hell); }

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.pay-chip {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(239, 236, 227, 0.25);
  border-radius: 2px;
  padding: 0.25rem 0.6rem;
}

.social-row { display: flex; gap: 0.8rem; margin-top: 1.3rem; }
.social-row a {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(239, 236, 227, 0.25);
  border-radius: 50%;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.social-row a:hover { color: var(--gold-hell); border-color: var(--gold-hell); }
.social-row svg { fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(239, 236, 227, 0.14);
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-hell); }
.footer-bottom .legal-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; list-style: none; }

/* ---------- Zweispaltiges Layout mit Sticky-Spalte ---------- */
.grid-sticky {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.grid-sticky > .sticky-col { position: sticky; top: 8rem; }
@media (max-width: 840px) {
  .grid-sticky { grid-template-columns: 1fr; }
  .grid-sticky > .sticky-col { position: static; }
}

/* Mobile-Header kompakt */
@media (max-width: 500px) {
  .wordmark .wordmark-text span { display: none; }
  .nav { gap: 0.8rem; }
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn-gold, .product-card, .cat-tile, .post-item { transition: none; }
  .hero-draw .ink { animation: none !important; stroke-dashoffset: 0 !important; }
  .hero-draw .ann, .hero-draw .spark { animation: none !important; opacity: 1 !important; }
}

/* Hero-Zeichnung (Startseite) */
.hero-draw .ink {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-draw .ann { opacity: 0; animation: fadeIn 0.9s ease forwards; }
.hero-draw .spark {
  opacity: 0;
  animation: fadeIn 0.7s ease forwards, twinkle 3.5s ease-in-out 3s infinite;
  animation-delay: 2.2s;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes twinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.65); opacity: 0.55; }
}

/* ---------- Shop: Layout mit Kategorien-Sidebar ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.cat-list {
  position: sticky;
  top: 8rem;
  border: 1px solid var(--linie);
  border-radius: 2px;
  background: var(--papier);
  padding: 1.4rem 1.3rem;
}
@media (max-width: 900px) { .cat-list { position: static; } }
.cat-list h2 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}
.cat-list ul { list-style: none; }
.cat-list li { border-top: 1px solid var(--linie-zart); }
.cat-list li:first-child { border-top: none; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: baseline;
  text-decoration: none;
  font-size: 0.85rem;
  padding-block: 0.55rem;
  transition: color 0.2s ease;
}
.cat-list a:hover, .cat-list a[aria-current="page"] { color: var(--gold); }
.cat-list .n {
  font-size: 0.7rem;
  color: var(--text-soft);
}

/* Nicht-vorrätig-Badge */
.product-media { position: relative; }
.badge-oos {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--tinte-tief);
  color: var(--hell);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}

/* Kachel-Buttons */
.product-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.btn-card {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 0.8rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-card:hover { background: var(--gold); color: var(--papier); }
.btn-card.primary { background: linear-gradient(135deg, #B08D42, #C8A45E); border: none; color: var(--tinte-tief); }
.btn-card.primary:hover { filter: brightness(1.06); }
.quickview {
  flex: 0 0 auto;
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--linie);
  border-radius: 2px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.quickview:hover { color: var(--gold); border-color: var(--gold); }

.paa {
  font-size: 0.92rem;
  color: var(--text-soft);
  font-style: italic;
  font-family: "Cormorant", serif;
  font-size: 1.05rem;
}

/* Paginierung */
.page-numbers {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin-top: 3rem;
}
.page-numbers a, .page-numbers span {
  display: grid;
  place-items: center;
  min-width: 2.6rem;
  height: 2.6rem;
  padding-inline: 0.6rem;
  border: 1px solid var(--linie);
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-numbers a:hover { color: var(--gold); border-color: var(--gold); }
.page-numbers .current {
  background: var(--tinte-tief);
  color: var(--gold-hell);
  border-color: var(--tinte-tief);
}

/* Lagerstatus auf Produktseite */
.stock { margin-top: 1rem; font-size: 0.85rem; letter-spacing: 0.06em; }
.stock.in { color: var(--smaragd); }
.stock.out { color: var(--rubin); }

/* ---------- Modal (Schnellansicht / Anfrage) ---------- */
.ct-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(20, 30, 51, 0.55);
  backdrop-filter: blur(4px);
}
.ct-modal.open { display: flex; }
.ct-modal-box {
  background: var(--porzellan);
  border-radius: 2px;
  border-top: 3px solid var(--gold);
  max-width: 46rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem 2.2rem 2.4rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(20, 30, 51, 0.35);
}
.ct-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--linie);
  border-radius: 50%;
  background: none;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-soft);
}
.ct-modal-close:hover { color: var(--rubin); border-color: var(--rubin); }
.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.8rem;
  align-items: center;
}
@media (max-width: 620px) { .qv-grid { grid-template-columns: 1fr; } }
.qv-media {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 2px;
  padding: 1.2rem;
  display: grid;
  place-items: center;
}
.qv-title { font-family: "Marcellus", "Times New Roman", serif; font-weight: 400; font-size: 1.7rem; line-height: 1.15; }
.qv-price { font-size: 1.2rem; margin-top: 0.7rem; }

/* Gutschein-Zeile im Warenkorb */
.coupon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.6rem;
}
.coupon-row input {
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--linie);
  border-radius: 2px;
  background: var(--papier);
  color: var(--tinte);
  width: 14rem;
  max-width: 100%;
}
