/*!
Theme Name: blumenreich
Theme URI: http://underscores.me/
Author: Underscores.me
Description: Blumenreich custom theme.
Version: 1.0.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: blumenreich
Tags: custom-background, custom-logo, custom-menu, featured-images
*/

/* ============================================
   Kvitter Blumen Boutique — Haupt-Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Jost:wght@300;400;500&display=swap');

/* ── Variablen ── */
:root {
  --magenta:    #d6347a;
  --rose:       #e8658a;
  --blush:      #f4a7be;
  --petal:      #fce8f0;
  --gallery-bg: #f8f2ed;
  --cream:      #fff8f9;
  --white:      #ffffff;
  --charcoal:   #2a1a20;
  --muted:      #8a6070;
  --border:     rgba(214, 52, 122, 0.15);

  --shadow-sm:  0 2px 16px rgba(214, 52, 122, 0.10);
  --shadow-md:  0 8px 40px rgba(214, 52, 122, 0.15);
  --shadow-lg:  0 20px 60px rgba(214, 52, 122, 0.20);

  --radius:     18px;
  --trans:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Basis ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
  min-height: 100vh;
}

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#page > main {
  flex: 1 0 auto;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ── Typografie ── */
.serif { font-family: 'Playfair Display', serif; }
.italic { font-style: italic; }

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 248, 249, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span { font-style: normal; font-weight: 300; color: #111111; letter-spacing: 0; }

.nav-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.nav-logo .custom-logo {
  display: block;
  width: auto;
  max-height: 52px;
}

.nav-links {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--magenta);
  transition: width var(--trans);
}

.nav-links a:hover { color: var(--magenta); }
.nav-links a:hover::after { width: 100%; }

/* Shopping Cart Icon */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.nav-cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(42, 26, 32, 0.08);
  border: 1px solid rgba(90, 47, 59, 0.12);
  color: var(--magenta);
  transition: transform var(--trans), background var(--trans), box-shadow var(--trans), color var(--trans);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(69, 32, 40, 0.08);
}

.nav-cart-icon:hover {
  transform: translateY(-1px) scale(1.04);
  background: rgba(190, 92, 121, 0.12);
  box-shadow: 0 10px 20px rgba(69, 32, 40, 0.12);
}

.nav-cart-icon__symbol {
  display: block;
  line-height: 1;
}

.nav-cart-icon__count {
  position: absolute;
  top: -5px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9708f 0%, #b14d6f 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  border: 2px solid #fff;
  box-shadow: 0 6px 12px rgba(177, 77, 111, 0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--magenta);
  transition: var(--trans);
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f5 0%, #fce8f0 40%, #fad4e4 100%);
}

/* Dekorative Kreise */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 138, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -8%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 52, 122, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 5vw 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { }

.hero-pretitle {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-pretitle::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--rose);
}

.hero-title {
  font-family: 'Allura', cursive;
  font-size: clamp(3.5rem, 8vw, 5.8rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: normal;
  font-weight: 400;
  color: #111111;
  display: block;
  font-size: 0.75em;
  margin-top: 0.2em;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2.4rem;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
}

.btn-primary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(214, 52, 122, 0.38);
}

.btn-primary:hover {
  background: #c02a6e;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(214, 52, 122, 0.48);
}

.btn-primary:active { transform: translateY(0); }

.wp-block-button {
  display: inline-block;
  margin-top: 0.5rem;
}

.wp-block-button .wp-block-button__link,
.wp-block-button .wp-block-button__link:visited,
.wp-block-button .wp-block-button__link:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(214, 52, 122, 0.38);
  text-decoration: none;
  border: none;
  transition: all var(--trans);
  line-height: 1.2;
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:focus-visible {
  background: #c02a6e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(214, 52, 122, 0.48);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--magenta);
  border: 1.5px solid var(--magenta);
}

.btn-outline:hover {
  background: var(--magenta);
  color: white;
  transform: translateY(-2px);
}

/* Hero Bild-Seite */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob {
  width: 480px;
  height: 520px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  position: relative;
  overflow: hidden;
  animation: morph 8s ease-in-out infinite;
  box-shadow: 0 22px 52px rgba(166, 44, 93, 0.24);
}

.hero-blob::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 224, 235, 0.18), rgba(214, 52, 122, 0.12));
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.93) contrast(1.03);
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%       { border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%; }
  66%       { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
}

/* Schwebende Blütenblätter */
.petal-float {
  position: absolute;
  border-radius: 50% 0;
  opacity: 0;
  animation: floatPetal 6s ease-in-out infinite;
}

.petal-float:nth-child(1) { width:16px; height:24px; background:rgba(244,167,190,0.6); top:10%; left:5%; animation-delay:0s; }
.petal-float:nth-child(2) { width:12px; height:18px; background:rgba(214,52,122,0.4); top:20%; right:8%; animation-delay:1.5s; }
.petal-float:nth-child(3) { width:20px; height:28px; background:rgba(232,101,138,0.35); bottom:15%; left:12%; animation-delay:3s; }
.petal-float:nth-child(4) { width:10px; height:14px; background:rgba(244,167,190,0.5); bottom:25%; right:5%; animation-delay:4.5s; }

@keyframes floatPetal {
  0%   { opacity:0; transform: translateY(0) rotate(0deg); }
  20%  { opacity:0.8; }
  80%  { opacity:0.6; }
  100% { opacity:0; transform: translateY(-80px) rotate(180deg); }
}

/* ── ÜBER UNS ── */
.section {
  padding: 100px 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 100px 5vw;
  background: var(--white);
}

.section-full .section { padding: 0; }

.section-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '✦';
  font-size: 0.65rem;
  color: var(--rose);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.section-title em {
  font-style: italic;
  color: var(--magenta);
}

.divider {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--blush));
  border-radius: 2px;
  margin: 1.4rem 0 2rem;
}

/* Über uns Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

.accessories-section .about-text {
  min-height: 87vh;
  display: flex;
  flex-direction: column;
}

.about-text p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem;
}

.accessories-section .features {
  flex: 1;
  justify-content: space-between;
}

.feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--petal);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}

.feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

#accessory-featured-image {
  transition: opacity 0.18s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

#accessory-featured-image.is-switching {
  opacity: 0.35;
  transform: scale(1.025);
}

.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.feature-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* About Visual */
.about-visual {
  position: relative;
}

.about-card {
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  min-height: 620px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.accessories-section .about-visual,
.accessories-section .about-card {
  height: 87vh;
  min-height: 0;
}

.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 224, 235, 0.12), rgba(170, 31, 82, 0.08));
  pointer-events: none;
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.94) contrast(1.04);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--magenta);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-family: 'Playfair Display', serif;
}

.about-badge strong { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-badge span   { font-size: 0.68rem; letter-spacing: 0.08em; opacity: 0.85; text-align: center; }

/* ── GALERIE ── */
.gallery-bg {
  background: var(--gallery-bg);
  padding: 100px 5vw;
}

.gallery-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.gallery-item:focus-visible {
  outline: 2px solid rgba(214, 52, 122, 0.85);
  outline-offset: 3px;
}

.gallery-item-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans);
}

.gallery-item:hover .gallery-item-inner { transform: scale(1.01); }

.gallery-hover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(var(--gallery-scroll-scale, 1.02));
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.gallery-item:hover .gallery-hover-image {
  transform: scale(1.07);
}

/* Galerie-Platzhalter mit Gradienten */
.gallery-item:nth-child(1) .gallery-item-inner { background: linear-gradient(135deg, #f9d4e4 0%, #e8658a 100%); }
.gallery-item:nth-child(2) .gallery-item-inner { background: linear-gradient(135deg, #fce8f0 0%, #d6347a 100%); }
.gallery-item:nth-child(3) .gallery-item-inner { background: linear-gradient(135deg, #f4a7be 0%, #c02a6e 100%); }
.gallery-item:nth-child(4) .gallery-item-inner { background: linear-gradient(135deg, #fad4e4 0%, #e8658a 100%); }
.gallery-item:nth-child(5) .gallery-item-inner { background: linear-gradient(135deg, #ffe0ee 0%, #d6347a 100%); }
.gallery-item:nth-child(6) .gallery-item-inner { background: linear-gradient(135deg, #f4a7be 0%, #8a6070 100%); }

.gallery-emoji {
  display: none;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.15rem;
  z-index: 3;
}

.gallery-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(47, 35, 29, 0.78) 0%,
    rgba(47, 35, 29, 0.42) 42%,
    rgba(47, 35, 29, 0.12) 72%,
    rgba(47, 35, 29, 0) 100%
  );
  transform-origin: bottom;
  transform: scaleY(0.72);
  opacity: 0.9;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
}

.gallery-item:hover .gallery-overlay::before {
  transform: scaleY(0.42);
  opacity: 0.78;
}

.gallery-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.45s ease, color 0.35s ease;
}

.gallery-item:hover .gallery-label {
  transform: translateY(-4px);
  color: #fffaf4;
}

/* ── ACCESSOIRES-GALERIE ── */
.accessories-section {
  position: relative;
  overflow: hidden;
  padding: 100px 5vw 110px;
  background: var(--gallery-bg);
}

.accessories-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(127, 97, 77, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(127, 97, 77, 0.035), 0 0 0 56px rgba(127, 97, 77, 0.025);
}

.accessories-header {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.accessories-intro {
  max-width: 430px;
  margin-top: 1rem;
  color: #806d63;
  font-size: 1.03rem;
}

.accessories-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 210px);
  gap: 16px;
}

.accessory-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: default;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
}

.accessory-gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.accessory-gallery-item:nth-child(2) { grid-column: 5 / 9; grid-row: 1 / 2; }
.accessory-gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.accessory-gallery-item:nth-child(4) { grid-column: 5 / 7; grid-row: 2 / 3; }
.accessory-gallery-item:nth-child(5) { grid-column: 7 / 9; grid-row: 2 / 3; }
.accessory-gallery-item:nth-child(6) { grid-column: 1 / 7; grid-row: 3 / 4; }

.accessory-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.accessory-gallery-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #c99c8d;
}

.accessory-gallery-item-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63, 31, 35, 0.08), rgba(63, 31, 35, 0.38));
  transition: opacity 0.55s ease;
}

.accessory-gallery-item:hover .accessory-gallery-item-inner::after { opacity: 0.55; }

.accessory-gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

.accessory-gallery-item:hover .accessory-gallery-item-inner img {
  transform: scale(1.1);
  filter: saturate(1.12) contrast(1.03);
}

.accessory-gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.15rem;
  color: #fff;
}

.accessory-gallery-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s ease;
}

.accessory-gallery-overlay small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.accessory-gallery-item:hover .accessory-gallery-label { transform: translateY(-4px); }

.accessory-gallery-item:focus-visible {
  outline: 2px solid rgba(214, 52, 122, 0.85);
  outline-offset: 3px;
}

/* ── ACCESSOIRES-STAGE ── */
.accessories-header {
  width: 50%;
  max-width: 545px;
  margin: 0 max(0px, calc((100% - 1200px) / 2)) 2.5rem auto;
  text-align: left;
}

.accessories-stage {
  max-width: 1200px;
  height: 87vh;
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 16px;
}

.accessories-featured {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  background: #c99c8d;
}

.accessories-featured .about-image,
.accessory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--accessory-scroll-scale, 1));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.accessories-featured::after,
.accessory-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 26, 32, 0.02) 35%, rgba(42, 26, 32, 0.68) 100%);
  pointer-events: none;
}

.accessories-featured-name,
.accessory-card-name {
  position: absolute;
  z-index: 1;
  left: 1.2rem;
  bottom: 1.1rem;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.accessories-featured-name {
  left: 1.8rem;
  bottom: 1.7rem;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
}

.accessories-options {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.accessory-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform var(--trans);
}

.accessory-card:hover,
.accessory-card.is-active {
  transform: translateY(-3px);
}

.accessory-card:hover img,
.accessory-card.is-active img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.accessory-card:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

/* ── KONTAKTE ── */
.contact-section {
  background: var(--white);
  padding: 100px 5vw;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--petal);
  transition: all var(--trans);
}

.contact-card:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--magenta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-icon--phone img,
.contact-icon--address img {
  filter: brightness(0) invert(1);
}

.contact-card-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-card-text span {
  font-size: 0.97rem;
  color: var(--charcoal);
}

.social-row {
  display: flex;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.social-label {
  grid-column: 1;
  justify-self: end;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-buttons {
  grid-column: 2;
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--trans);
  cursor: pointer;
  color: var(--muted);
  text-decoration: none;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.social-btn:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(214,52,122,0.35);
}

/* Karte */
.map-column {
  min-width: 0;
}

.map-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--petal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-placeholder {
  text-align: center;
}

.map-placeholder .map-pin { font-size: 2.5rem; margin-bottom: 0.5rem; }
.map-placeholder p { font-size: 0.88rem; color: var(--muted); }

/* ── BESTELLFORMULAR ── */
.order-section {
  background: linear-gradient(135deg, #2a1a20 0%, #3d1f2c 100%);
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,52,122,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.order-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.order-inner .section-tag { color: var(--blush); }
.order-inner .section-title { color: var(--white); }
.order-inner .section-title em { color: var(--blush); }

.form-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 2.8rem;
  margin-top: 2.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.97rem;
  font-weight: 300;
  color: white;
  outline: none;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.30); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blush);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(244,167,190,0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ff7b7b;
  box-shadow: 0 0 0 3px rgba(255,123,123,0.12);
}

.error-msg {
  font-size: 0.78rem;
  color: #ff9898;
  display: none;
}

.form-group.has-error .error-msg { display: block; }

.form-submit {
  width: 100%;
  padding: 17px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--magenta) 100%);
  color: white;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
  box-shadow: 0 6px 28px rgba(214, 52, 122, 0.4);
  margin-top: 0.8rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(214, 52, 122, 0.55);
}

.form-submit:active { transform: translateY(0); }

/* Erfolgs-Nachricht */
.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
  color: white;
}

.success-msg.show { display: block; animation: fadeInUp 0.5s ease; }

.success-msg .success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.success-msg h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--blush);
  margin-bottom: 0.5rem;
}

.success-msg p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.45);
  padding: 2.4rem 5vw;
  text-align: center;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
}

.single-product #page > footer {
  clear: both;
  width: 100%;
}

footer strong { color: var(--blush); }

footer .footer-link-underline {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  transition: color var(--trans);
}

footer .footer-link-underline:hover {
  color: var(--blush);
}

/* ── ANIMATIONEN beim Scrollen ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero-Einblenden */
.hero-text > * {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.2s; }
.hero-text > *:nth-child(2) { animation-delay: 0.4s; }
.hero-text > *:nth-child(3) { animation-delay: 0.6s; }
.hero-text > *:nth-child(4) { animation-delay: 0.8s; }

.hero-visual {
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .accessories-header {
    width: 100%;
    max-width: none;
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-pretitle { justify-content: center; }
  .nav-logo .custom-logo { max-height: 44px; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { order: -1; }
  .about-card { height: auto; min-height: 0; aspect-ratio: 16/9; max-height: 300px; }
  .about-visual .about-card { height: 50vh; aspect-ratio: auto; max-height: none; }
  .accessories-section .about-visual,
  .accessories-section .about-card,
  .accessories-section .about-text { height: auto; min-height: 0; }
  .accessories-stage {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(360px, auto) repeat(3, 150px);
  }
  .accessories-featured { grid-column: 1 / 3; grid-row: 1; }
  .accessory-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .accessory-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .accessory-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .accessory-card:nth-child(5) { grid-column: 2; grid-row: 3; }
  .accessory-card:nth-child(6) { grid-column: 1; grid-row: 4; }
  .accessory-card:nth-child(7) { grid-column: 2; grid-row: 4; }

  .accessories-stage {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(360px, 62vw) auto;
  }
  .accessories-featured { grid-column: 1; grid-row: 1; }
  .accessories-options {
    grid-column: 1;
    grid-row: 2;
    min-height: 450px;
  }
  .accessory-card:nth-child(n) { grid-column: auto; grid-row: auto; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1) { grid-row: span 1; }

  .accessories-stage {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 62vw) repeat(6, 92px);
    gap: 12px;
  }
  .accessories-featured { grid-column: 1; grid-row: 1; border-radius: 20px; }
  .accessory-card:nth-child(n) { grid-column: 1; }
  .accessory-card:nth-child(2) { grid-row: 2; }
  .accessory-card:nth-child(3) { grid-row: 3; }
  .accessory-card:nth-child(4) { grid-row: 4; }
  .accessory-card:nth-child(5) { grid-row: 5; }
  .accessory-card:nth-child(6) { grid-row: 6; }
  .accessory-card:nth-child(7) { grid-row: 7; }
  .accessory-card img { width: 28%; }
  .gallery-item:nth-child(5) { grid-column: span 1; }

  .accessories-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
    gap: 14px;
  }
  .accessory-gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .accessory-gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
  .accessory-gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .accessory-gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .accessory-gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .accessory-gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
  .accessory-gallery-item:nth-child(6) { grid-column: 1 / 3; grid-row: 4 / 5; }

  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }

  .accessories-stage {
    height: min(87vh, 640px);
    min-height: 360px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 10px;
  }
  .accessories-featured {
    grid-column: 1;
    grid-row: 1;
    border-radius: 20px;
  }
  .accessories-options {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .accessory-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .accessories-featured-name,
  .accessory-card-name {
    left: 0.6rem;
    bottom: 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,248,249,0.97);
    backdrop-filter: blur(16px);
    padding: 0 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    text-align: center;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-14px);
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.45s ease, opacity 0.32s ease, transform 0.4s ease, padding 0.4s ease, visibility 0s linear 0.45s;
  }
  .nav-links.open {
    padding: 2rem;
    max-height: 70vh;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.45s ease, opacity 0.32s ease, transform 0.4s ease, padding 0.4s ease;
  }
  .nav-toggle { display: flex; }

  .nav-toggle span { transform-origin: center; }
  .nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-cart-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .nav-cart-icon__count {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }

  .section, .section-full, .gallery-bg, .accessories-section,
  .contact-section, .order-section { padding: 64px 5vw; }

  .accessories-stage {
    height: min(87vh, 520px);
    min-height: 300px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 8px;
  }
  .accessories-featured {
    grid-column: 1;
    grid-row: 1;
    border-radius: 16px;
  }
  .accessories-options {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .accessory-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .accessories-featured-name,
  .accessory-card-name {
    left: 0.45rem;
    bottom: 0.45rem;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1) { grid-row: span 1; }

  .accessories-stage {
    grid-template-rows: minmax(300px, 62vw) auto;
    gap: 12px;
  }
  .accessories-featured { border-radius: 20px; }
  .accessories-options {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 92px);
    gap: 12px;
  }
  .accessory-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .accessories-featured-name,
  .accessory-card-name { left: 0.9rem; bottom: 0.8rem; font-size: 0.95rem; }

  .accessories-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }
  .accessory-gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .accessory-gallery-item { min-height: 220px; }

  .form-card { padding: 1.8rem 1.4rem; }

  .about-badge { width: 80px; height: 80px; right: 0; bottom: -15px; }
  .about-badge strong { font-size: 1.4rem; }

  /* Mobile vase layout: one large image beside a 2x3 square grid. */
  .accessories-stage {
    height: calc(67.5vw - 2px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 8px;
  }

  .accessories-featured {
    grid-column: 1;
    grid-row: 1;
  }

  .accessories-options {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .accessory-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
    background: transparent;
  }

  .accessory-card img {
    width: 100%;
    height: 100%;
  }

  .accessory-card-name {
    left: 0.45rem;
    right: 0.35rem;
    bottom: 0.45rem;
    font-size: 0.48rem;
    letter-spacing: 0.07em;
  }

  /* Match the flower gallery: one full-width image per row on mobile. */
  .accessories-stage {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .accessories-featured {
    display: none;
  }

  .accessories-options {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
    gap: 14px;
  }

  .accessory-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .accessory-card img {
    width: 100%;
    height: 100%;
  }

  .accessories-featured-name,
  .accessory-card-name {
    left: 1rem;
    bottom: 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links,
  .nav-links.open,
  .nav-toggle span,
  .accessory-gallery-item-inner img,
  .accessory-gallery-label,
  .accessory-scroll-image,
  .gallery-scroll-image {
    transition: none;
    animation: none;
  }
}

/* Products page template */
.products-page {
  padding: 120px 5vw 80px;
}

.products-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.products-page__intro {
  margin-bottom: 2rem;
}

.products-page__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: #3a1f2b;
}

.products-page__title--center {
  text-align: center;
}

.products-page__toolbar {
  margin: 0.9rem 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.4rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(130deg, rgba(252, 232, 240, 0.78) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 10px 28px rgba(214, 52, 122, 0.08);
}

.products-page__toolbar::after {
  content: '';
  display: table;
  clear: both;
}

.products-page__toolbar .woocommerce-result-count {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.products-page__toolbar .woocommerce-result-count::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--magenta));
  box-shadow: 0 0 0 4px rgba(232, 101, 138, 0.16);
}

.products-page__toolbar .woocommerce-ordering {
  margin: 0;
  position: relative;
  min-width: 250px;
}

.products-page__toolbar .woocommerce-ordering::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--magenta);
  border-bottom: 2px solid var(--magenta);
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.products-page__toolbar .woocommerce-ordering select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(214, 52, 122, 0.24);
  border-radius: 999px;
  padding: 0.62rem 2.4rem 0.62rem 0.95rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
}

.products-page__toolbar .woocommerce-ordering select:hover {
  border-color: rgba(214, 52, 122, 0.42);
  background: #ffffff;
}

.products-page__toolbar .woocommerce-ordering select:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(214, 52, 122, 0.14);
}

@media (max-width: 768px) {
  .products-page__toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
  }

  .products-page__toolbar .woocommerce-result-count {
    justify-content: center;
    text-align: center;
  }

  .products-page__toolbar .woocommerce-ordering {
    min-width: 0;
    width: 100%;
  }
}

.products-page__content {
  color: var(--muted);
}

.products-page__notice {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: var(--petal);
  border: 1px solid var(--border);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
.products-category {
  margin-bottom: 2.5rem;
}
.products-category__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.2rem;
  margin-bottom: 1rem;
}
.products-category__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.products-category__nav {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(214, 52, 122, 0.28);
  border-radius: 50%;
  background: #ffffff;
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans), color var(--trans);
}
.products-category__nav:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 52, 122, 0.5);
  box-shadow: 0 8px 16px rgba(214, 52, 122, 0.16);
}
.products-category__nav:focus-visible {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(214, 52, 122, 0.18);
}
.products-category__nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.products-category__nav span {
  font-size: 1rem;
  line-height: 1;
}
.products-category__title {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: #3a1f2b;
}
.products-category__all {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  border-bottom: 1px solid rgba(214, 52, 122, 0.3);
  transition: color var(--trans), border-color var(--trans);
}
.products-category__all:hover {
  color: var(--rose);
  border-color: rgba(232, 101, 138, 0.6);
}
.products-category__track-wrap {
  position: relative;
}
.products-category__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 1.2rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.25rem;
  padding: 0.35rem 0.25rem 0.5rem;
}
.products-category__track::-webkit-scrollbar {
  height: 10px;
}
.products-category__track::-webkit-scrollbar-track {
  background: rgba(214, 52, 122, 0.1);
  border-radius: 999px;
}
.products-category__track::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--rose), var(--magenta));
  border-radius: 999px;
}
.products-category .products-grid__card,
.products-more-card {
  scroll-snap-align: start;
}
.products-more-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(214, 52, 122, 0.26);
  background: linear-gradient(155deg, #fff3f8 0%, #ffe7f1 45%, #ffd6e8 100%);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.products-more-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px dashed rgba(214, 52, 122, 0.4);
  opacity: 0.85;
  pointer-events: none;
}
.products-more-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 52, 122, 0.45);
  box-shadow: var(--shadow-md);
}
.products-more-card__tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
}
.products-more-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--charcoal);
}
.products-more-card__text {
  font-size: 0.95rem;
  color: var(--muted);
}
.products-more-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.3rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--magenta) 100%);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-grid__card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(170deg, #ffffff 0%, #fff7fa 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transform: translateY(14px);
  opacity: 0;
  animation: productCardReveal 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(var(--card-index, 0) * 80ms + 140ms);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.products-grid__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(145deg, rgba(244, 167, 190, 0.65), rgba(214, 52, 122, 0.26));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--trans);
}

.products-grid__card:hover {
  border-color: rgba(214, 52, 122, 0.35);
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.products-grid__card:hover::before {
  opacity: 1;
}

.products-grid__image-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #fff0f5 0%, #fce8f0 100%);
  overflow: hidden;
}

.products-grid__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.products-grid__card:hover .products-grid__image {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.products-grid__image--placeholder {
  width: 100%;
  height: 100%;
}

.products-grid__image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.42) 0%, transparent 52%);
  pointer-events: none;
}

.products-grid__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(42, 26, 32, 0.85);
  color: var(--white);
}

.products-grid__body {
  padding: 1.1rem 1rem 1.15rem;
}

.products-grid__meta {
  margin-bottom: 0.42rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c95580;
}

.products-grid__meta a {
  color: inherit;
}

.products-grid__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #341b28;
  margin-bottom: 0.45rem;
}

.products-grid__title a {
  color: inherit;
}

.products-grid__title a:hover {
  color: var(--magenta);
}

.products-grid__excerpt {
  margin-bottom: 0.8rem;
  color: #634452;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.55;
}

.products-grid__price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--magenta);
  margin-bottom: 0.95rem;
}

.products-grid__price del {
  color: var(--muted);
  opacity: 0.7;
}

.products-grid__button {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--trans), background var(--trans), box-shadow var(--trans);
}

.products-grid__button::after {
  content: '\2192';
  font-size: 0.9em;
  transform: translateX(0);
  transition: transform var(--trans);
}

.products-grid__button:hover {
  background: #c02a6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(214, 52, 122, 0.34);
}

.products-grid__button:hover::after {
  transform: translateX(4px);
}

@keyframes productCardReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products-page {
    padding: 100px 5vw 64px;
  }

  .products-category__actions {
    width: 100%;
    justify-content: space-between;
  }

  .products-category__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-category__track {
    grid-auto-columns: minmax(240px, 86vw);
    gap: 0.9rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid__excerpt {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-grid__card,
  .products-grid__image,
  .products-grid__button,
  .products-grid__button::after {
    animation: none;
    transition: none;
  }
}

/* WooCommerce Single Product Adjustments */
.woocommerce-cart #primary.site-main {
  padding-left: 5%;
  padding-right: 5%;
}

.woocommerce-cart #primary.site-main .woocommerce {
  margin-left: auto;
  margin-right: auto;
}

.woocommerce-cart #primary.site-main h2.wp-block-heading.has-text-align-left {
  margin-top: 20%;
  margin-bottom: 20%;
}

.woocommerce-cart #primary.site-main h2.wp-block-heading.has-text-align-center {
  margin-top: 15%;
  margin-bottom: 3%;
}

/* WooCommerce Checkout (minimal fields layout) */
.woocommerce-checkout #primary.site-main {
  padding: 110px 5% 70px;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  float: none;
  width: 100%;
}

.woocommerce-checkout .col2-set {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(252, 232, 240, 0.6), rgba(255, 255, 255, 0.95));
  box-shadow: 0 10px 28px rgba(214, 52, 122, 0.08);
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout .col2-set h3,
.woocommerce-checkout .woocommerce-billing-fields > h3 {
  margin: 0 0 0.9rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--charcoal);
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: grid;
  gap: 0.75rem;
}

.woocommerce-checkout .form-row {
  margin: 0;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border: 1px solid rgba(214, 52, 122, 0.28);
  border-radius: 12px;
  min-height: 48px;
  padding: 0.65rem 0.9rem;
  background: #fff;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(214, 52, 122, 0.14);
  outline: none;
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 0.7rem;
  padding: 0.2rem 0.1rem;
  border: 0;
  background: transparent;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
}

.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 3.2rem 1.2rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(42, 26, 32, 0.08);
}

.woocommerce-checkout #payment {
  margin-top: 0.9rem;
  background: transparent;
  border: 0;
  padding: 0;
}

.woocommerce-checkout #payment .payment_methods,
.woocommerce-checkout #payment .woocommerce-privacy-policy-text,
.woocommerce-checkout #payment .wc_payment_method,
.woocommerce-checkout #payment div.payment_box {
  display: none;
}

.woocommerce-checkout #payment .place-order {
  padding: 0;
}

.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout .woocommerce-form__label-for-checkbox,
.woocommerce-checkout #ship-to-different-address {
  display: none;
}

.woocommerce-checkout .woocommerce-shipping-fields {
  display: block;
}

.woocommerce-checkout .place-order .button,
.woocommerce-checkout #place_order {
  width: 100%;
  border-radius: 999px;
  min-height: 50px;
  background: linear-gradient(135deg, var(--rose), var(--magenta));
  border: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

body.blumenreich-hide-checkout-subtotal .woocommerce-checkout-review-order-table tr.cart-subtotal {
  display: none;
}

@media (max-width: 980px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout .col2-set,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .woocommerce-checkout #order_review {
    padding-top: 1.2rem;
  }

  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    position: static;
  }
}

/* WooCommerce Single Product */
.blumenreich-product-page {
  background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
}

.blumenreich-product-page__intro {
  padding: 118px 5vw 2.2rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(244, 167, 190, 0.22), transparent 34%),
    linear-gradient(135deg, #fff1f6 0%, #ffffff 78%);
  border-bottom: 1px solid var(--border);
}

.blumenreich-product-page__container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.blumenreich-product-page__intro .section-tag {
  margin-bottom: 0.45rem;
}

.blumenreich-product-page__title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--charcoal);
}

.blumenreich-product-page__title em {
  color: var(--magenta);
  font-style: italic;
}

.blumenreich-product-page__content {
  padding: 2.5rem 5vw 84px;
}

.single-product #primary.site-main {
  padding: 0;
}

.single-product #primary.site-main .woocommerce {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.single-product .woocommerce div.product {
  display: grid !important;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr) !important;
  gap: clamp(1.4rem, 2.8vw, 2.8rem);
  align-items: start;
  padding: clamp(1rem, 2.5vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.97) 0%, rgba(252, 232, 240, 0.64) 100%);
  box-shadow: 0 16px 42px rgba(214, 52, 122, 0.12);
}

.single-product .woocommerce div.product .woocommerce-product-gallery,
.single-product .woocommerce div.product div.images,
.single-product .woocommerce div.product .summary,
.single-product .woocommerce div.product div.summary {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.single-product .woocommerce div.product .blumenreich-single-product__below {
  grid-column: 1 / -1;
}

.single-product .woocommerce div.product .woocommerce-product-gallery {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(214, 52, 122, 0.22);
  background: linear-gradient(135deg, #fff0f5 0%, #fce8f0 100%);
}

.single-product .woocommerce-product-gallery__wrapper img {
  width: 100%;
  height: auto;
}

.single-product .woocommerce-product-gallery__image img {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.single-product .woocommerce div.product .summary {
  display: grid;
  gap: 0.85rem;
}

.single-product .woocommerce div.product .product_title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  line-height: 1.12;
  color: #2f1a23;
}

.single-product .woocommerce div.product p.price,
.single-product .woocommerce div.product span.price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--magenta);
}

.single-product .woocommerce div.product .summary .woocommerce-product-details__short-description {
  margin: 0;
  color: #634452;
  line-height: 1.7;
}

.single-product .woocommerce div.product .product_meta {
  margin-top: 0.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.single-product .woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.35rem 0 0.2rem;
}

.single-product .woocommerce div.product form.cart .quantity input.qty {
  width: 76px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(214, 52, 122, 0.28);
  background: #fff;
  color: var(--charcoal);
  font-weight: 500;
  text-align: center;
}

.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
.single-product .woocommerce div.product .single_add_to_cart_button.button {
  min-height: 48px;
  padding: 0.66rem 1.35rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--rose), var(--magenta));
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(214, 52, 122, 0.35);
  transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
}

.single-product .woocommerce div.product form.cart .single_add_to_cart_button:hover,
.single-product .woocommerce div.product .single_add_to_cart_button.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 52, 122, 0.42);
  filter: brightness(1.03);
}

.single-product .woocommerce div.product .summary .blumenreich-product-description,
.single-product .woocommerce div.product .summary .woocommerce-product-details__short-description,
.single-product .woocommerce div.product .woocommerce-tabs {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.single-product .woocommerce div.product .summary .blumenreich-product-description__title {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--charcoal);
}

.single-product .woocommerce div.product .summary .blumenreich-product-description__content {
  color: var(--muted);
  line-height: 1.7;
}

.single-product .woocommerce div.product .summary .blumenreich-product-description__content p {
  margin-bottom: 0.7rem;
}

.single-product .woocommerce div.product .woocommerce-tabs {
  margin-top: 1rem;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 999px;
  border: 1px solid rgba(214, 52, 122, 0.25);
  background: #fff;
  margin-right: 0.4rem;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-color: var(--magenta);
  background: rgba(232, 101, 138, 0.12);
}

.single-product .woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: 0.2rem 0;
  color: #543746;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .single-product .woocommerce div.product {
    grid-template-columns: 1fr !important;
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .single-product #primary.site-main {
    padding: 102px 5vw 64px;
  }

  .single-product .woocommerce div.product .product_title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .single-product .woocommerce div.product form.cart {
    flex-wrap: wrap;
  }

  .single-product .woocommerce div.product form.cart .single_add_to_cart_button,
  .single-product .woocommerce div.product .single_add_to_cart_button.button {
    width: 100%;
    justify-content: center;
  }
}

/* Datenschutz & Impressum Pages */
.datenschutz-page,
.impressum-page {
  padding: 120px 5vw 80px;
}

.datenschutz-container,
.impressum-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.datenschutz-content,
.impressum-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3.2rem;
  box-shadow: var(--shadow-sm);
  line-height: 1.8;
  color: var(--charcoal);
}

.datenschutz-content h2,
.impressum-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 0;
  color: var(--charcoal);
}

.datenschutz-content h3,
.impressum-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.datenschutz-content h4,
.impressum-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--magenta);
}

.datenschutz-content p,
.impressum-content p {
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.datenschutz-content ul,
.impressum-content ul {
  margin: 1.2rem 0 1.2rem 1.8rem;
  color: var(--muted);
}

.datenschutz-content li,
.impressum-content li {
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
}

/* Sonderbestellung page (restaurant B2B) */
.sonderbestellung-page {
  padding: 104px 5vw 84px;
  background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
}

.sonderbestellung-hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 2rem;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(214, 52, 122, 0.2);
  box-shadow: 0 18px 50px rgba(214, 52, 122, 0.14);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.34) 0, rgba(255, 255, 255, 0) 40%),
    linear-gradient(130deg, #d6347a 0%, #e8658a 38%, #f4a7be 100%);
}

.sonderbestellung-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(125deg, rgba(42, 26, 32, 0.45) 0%, rgba(42, 26, 32, 0.18) 42%, rgba(42, 26, 32, 0.05) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 10px, rgba(255, 255, 255, 0.02) 10px 20px);
  opacity: 0;
  animation: sonderOverlayReveal 1s ease forwards;
}

.sonderbestellung-hero__promo {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  max-width: 320px;
  margin: 0;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(42, 26, 32, 0.2);
  color: var(--charcoal);
  font-size: 0.96rem;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  transform: translateY(12px) rotate(1deg);
  animation: sonderPromoReveal 0.7s 0.55s ease forwards;
}

.sonderbestellung-hero__promo strong {
  color: var(--magenta);
  font-weight: 500;
}

.sonderbestellung-hero__inner {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: #fff;
}

.sonderbestellung-hero .section-tag {
  color: rgba(255, 255, 255, 0.88);
}

.sonderbestellung-hero .section-tag::before {
  background: rgba(255, 255, 255, 0.82);
}

.sonderbestellung-hero__title {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #fff;
}

.sonderbestellung-hero__title em {
  color: #ffe5ef;
  font-style: italic;
}

.sonderbestellung-hero__text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.02rem;
  line-height: 1.75;
}

.sonderbestellung-hero .fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: sonderTextReveal 0.75s ease forwards;
}

.sonderbestellung-hero .fade-up:nth-child(1) {
  animation-delay: 0.2s;
}

.sonderbestellung-hero .fade-up:nth-child(2) {
  animation-delay: 0.38s;
}

.sonderbestellung-hero .fade-up:nth-child(3) {
  animation-delay: 0.56s;
}

.sonderbestellung-catalog .products-page__container {
  max-width: 1200px;
}

.sonderbestellung-page .sonderbestellung-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.sonderbestellung-page .sonderbestellung-grid > * {
  min-width: 0;
}

.sonderbestellung-page .sonderbestellung-grid .products-grid__card {
  animation: none;
  width: auto;
}

.sonderbestellung-page .sonderbestellung-grid .products-grid__button {
  width: 100%;
  justify-content: center;
}

@keyframes sonderOverlayReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sonderTextReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sonderPromoReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(1deg);
  }
}

@media (max-width: 980px) {
  .sonderbestellung-page .sonderbestellung-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sonderbestellung-hero__inner {
    padding: 2rem;
  }

  .sonderbestellung-hero__promo {
    right: 2rem;
    bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .sonderbestellung-page {
    padding: 92px 5vw 64px;
  }

  .sonderbestellung-hero {
    min-height: 260px;
  }

  .sonderbestellung-page .sonderbestellung-grid {
    grid-template-columns: 1fr;
  }

  .sonderbestellung-hero__inner {
    padding: 1.45rem 1.45rem 8rem;
  }

  .sonderbestellung-hero__promo {
    right: 1.45rem;
    bottom: 1.45rem;
    left: 1.45rem;
    max-width: none;
  }
}

.datenschutz-content a,
.impressum-content a {
  color: var(--magenta);
  text-decoration: none;
  transition: color var(--trans);
}

.datenschutz-content a:hover,
.impressum-content a:hover {
  color: var(--rose);
  text-decoration: underline;
}

.impressum-section {
  background: var(--petal);
  padding: 1.4rem;
  border-radius: 12px;
  margin: 1.6rem 0;
  border-left: 3px solid var(--magenta);
}

.impressum-section h4 {
  margin-top: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .datenschutz-page,
  .impressum-page {
    padding: 100px 5vw 64px;
  }

  .datenschutz-content,
  .impressum-content {
    padding: 2rem 1.4rem;
  }

  .datenschutz-content h2,
  .impressum-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }

  .datenschutz-content h3,
  .impressum-content h3 {
    font-size: 1.2rem;
    margin-top: 1.8rem;
  }
}
