/* ════════════════════════════════════════════════════════════
   SERAPHYSHOP – styles.css
   Design: minimal, feminine, premium-handmade
   Fonts: Playfair Display (display) + Inter (body)
   ════════════════════════════════════════════════════════════ */

/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  /* Colors */
  --c-bg:              #ffffff;
  --c-surface:         #faf6f8;        /* very light warm pink – tinted sections */
  --c-primary:         #b58a9a;        /* mauve-rose – buttons, accents */
  --c-primary-hover:   #96707f;        /* darker mauve on hover */
  --c-primary-light:   #f5eaee;        /* very light pink – chips, badges */
  --c-primary-border:  #e8d4db;        /* border tint */

  --c-text:            #1e1520;        /* near-black headings */
  --c-text-body:       #4a3f45;        /* body text */
  --c-text-muted:      #8c7880;        /* muted labels, hints */
  --c-border:          #ece3e7;        /* default border */
  --c-white:           #ffffff;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm:    6px;
  --r-md:    12px;
  --r-lg:    20px;
  --r-xl:    28px;
  --r-pill:  100px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(30, 10, 20, .06);
  --shadow-sm: 0 2px 8px rgba(30, 10, 20, .08);
  --shadow-md: 0 4px 20px rgba(30, 10, 20, .10);
  --shadow-lg: 0 8px 40px rgba(30, 10, 20, .12);

  /* Layout */
  --max-w:       1200px;
  --header-h:    68px;
  --section-gap: 96px;
  --pad-x:       24px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      0.15s var(--ease);
  --t-base:      0.25s var(--ease);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

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

ul, ol { list-style: none; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 0.9375rem; font-weight: 600; }

p { max-width: 65ch; }

strong { font-weight: 600; color: var(--c-text); }

/* ── 4. LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--section-gap);
}

.section--tinted {
  background: var(--c-surface);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  margin-bottom: 12px;
}

.section-sub {
  color: var(--c-text-muted);
  font-size: 1.0625rem;
  max-width: 52ch;
  margin-inline: auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}

/* ── 5. SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--c-text);
  color: var(--c-white);
  padding: 8px 16px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; outline: none; }

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast),
              transform var(--t-fast);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  border: 1.5px solid var(--c-primary);
}
.btn--primary:hover {
  background: var(--c-primary-hover);
  border-color: var(--c-primary-hover);
  box-shadow: var(--shadow-sm);
}

.btn--secondary {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}
.btn--secondary:hover {
  background: var(--c-primary-light);
  box-shadow: var(--shadow-sm);
}

.btn--sm { padding: 9px 20px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── 7. TEXT LINK ── */
.text-link {
  color: var(--c-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--t-fast), color var(--t-fast);
}
.text-link:hover {
  color: var(--c-primary-hover);
  text-decoration-color: currentColor;
}
.text-link:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-base);
}

/* JS will add .header--scrolled; CSS handles the shadow */
.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
  text-decoration: none;
}
.logo:hover { opacity: 0.82; }
.logo:focus-visible {
  outline: 2px solid var(--c-primary);
  border-radius: var(--r-sm);
  outline-offset: 3px;
}

/* Logo-Bild: weißer Hintergrund des JPGs verschmilzt nahtlos mit dem Header */
.logo__img {
  height: 52px;
  width: auto;
  display: block;
  /* leichte Anpassung falls das Bild zu hell/groß wirkt – hier justieren */
}

.logo__wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  /* Auf kleinen Screens ausblenden damit nur Logo bleibt */
}

/* Desktop Nav */
.nav { flex: 1; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-body);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover    { color: var(--c-primary); background: var(--c-primary-light); }
.nav__link:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; border-radius: var(--r-sm); }

/* Dropdown */
.nav__item--dropdown { position: relative; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 192px;
  box-shadow: var(--shadow-md);

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--t-base), visibility var(--t-base), transform var(--t-base);
  pointer-events: none;
}

/* Reveal on hover OR keyboard focus-within */
.nav__item--dropdown:hover  .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Reveal when JS click-toggle adds .nav__item--open */
.nav__item--dropdown.nav__item--open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--c-text-body);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__dropdown-link:hover { background: var(--c-primary-light); color: var(--c-primary); }
.nav__dropdown-link:focus-visible { outline: 2px solid var(--c-primary); border-radius: var(--r-sm); outline-offset: 1px; }

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.header__etsy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--c-primary-light);
  color: var(--c-primary-hover);
  border: 1px solid var(--c-primary-border);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background var(--t-fast), color var(--t-fast);
}
.header__etsy-btn:hover { background: var(--c-primary); color: var(--c-white); }
.header__etsy-btn:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; border-radius: var(--r-pill); }

.header__socials { display: flex; align-items: center; gap: 2px; }

.header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  color: var(--c-text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.header__social:hover { color: var(--c-primary); background: var(--c-primary-light); }
.header__social:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; border-radius: var(--r-sm); }

/* Hamburger */
.hamburger {
  display: none;             /* hidden on desktop; shown in responsive */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--c-primary-light); }
.hamburger:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; }

.hamburger__line {
  display: block;
  width: 22px;
  height: 1.75px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

/* ══════════════════════════════════════════
   MOBILE NAV PANEL
══════════════════════════════════════════ */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  z-index: 499;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav__mobile.is-open {
  display: block;
}

.nav__mobile-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
}

.nav__mobile-link {
  display: block;
  padding: 13px var(--pad-x, 24px);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t-fast), color var(--t-fast);
}

.nav__mobile-list li:last-child .nav__mobile-link {
  border-bottom: none;
}

.nav__mobile-link:hover,
.nav__mobile-link:focus-visible {
  background: var(--c-primary-light);
  color: var(--c-primary);
  outline: none;
}

/* Prevent body scroll while mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: var(--c-surface);
  padding-block: 80px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: var(--c-primary-light);
  color: var(--c-primary-hover);
  border: 1px solid var(--c-primary-border);
  border-radius: var(--r-pill);
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__headline {
  margin-bottom: 20px;
}

.hero__headline em {
  font-style: italic;
  color: var(--c-primary);
}

.hero__sub {
  color: var(--c-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 48ch;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero image */
.hero__media { position: relative; }

.hero__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-xl);
  display: block;
}

/* ══════════════════════════════════════════
   SHOP / FILTER TABS
══════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
  flex-shrink: 0;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  background: transparent;
  border: 1.5px solid var(--c-border);
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast);
}
.filter-tab:hover {
  color: var(--c-primary);
  border-color: var(--c-primary-border);
  background: var(--c-primary-light);
}
.filter-tab--active {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.filter-tab--active:hover {
  background: var(--c-primary-hover);
  border-color: var(--c-primary-hover);
}
.filter-tab:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════
   PRODUCT GRID & CARDS
══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--c-primary-border);
}

/* Image wrapper – clips zoom */
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
}

/* Echte Produktbilder */
.product-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;       /* füllt die Karte, schneidet sauber zu */
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-card__img {
  transform: scale(1.05);
}

/* Placeholder-Divs (für Dummy-Karten ohne echtes Bild) */
.product-card__img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-card__img-placeholder {
  transform: scale(1.05);
}

/* Per-card gradient variants */
.pc-img--1 { background: linear-gradient(135deg, #fde0ec 0%, #e8c4d2 100%); }
.pc-img--2 { background: linear-gradient(135deg, #ead8f0 0%, #d0b8e0 100%); }
.pc-img--3 { background: linear-gradient(135deg, #f0ece8 0%, #ddd4cc 100%); }
.pc-img--4 { background: linear-gradient(135deg, #e8d8e0 0%, #ccb0be 100%); }
.pc-img--5 { background: linear-gradient(135deg, #fde8ef 0%, #f0c8d8 100%); }
.pc-img--6 { background: linear-gradient(135deg, #f5f0f0 0%, #e8e0e4 100%); }
.pc-img--7 { background: linear-gradient(135deg, #f8e8e8 0%, #e8c8c8 100%); }
.pc-img--8 { background: linear-gradient(135deg, #e8e8f8 0%, #c8c8e8 100%); }

/* Badge on card image */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-white);
  color: var(--c-primary);
  border: 1px solid var(--c-primary-border);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-card__badge--mauve {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.product-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.3;
  margin-top: 2px;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
.product-card__cta:hover {
  color: var(--c-primary-hover);
  text-decoration-color: currentColor;
}
.product-card__cta:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════
   CSS-ONLY IMAGE GALLERY (product cards)
   Radio inputs control which image is shown.
   Dots let the user switch between images.
══════════════════════════════════════════ */

/* Hide the radio controls – they're UI logic only */
.gctrl { display: none; }

/* Gallery container: stacking context for crossfade */
.gallery-imgs {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* All gallery images stacked, faded out by default */
.gallery-imgs .product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: unset;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.4s var(--ease);
}

/* Fade in the active image */
.gctrl:nth-of-type(1):checked ~ .gallery-imgs .product-card__img:nth-child(1),
.gctrl:nth-of-type(2):checked ~ .gallery-imgs .product-card__img:nth-child(2),
.gctrl:nth-of-type(3):checked ~ .gallery-imgs .product-card__img:nth-child(3),
.gctrl:nth-of-type(4):checked ~ .gallery-imgs .product-card__img:nth-child(4),
.gctrl:nth-of-type(5):checked ~ .gallery-imgs .product-card__img:nth-child(5) {
  opacity: 1;
}

/* Dot row – sits at the bottom of the image area */
.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.gallery-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.25);
}

/* Active dot – white = selected (supports up to 5) */
.gctrl:nth-of-type(1):checked ~ .gallery-dots .gallery-dot:nth-child(1),
.gctrl:nth-of-type(2):checked ~ .gallery-dots .gallery-dot:nth-child(2),
.gctrl:nth-of-type(3):checked ~ .gallery-dots .gallery-dot:nth-child(3),
.gctrl:nth-of-type(4):checked ~ .gallery-dots .gallery-dot:nth-child(4),
.gctrl:nth-of-type(5):checked ~ .gallery-dots .gallery-dot:nth-child(5) {
  background: white;
  transform: scale(1.15);
}

/* Keep the subtle zoom-on-hover for gallery images */
.product-card:hover .gallery-imgs .product-card__img {
  transform: scale(1.05);
}

/* Prev / Next arrows – hidden by default, visible on hover */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  opacity: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  transition: opacity 0.35s ease;
}
.gallery-arrow--prev { left: 8px; }
.gallery-arrow--next { right: 8px; }
.product-card__img-wrap:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { opacity: 0.75; }

/* ── ── ── ── ── ── ── ── ── ── ── ── ── ── */

.gallery-hint {
  text-align: center;
  color: var(--c-text-muted);
  font-size: 0.9375rem;
}

/* ══════════════════════════════════════════
   KATEGORIEN (Category Cards)
══════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.cat-card--featured {
  border-color: var(--c-primary-border);
  background: linear-gradient(160deg, #fff 60%, #fdf0f4 100%);
}

.cat-card__img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Real overview photo inside a Kollektionen card */
.cat-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.4s var(--ease);
}
.cat-card:hover .cat-card__photo { transform: scale(1.04); }

.cat-card__img--trinket { background: linear-gradient(135deg, #fde0ec, #e8c4d2); }
.cat-card__img--armband { background: linear-gradient(135deg, #fde8ef, #f0c8d8); }
.cat-card__img--charm   { background: linear-gradient(135deg, #ead8f0, #d0b8e0); }

.cat-card__emoji { font-size: 56px; opacity: 0.65; }

.cat-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }

.cat-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-text);
}

.cat-card__text {
  color: var(--c-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Sub-links row (Hibiscus / Orchidee / Glasses Holder) */
.cat-card__sub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.cat-card__sub-link {
  padding: 4px 12px;
  background: var(--c-primary-light);
  color: var(--c-primary-hover);
  border: 1px solid var(--c-primary-border);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 500;
  transition: background var(--t-fast), color var(--t-fast);
}
.cat-card__sub-link:hover { background: var(--c-primary); color: var(--c-white); }
.cat-card__sub-link:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; border-radius: var(--r-pill); }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__content { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }

.about__title { margin: 0; }

/* USP Chips */
.usp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.usp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  background: var(--c-primary-light);
  color: var(--c-primary-hover);
  border: 1px solid var(--c-primary-border);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about__text {
  color: var(--c-text-body);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 50ch;
}

/* About image */
.about__visual { position: relative; }

.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

/* ══════════════════════════════════════════
   FAQ (details / summary)
══════════════════════════════════════════ */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;     /* hairline between items – border handles visual separation */
}

.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item + .faq-item { margin-top: 8px; }
.faq-item[open] { border-color: var(--c-primary-border); box-shadow: var(--shadow-xs); }

/* Hide native marker */
.faq-item > summary { list-style: none; }
.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  user-select: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.faq-item__q:hover { background: var(--c-primary-light); color: var(--c-primary); }
.faq-item__q:focus-visible { outline: 2px solid var(--c-primary); outline-offset: -2px; }

/* +/− icon via ::after on the icon span */
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--t-fast), transform var(--t-base);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

.faq-item__icon::before { width: 10px; height: 2px; }  /* horizontal bar */
.faq-item__icon::after  { width: 2px; height: 10px; }  /* vertical bar (+ becomes −) */

details[open] .faq-item__icon { background: var(--c-primary); transform: rotate(45deg); }
details[open] .faq-item__icon::before,
details[open] .faq-item__icon::after { background: var(--c-white); }

.faq-item__a {
  padding: 0 22px 20px;
  border-top: 1px solid var(--c-border);
  margin-top: -1px;
}

.faq-item__a p {
  padding-top: 16px;
  color: var(--c-text-body);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
  max-width: 900px;
  margin-inline: auto;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.02em;
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 11px 16px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  outline: none;
}
.form-input::placeholder { color: var(--c-text-muted); }
.form-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(181, 138, 154, 0.18);
}

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

.contact__note {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  max-width: none;
}

/* Honeypot field – invisible to real users */
.form-honey {
  display: none;
}

/* Inline form status (success / error) */
.contact__status {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  line-height: 1.4;
}
.contact__status--ok  { background: #f0faf4; color: #2a7a4f; }
.contact__status--err { background: #fff0f0; color: #c0392b; }

/* Contact aside */
.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.contact__aside-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-text);
}

.contact__email {
  font-size: 0.9375rem;
  font-weight: 500;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__channel { font-size: 0.9375rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.65);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col--brand { gap: 16px; }

/* Footer logo */
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-white);
  transition: opacity var(--t-fast);
}
.footer__logo:hover { opacity: 0.8; }
.footer__logo:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; border-radius: var(--r-sm); }

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 28ch;
}

.footer__etsy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  align-self: flex-start;
  transition: background var(--t-fast);
}
.footer__etsy-link:hover { background: var(--c-primary-hover); }
.footer__etsy-link:focus-visible { outline: 2px solid var(--c-primary-light); outline-offset: 3px; border-radius: var(--r-pill); }

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 4px;
}

.footer__nav { display: flex; flex-direction: column; gap: 6px; }

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--c-white); }
.footer__link:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; border-radius: 2px; }

.footer__handle {
  font-size: 0.875rem;
  color: var(--c-primary);
  font-weight: 500;
}

.footer__socials { display: flex; flex-direction: column; gap: 6px; }

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.footer__social-link:hover { color: var(--c-white); }
.footer__social-link:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; border-radius: 2px; }

.footer__bottom {
  padding-block: 20px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  max-width: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE – TABLET  (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {

  :root { --section-gap: 72px; }

  /* Hide middle nav on mid-size screens */
  .nav, .header__socials { display: none; }
  .hamburger { display: flex; }
  .header__inner { gap: 16px; }
  .header__actions { gap: 8px; }

  /* Product grid: 3 cols */
  .product-grid { grid-template-columns: repeat(3, 1fr); }

  /* Hero */
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* About */
  .about__inner { gap: 40px; }

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

/* ══════════════════════════════════════════
   RESPONSIVE – MOBILE  (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

  :root {
    --section-gap: 56px;
    --pad-x: 16px;
  }

  /* Header: Text-Wortmarke ausblenden – Logo-Bild reicht auf Mobile */
  .logo__wordmark { display: none; }

  /* Logo-Bild etwas kleiner auf Mobile */
  .logo__img { height: 44px; }

  /* Etsy-Button: nur Icon zeigen */
  .header__etsy-btn span { display: none; }

  /* Hero: stack */
  .hero { padding-block: 56px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__media { order: -1; }
  .hero__img { aspect-ratio: 16 / 10; border-radius: var(--r-lg); }

  /* Products: 2 cols */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Categories: 1 col */
  .cat-grid { grid-template-columns: 1fr; }

  /* About: stack */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__visual { max-width: 380px; margin-inline: auto; width: 100%; }

  /* Contact: stack */
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }

  /* Footer: stack */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════
   RESPONSIVE – SMALL MOBILE  (≤ 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {

  /* Products: 2 cols auch auf sehr kleinen Screens */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* Kompaktere Card-Abstände damit bei ~167px Kartenbreite nichts gequetscht wirkt */
  .product-card__body { padding: 10px 10px 14px; gap: 2px; }
  .product-card__name { font-size: 0.82rem; }
  .product-card__price { font-size: 0.875rem; }

  /* Footer: single col */
  .footer__inner { grid-template-columns: 1fr; }

  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   ACCESSIBILITY – REDUCED MOTION
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════════════
   CART ICON IN HEADER
══════════════════════════════════════════ */
.header__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  color: var(--c-text-muted);
  transition: color var(--t-fast), background var(--t-fast);
  flex-shrink: 0;
}
.header__cart-btn:hover,
.header__cart-btn--active { color: var(--c-primary); background: var(--c-primary-light); }
.header__cart-btn:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}

/* ══════════════════════════════════════════
   PRODUCT CARD – PRICE + SHORT DESC + CLICK
══════════════════════════════════════════ */
.product-card--clickable { cursor: pointer; }
.product-card--clickable:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-top: 4px;
}

.product-card__short-desc {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}

.product-card__views {
  font-size: 0.6875rem;
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
  margin-top: 3px;
  opacity: 0.72;
}
.pdp-social-proof {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 10px 0 4px;
}
.pdp-social-proof__cart,
.pdp-social-proof__bought {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  letter-spacing: 0.01em;
  opacity: 0.78;
}

/* ══════════════════════════════════════════
   QUANTITY CONTROL (shared: PDP + Cart)
══════════════════════════════════════════ */
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 1.125rem;
  color: var(--c-text-body);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.qty-btn:hover { background: var(--c-primary-light); color: var(--c-primary); }

.qty-val {
  min-width: 36px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
  border-left: 1.5px solid var(--c-border);
  border-right: 1.5px solid var(--c-border);
  padding: 4px 8px;
}
.qty-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
  min-width: 42px;
  text-align: center;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP)
══════════════════════════════════════════ */
.pdp-breadcrumb {
  padding-top: 24px;
  padding-bottom: 0;
}

.pdp-back-link {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  font-weight: 500;
  transition: color var(--t-fast);
}
.pdp-back-link:hover { color: var(--c-primary); }

.pdp-section { padding-top: 32px; }

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.pdp-main-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
}
.pdp-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease), opacity 0.2s ease;
}
.pdp-main-img-wrap:hover .pdp-main-img { transform: scale(1.03); }

/* Prev / Next arrows on product detail page */
.pdp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  opacity: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  transition: opacity 0.35s ease;
}
.pdp-arrow--prev { left: 10px; }
.pdp-arrow--next { right: 10px; }
.pdp-main-img-wrap:hover .pdp-arrow { opacity: 1; }
.pdp-arrow:hover { opacity: 0.75; }

.pdp-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--c-border);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--t-fast);
  background: none;
}
.pdp-thumb:hover { border-color: var(--c-primary-border); }
.pdp-thumb--active { border-color: var(--c-primary); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Info column */
.pdp-tag { display: block; margin-bottom: 8px; }

.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.pdp-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--c-primary);
}
.pdp-price-note {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
}

.pdp-short-desc {
  font-size: 1rem;
  color: var(--c-text-body);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 100%;
}

.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.pdp-qty-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  min-width: 48px;
}

.pdp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pdp-btn-cart { flex: 1; min-width: 160px; justify-content: center; }
.pdp-btn-buy  { flex: 0; white-space: nowrap; }

.pdp-feedback {
  font-size: 0.875rem;
  color: var(--c-primary);
  font-weight: 500;
  padding: 10px 14px;
  background: var(--c-primary-light);
  border-radius: var(--r-md);
  border: 1px solid var(--c-primary-border);
  margin-bottom: 16px;
}

.pdp-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.pdp-chip {
  display: inline-block;
  padding: 5px 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  color: var(--c-text-body);
}

.pdp-desc {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
}
.pdp-desc__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 12px;
}
.pdp-desc__text {
  font-size: 0.9375rem;
  color: var(--c-text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 100%;
}
.pdp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdp-bullet {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  padding-left: 16px;
  position: relative;
}
.pdp-bullet::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-size: 0.6rem;
  top: 4px;
}

.pdp-error {
  text-align: center;
  padding: 48px 0;
  color: var(--c-text-muted);
  font-size: 1rem;
}
.pdp-loading { text-align: center; padding: 64px 0; color: var(--c-text-muted); }

/* PDP responsive */
@media (max-width: 768px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 32px; }
  .pdp-actions { flex-direction: column; }
  .pdp-btn-cart, .pdp-btn-buy { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.cart-empty {
  text-align: center;
  padding: 80px 24px;
}
.cart-empty__icon { font-size: 3.5rem; margin-bottom: 16px; }
.cart-empty__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--c-text);
}
.cart-empty__sub {
  color: var(--c-text-muted);
  margin-bottom: 32px;
  max-width: 40ch;
  margin-inline: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table thead tr {
  border-bottom: 2px solid var(--c-border);
}
.cart-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.cart-row {
  border-bottom: 1px solid var(--c-border);
}
.cart-row__img-cell { padding: 16px; width: 90px; }
.cart-row__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--r-md);
  display: block;
}
.cart-row__info { padding: 16px 16px 16px 0; vertical-align: top; }
.cart-row__name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
  display: block;
  margin-bottom: 4px;
}
.cart-row__name:hover { color: var(--c-primary); }
.cart-row__tag {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-row__price,
.cart-row__line-total {
  padding: 16px;
  font-size: 0.9375rem;
  color: var(--c-text-body);
  white-space: nowrap;
  vertical-align: middle;
}
.cart-row__line-total { font-weight: 600; color: var(--c-text); }
.cart-row__qty { padding: 16px; vertical-align: middle; }
.cart-row__remove { padding: 8px 16px; vertical-align: middle; }
.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text-muted);
  font-size: 1rem;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.cart-remove-btn:hover { color: #c0392b; background: #fdecea; }

/* Cart summary sidebar */
.cart-summary {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.cart-summary__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--c-text);
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--c-text-body);
  margin-bottom: 12px;
}
.cart-summary__row--muted { font-size: 0.8125rem; color: var(--c-text-muted); }
.cart-summary__row--total {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}
.cart-summary__divider {
  height: 1px;
  background: var(--c-border);
  margin: 12px 0;
}
.cart-summary__shipping-note {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  max-width: 100%;
}
.cart-summary__cta { margin-top: 0; }

/* Cart responsive */
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 600px) {
  .cart-table thead { display: none; }
  .cart-row { display: grid; grid-template-columns: 90px 1fr auto; grid-template-rows: auto auto; gap: 0; }
  .cart-row__img-cell { grid-row: 1 / 3; }
  .cart-row__info { grid-column: 2; padding-bottom: 4px; }
  .cart-row__qty { grid-column: 2; padding-top: 0; }
  .cart-row__price { display: none; }
  .cart-row__line-total { grid-column: 3; grid-row: 1; padding: 16px 16px 4px; }
  .cart-row__remove { grid-column: 3; grid-row: 2; padding: 0 16px 16px; }
}

/* ══════════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════════ */
.co-wrap {
  max-width: 640px;
  margin-inline: auto;
}

.co-stepper {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.co-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.co-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-muted);
  background: var(--c-bg);
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
}
.co-step--active .co-step__num {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}
.co-step--done .co-step__num {
  background: var(--c-primary-light);
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.co-step__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.co-step--active .co-step__label { color: var(--c-primary); font-weight: 600; }
.co-step__bar {
  flex: 1;
  height: 2px;
  background: var(--c-border);
  margin: 0 8px;
  margin-bottom: 22px;
}

.co-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--c-text);
}

.co-addr-row {
  display: flex;
  gap: 16px;
}
.co-addr-row .form-group { flex: 1; }

.co-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

/* Review step */
.co-review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--c-surface);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}
.co-review-section {
  display: flex;
  gap: 16px;
}
.co-review-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  min-width: 96px;
}
.co-review-value {
  font-size: 0.9375rem;
  color: var(--c-text-body);
  line-height: 1.6;
}

/* Order summary box */
.co-summary-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 20px;
}
.co-summary-box__title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.co-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9375rem;
  color: var(--c-text-body);
  margin-bottom: 8px;
}
.co-summary-row--total {
  font-weight: 600;
  color: var(--c-text);
  font-size: 1rem;
  margin-top: 4px;
}
.co-summary-name { flex: 1; }
.co-summary-qty {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  margin-left: 4px;
}
.co-summary-price { white-space: nowrap; margin-left: 16px; }
.co-summary-divider { height: 1px; background: var(--c-border); margin: 12px 0; }

.co-demo-note {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  background: #fff8e1;
  border: 1px solid #f5d77e;
  border-radius: var(--r-md);
  padding: 12px 16px;
  margin-bottom: 24px;
  max-width: 100%;
}

/* Confirmation */
.co-confirm {
  text-align: center;
  padding: 60px 24px;
  max-width: 480px;
  margin-inline: auto;
}
.co-confirm__icon { font-size: 3.5rem; margin-bottom: 20px; }
.co-confirm__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-text);
  margin-bottom: 16px;
}
.co-confirm__num {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}
.co-confirm__text {
  font-size: 0.9375rem;
  color: var(--c-text-body);
  margin-bottom: 16px;
  max-width: 100%;
}
.co-confirm__delivery {
  font-size: 0.9375rem;
  color: var(--c-primary);
  font-weight: 500;
  max-width: 100%;
}



/* ═══════════════════════════════════════════════════════════
   AUSVERKAUFT · Inventory · EU-Restriktionen
   ═══════════════════════════════════════════════════════════ */

/* ── AUSVERKAUFT-Badge (auf Produkt-Cards + PDP) ───────── */
.badge-sold-out {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(44, 38, 35, 0.82);   /* dunkles Braun, zum Design passend */
  color: #f5f0eb;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 5;
}

/* Inline-Variante im Warenkorb (kein absolute) */
.badge-sold-out--inline {
  position: static;
  display: inline-block;
  margin-top: 5px;
  font-size: 0.65rem;
  padding: 3px 8px;
}

/* ── Ausverkaufte Card im Shop-Grid ────────────────────── */
.product-card--sold-out {
  cursor: default;
  opacity: 0.72;
}
.product-card--sold-out .product-card__img-wrap {
  filter: grayscale(35%);
}
.product-card--sold-out .product-card__name,
.product-card--sold-out .product-card__short-desc {
  opacity: 0.65;
}

/* ── Disabled-Buttons (Warenkorb, PDP) ─────────────────── */
.btn:disabled,
button.btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}
.qty-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* ── Ausverkaufte Zeile im Warenkorb ───────────────────── */
.cart-row--unavailable td {
  opacity: 0.55;
}
.qty-val--dimmed {
  display: inline-block;
  opacity: 0.55;
}

/* ── Warenkorb-Hinweis bei nicht verfügbaren Artikeln ─── */
.cart-unavailable-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: #fdf8f4;
  border: 1px solid #e0cfc4;
  border-radius: 6px;
  color: #7a5c48;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ── PDP AUSVERKAUFT-Badge ──────────────────────────────── */
.pdp-sold-out-badge {
  display: inline-block;
  background: rgba(44, 38, 35, 0.82);
  color: #f5f0eb;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}

/* ── PDP Mengen-Hinweis (max. X Stück) ─────────────────── */
.pdp-stock-hint {
  font-size: 0.8rem;
  color: var(--c-text-muted, #999);
  margin-top: 6px;
}

/* ── PDP Feedback-Meldung (Fehlerfarbe) ─────────────────── */
.pdp-feedback--error {
  color: #9e6b52;   /* ruhiges Terrakotta statt knalliges Rot */
}

/* ── Checkout EU-Restriktions-Styles ────────────────────── */

/* Kleiner Hinweis unter dem Label */
.co-country-hint {
  margin: 0 0 8px;
  font-size: 0.8rem;
  color: var(--c-text-muted, #999);
  line-height: 1.4;
}

/* Inline-Fehlermeldung (kein Popup) */
.co-country-error {
  margin-top: 10px;
  padding: 10px 14px;
  background: #fdf8f4;
  border: 1px solid #e0cfc4;
  border-radius: 6px;
  color: #7a5c48;         /* passt zum Seraphyshop-Farbton */
  font-size: 0.875rem;
  line-height: 1.5;
}



/* ═══════════════════════════════════════════════════════════
   HERO CAROUSEL
   ═══════════════════════════════════════════════════════════ */

.hero-carousel {
  position: relative;
  display: block;
  line-height: 0;          /* entfernt Lücke unter Bild */
  border-radius: inherit;
}

/* Bilder – Crossfade-Übergang */
.hero-carousel__img {
  display: block;          /* immer im DOM, kein display-Wechsel */
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  border-radius: var(--r-xl);
}
.hero-carousel__img--active {
  opacity: 1;
  position: relative;      /* hält die Höhe des Containers */
  pointer-events: auto;
}

/* Pfeil-Buttons */
.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 251, 248, 0.78);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  line-height: 1;
  color: #4a3728;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s, transform 0.15s;
  z-index: 4;
  backdrop-filter: blur(4px);
}
.hero-carousel__btn:hover {
  background: rgba(255, 251, 248, 0.95);
  transform: translateY(-50%) scale(1.07);
}
.hero-carousel__btn--prev { left: 12px; }
.hero-carousel__btn--next { right: 12px; }

/* Dots */
.hero-carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.hero-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 251, 248, 0.55);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: 1.5px solid rgba(255,251,248,0.4);
}
.hero-carousel__dot--active {
  background: rgba(255, 251, 248, 0.95);
  transform: scale(1.25);
}

/* ═══════════════════════════════════════════════════════════
   SPRACH-SWITCHER (DE / EN)
   ═══════════════════════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 1px;
}
.lang-sep {
  color: var(--c-border);
  font-size: 0.7rem;
  padding: 0 1px;
  user-select: none;
  line-height: 1;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 5px;
  color: var(--c-text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: 0.06em;
  border-radius: 4px;
  transition: color var(--t-fast), background var(--t-fast);
  line-height: 1;
}
.lang-btn:hover {
  color: var(--c-primary);
  background: var(--c-primary-light);
}
.lang-btn--active {
  color: var(--c-primary);
  font-weight: 700;
}
.lang-btn:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 1px;
}

/* ─── Catalog Divider (zwischen Featured-Grid und Filter-Tabs) ──────── */
.catalog-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0 20px;
}
.catalog-divider::before,
.catalog-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.catalog-divider__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.catalog-divider__more {
  text-decoration: none;
  transition: color 0.18s;
}
.catalog-divider__more:hover {
  color: var(--c-accent, #a07070);
}

/* ─── Search ─────────────────────────────────────────────────────────── */
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--c-text);
  border-radius: 6px;
  transition: color var(--t-fast), background var(--t-fast);
  line-height: 1;
}
.search-btn:hover {
  color: var(--c-primary);
  background: var(--c-primary-light);
}
.search-btn:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

.search-panel {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  z-index: 99;
}

.search-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 12px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--c-bg);
  transition: border-color var(--t-fast);
}
.search-field:focus-within {
  border-color: var(--c-primary);
}
.search-field > svg {
  flex-shrink: 0;
  color: var(--c-text-muted);
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--c-text);
  outline: none;
  min-width: 0;
}
.search-input::placeholder {
  color: var(--c-text-muted);
}

.search-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--c-text-muted);
  border-radius: 4px;
  flex-shrink: 0;
  transition: color var(--t-fast);
  line-height: 1;
}
.search-close-btn:hover { color: var(--c-text); }
.search-close-btn:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

.search-suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-suggestions:not(:empty) {
  margin-top: 8px;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
}

.search-suggestion {
  border-bottom: 1px solid var(--c-border);
}
.search-suggestion:last-child { border-bottom: none; }

.search-suggestion__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  transition: background var(--t-fast);
}
.search-suggestion__link:hover {
  background: var(--c-primary-light);
}

.search-suggestion__img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--c-border);
}

.search-suggestion__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.search-suggestion__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggestion__tag {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggestion__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-primary);
  flex-shrink: 0;
  white-space: nowrap;
}

.search-no-results {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  text-align: center;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  margin-top: 8px;
}

/* ─── Ähnliche Produkte (product.html) ──────────────────────────────── */
.similar-section {
  border-top: 1px solid var(--c-border);
  padding-top: 48px;
  padding-bottom: 64px;
  background: var(--c-surface);
}
.similar-section__title {
  font-family: var(--f-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 28px;
}
.similar-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .similar-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}


/* ══════════════════════════════════════════════════════════
   COUPON / VOUCHER STYLES
   ══════════════════════════════════════════════════════════ */

.coupon-wrap { margin-top: 12px; }

.coupon-input-row {
  display: flex;
  gap: 8px;
}
.coupon-input {
  flex: 1;
  font-size: 0.875rem;
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.coupon-apply-btn {
  white-space: nowrap;
  font-size: 0.8125rem;
  padding: 8px 14px;
}

.coupon-msg {
  margin-top: 6px;
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 6px;
}
.coupon-msg--ok  { background: #f0faf4; color: #2a7a4f; }
.coupon-msg--err { background: #fff0f0; color: #c0392b; }

.cart-summary__row--discount {
  color: #2a7a4f;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   NEWSLETTER FLOAT-BUTTON  (newsletter.js)
   Kit's eigenes Popup rendert sich selbst –
   hier nur der Float-Reopen-Button.
══════════════════════════════════════════ */

/* Slide-in von unten wenn der Button erscheint */
@keyframes nl-btn-in {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

#nl-float-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;           /* unten LINKS */
  z-index: 1000010;   /* über Kit's .seva-overlay (1000002) */
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 18px 11px 14px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.18s ease;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 7px;
  animation: nl-btn-in 0.45s cubic-bezier(.34,1.56,.64,1) both;
}
#nl-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.26);
}
#nl-float-btn:active {
  transform: translateY(0);
}
/* Versteckt-Zustand: [hidden] explizit überschreiben (display:flex würde sonst gewinnen) */
#nl-float-btn[hidden] {
  display: none !important;
}
/* Envelope-Icon im Button */
#nl-float-btn .nl-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.92;
}

@media (max-width: 480px) {
  #nl-float-btn {
    bottom: 16px;
    left: 16px;
    font-size: 0.8125rem;
    padding: 9px 14px 9px 11px;
    gap: 6px;
  }
}

/* ══════════════════════════════════════════
   KIT POPUP – Mobile Image Fix
   Das Hintergrundbild im Kit-Popup wird auf
   mobilen Geräten abgeschnitten. Hier wird
   es korrekt eingepasst.
══════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Kit's Popup-Overlay: flexibles Layout auf Mobile */
  .seva-overlay,
  .formkit-overlay {
    align-items: flex-start !important;
    overflow-y: auto !important;
  }

  /* Kit's Modal: kein festes Overflow-Hidden, damit Bild sichtbar bleibt */
  .seva-modal,
  .formkit-modal {
    max-height: none !important;
    overflow: visible !important;
    width: calc(100% - 24px) !important;
    max-width: 460px !important;
    border-radius: 14px !important;
    margin: 16px auto !important;
  }

  /* Kit's Hintergrundbild: 3:2-Seitenverhältnis auf Mobile, kein Abschneiden */
  .formkit-background,
  .seva-background,
  [data-element="background"] {
    position: relative !important;
    aspect-ratio: 3 / 2 !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* Kit's Bild-Element (falls als <img> gerendert) */
  .formkit-background img,
  .seva-background img,
  [data-element="background"] img {
    width: 100% !important;
    aspect-ratio: 3 / 2 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
}
