/**
 * Shop 2 (LARP-ZELTE) — Light Layout
 * Design Tokens + Layout aus lz.html, product.html, kategorie.html
 * Cinzel (Display) + Plus Jakarta Sans (Body) via Google Fonts
 */

:root {
  /* Light Design Tokens (Referenz lz.html) */
  --brand-red: #8b1d1d;
  --brand-red-dark: #6b1414;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --bg-light: #ffffff;
  --bg-soft: #f8f9fa;
  --border: #eeeeee;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.06);

  --font-display: "Cinzel", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-mono: "Plus Jakarta Sans", sans-serif;
  --font-outfit: "Outfit", var(--font-body), sans-serif;
  --font-cinzel-decorative: "Cinzel Decorative", "Cinzel", serif;
  --skeleton-bg: rgba(120, 120, 120, 0.16);
  --skeleton-bg-soft: rgba(120, 120, 120, 0.10);
  --skeleton-surface: rgba(120, 120, 120, 0.10);

  --transition: 0.25s ease;

  /* PFLICHT (.cursorrules 17b): Header-Icons */
  --header-icon-bg: var(--bg-soft);
  --header-icon-empty-color: var(--brand-red);

  /* PFLICHT (.cursorrules 17b): Suchfeld */
  --header-search-bg: #f5f0ea;
  --header-search-icon: #333333;
  --header-search-text: #333333;
  --header-search-placeholder: #888888;

  /* Kompatibilität mit bestehenden Komponenten */
  --color-bg: var(--bg-light);
  --color-surface: var(--bg-light);
  --color-surface-2: var(--bg-soft);
  --color-surface-3: #ebedee;
  --color-border: var(--border);
  --color-gold: var(--brand-red);
  --color-gold-light: var(--brand-red);
  --color-gold-dim: var(--brand-red-dark);
  --color-text-primary: var(--text-dark);
  --color-text-secondary: var(--text-muted);
  --color-accent: var(--brand-red);
  --color-accent-light: var(--brand-red-dark);
  --color-white: #ffffff;

  --bg: var(--bg-light);
  --text: var(--text-dark);
  --bg-base: var(--bg-light);
  --bg-surface: var(--bg-light);
  --bg-card: var(--bg-light);
  --accent: var(--brand-red);
  --accent-glow: rgba(139, 29, 29, 0.2);
  --text-primary: var(--text-dark);
  --text-secondary: var(--text-muted);
  --text-muted: var(--text-muted);
  --border: var(--border);

  --shadow-glow: 0 0 40px rgba(139, 29, 29, 0.15);
  --shadow-card: var(--shadow);
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--brand-red);
  color: white;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   LAYOUT HELPERS
   ========================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.section-padding {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), transparent);
  margin-block: 1rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-red);
  color: white;
  box-shadow: 0 10px 25px rgba(139, 29, 29, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-2px);
}

/* ==========================================
   TOPBAR
   ========================================== */
.topbar {
  background: var(--brand-red);
  color: white;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-outfit);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--brand-red);
}

.shop2-header-container {
  max-width: none;
  width: 100%;
  padding-inline: clamp(0.75rem, 2vw, 1.5rem);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1rem;
  width: 100%;
}

.shop2-nav-layout {
  display: grid;
  grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.shop2-nav-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.shop2-nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.shop2-nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  width: 100%;
}

.shop2-search-wrap {
  flex: 0 1 420px;
  min-width: 220px;
  max-width: 420px;
  margin-left: auto;
}

.shop2-action-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-red);
}

.logo-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--brand-red);
  border-radius: 6px;
}

.logo-waldgeist {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

/* Light theme: Kreis weiß, innere Grafik dunkel */
.logo-waldgeist circle {
  fill: white;
}

.logo-waldgeist [fill="#fff"] {
  fill: var(--text-dark);
}

.logo-waldgeist-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--brand-red);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.logo-text span {
  color: var(--brand-red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand-red);
}

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

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--header-icon-bg);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--brand-red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.burger-btn-shop2 {
  background: color-mix(in srgb, var(--header-icon-bg) 88%, var(--brand-red) 12%);
  color: var(--header-icon-empty-color, var(--text-dark));
  border: 1px solid var(--brand-red) !important;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--brand-red) 35%, transparent);
}

.burger-btn-shop2:hover,
.burger-btn-shop2:focus-visible {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 50%, #fefefe 0%, #f2f2f2 100%);
  padding-top: 60px;
  overflow: hidden;
}

.hero-bg {
  display: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  width: 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--brand-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  display: none;
}

/* Hero: Cinzel Decorative Bold 700 (.cursorrules 17b) */
.hero h1,
.hero-heading {
  font-family: var(--font-cinzel-decorative);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero h1 em,
.hero-heading em {
  display: block;
  font-style: normal;
  font-weight: 400;
  color: var(--brand-red);
  font-size: 0.8em;
}

.hero-lead {
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 540px;
  font-family: var(--font-body);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-family: var(--font-body);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

.hero-image {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  min-height: 400px;
}

.hero-image--mobile {
  display: none;
}

.hero-image img {
  width: 125%;
  max-width: 850px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
  object-fit: contain;
  object-position: right center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator--mobile {
  display: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ==========================================
   TRUST BAR — PFLICHT (.cursorrules 17b)
   ========================================== */
.trust-bar {
  background: var(--brand-red);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-block: 1.25rem;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  font-family: var(--font-outfit);
  letter-spacing: 0.03em;
  font-size: 0.875rem;
  color: #ffffff;
}

.trust-item svg {
  color: #ffffff;
  flex-shrink: 0;
}

/* ==========================================
   BENTO CATEGORIES (Shop 1 / Fallback)
   ========================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: 0.4s;
  border: 1px solid var(--border);
  text-align: center;
}

.bento-item:hover {
  background: var(--bg-light);
  border-color: var(--brand-red);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.bento-item h3 {
  font-family: var(--font-display);
  color: var(--brand-red);
  margin-top: 1rem;
}

/* ==========================================
   WALDGEIST KATEGORIEKARTEN (Startseite, nur Shop 2)
   ========================================== */
.home-category-cards-section {
  padding: 60px 24px;
}

.home-category-cards-wrapper {
  display: flex;
  justify-content: center;
  font-family: var(--font-body);
}

.home-category-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1060px;
}

.home-category-card {
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: inherit;
  display: block;
}

.home-category-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(150deg, #2a0d0d 0%, #1a0808 45%, #0f0a0a 100%);
}

.home-category-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.home-category-card-glow {
  position: absolute;
  z-index: 1;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  background: radial-gradient(
    circle at 50% 60%,
    rgba(180, 35, 35, 0.45) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.home-category-card-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 40%,
    rgba(220, 80, 80, 0.6) 60%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-category-card-corner {
  position: absolute;
  z-index: 3;
  width: 20px;
  height: 20px;
  opacity: 0.22;
  transition: opacity 0.4s;
}

.home-category-card-corner.tl {
  top: 12px;
  left: 12px;
}

.home-category-card-corner.br {
  bottom: 12px;
  right: 12px;
  transform: rotate(180deg);
}

.home-category-card-icon-wrapper {
  position: absolute;
  z-index: 3;
  inset: 0;
  bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-category-card-icon-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-category-card-icon-inner svg {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 0 rgba(180, 35, 35, 0));
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-category-card-icon-halo {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 35, 35, 0.35) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.home-category-card-rule {
  position: absolute;
  z-index: 2;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.home-category-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 0 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: linear-gradient(
    to top,
    rgba(10, 4, 4, 0.92) 0%,
    transparent 100%
  );
  padding-top: 40px;
}

.home-category-card-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2ead8;
  text-align: center;
  line-height: 1.35;
  transition: color 0.4s;
}

.home-category-card-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #b8aa94;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover */
.home-category-card:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 28px 60px rgba(139, 29, 29, 0.45),
    0 0 0 1px rgba(180, 50, 50, 0.7);
  border-color: rgba(180, 50, 50, 0.7);
}

.home-category-card:hover .home-category-card-glow {
  opacity: 1;
}

.home-category-card:hover .home-category-card-shimmer {
  transform: scaleX(1);
}

.home-category-card:hover .home-category-card-icon-inner {
  transform: translateY(-6px) scale(1.08);
}

.home-category-card:hover .home-category-card-icon-halo {
  opacity: 1;
}

.home-category-card:hover .home-category-card-icon-inner svg {
  filter: drop-shadow(0 0 12px rgba(200, 60, 60, 0.7));
}

.home-category-card:hover .home-category-card-label {
  color: #fff;
}

.home-category-card:hover .home-category-card-sub {
  opacity: 1;
  transform: translateY(0);
}

.home-category-card:hover .home-category-card-corner {
  opacity: 0.55;
}

.home-category-card:hover .home-category-card-rule {
  width: 48px;
}

.home-category-card:hover .home-category-card-bg {
  background: linear-gradient(
    150deg,
    #3a1010 0%,
    #220a0a 45%,
    #130808 100%
  );
}

/* Staggered entrance */
.home-category-card {
  opacity: 0;
  animation: homeCategoryCardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes homeCategoryCardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-category-card {
    animation: none;
    opacity: 1;
  }
}

/* ==========================================
   CATEGORY GRID (Startseite)
   ========================================== */
.categories-section {
  background: var(--bg-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: 0.4s;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: var(--brand-red);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-soft);
}

.category-card-content {
  position: relative;
  z-index: 1;
}

.category-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.4rem;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.category-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.category-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  z-index: 1;
}

.category-card:hover .category-arrow,
.category-card:focus-visible .category-arrow {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: white;
}

.cat-featured {
  grid-column: span 2;
  aspect-ratio: unset;
  min-height: 280px;
}

.cat-1, .cat-2, .cat-3, .cat-4, .cat-5, .cat-6 {
  /* Platzhalter für Kategorie-Hintergründe */
}

/* ==========================================
   PRODUCTS
   ========================================== */
.products-section {
  background: var(--bg-light);
}

/* Category-hero direkt unter Header, kein Abstand oben; unten Abstand beibehalten */
.products-listing-shop2 {
  padding-top: 0;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.products-listing-shop2 .container {
  max-width: none;
  width: 100%;
  padding-inline: clamp(1rem, 4vw, 3.25rem);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.products-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
}

.text-gold {
  color: var(--brand-red) !important;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.filter-tab.active {
  background: rgba(139, 29, 29, 0.08);
}

/* Grid: Startseite 4 Spalten, Kategorien 3 Spalten */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.products-grid-home {
  grid-template-columns: repeat(4, 1fr);
}

.products-home-container {
  max-width: none !important;
  width: 100%;
  padding-inline: clamp(1rem, 4vw, 3.25rem);
  margin-inline: 0;
}

.products-home-container .products-grid-home {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  align-items: start;
  gap: 1.5rem;
}

.products-home-slider-shell {
  position: relative;
}

.products-home-slider {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.products-home-slider::-webkit-scrollbar {
  display: none;
}

.products-home-slider .products-grid-home {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-home-slider .products-grid-home > li {
  flex: 0 0 clamp(280px, 23vw, 340px);
  scroll-snap-align: start;
}

.products-home-slider-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.products-home-slider-arrow.is-left {
  left: -0.5rem;
}

.products-home-slider-arrow.is-right {
  right: -0.5rem;
}

.products-home-slider-arrow:hover,
.products-home-slider-arrow:focus-visible {
  background: #ffffff;
  border-color: var(--brand-red);
  transform: translateY(-50%) scale(1.04);
}

@media (max-width: 900px) {
  .products-home-slider-arrow {
    display: none;
  }
}

@media (max-width: 1199px) {
  .products-grid,
  .products-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .products-grid,
  .products-grid-home {
    grid-template-columns: 1fr;
  }
}

/* ONLYSHOP2: Produktliste mit Full-Width-Grid im Bento-Stil */
.products-listing-shop2 .products-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

/* Karte */
.product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid #eeeeee;
  transition: all 0.4s ease;
  position: relative;
  font-family: var(--font-body);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-red);
}

/* Listing-Karten nur für Shop-2-PLP */
.products-listing-shop2 .product-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: transform 0.45s cubic-bezier(0.15, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.15, 0, 0.2, 1),
    border-color 0.3s ease;
}

.products-listing-shop2 .product-card:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.products-listing-shop2 .product-card > a {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

/* Badge */
.product-badge-bestseller,
.product-badge,
.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #8b1d1d;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
}

.product-stock-badge {
  position: static;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  text-transform: uppercase;
}

.product-stock-badge.is-in-stock {
  background: #d8f5d0;
}

.product-stock-badge.is-out-of-stock {
  background: #ffd9d9;
}

.products-listing-shop2 .product-stock-badge.is-in-stock {
  background: #d8f5d0;
}

.products-listing-shop2 .product-stock-badge.is-out-of-stock {
  background: #ffd9d9;
}

/* Bildbereich */
.product-image,
.card-img-wrap {
  background: #f8f9fa;
  border-radius: 10px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1.2rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.products-listing-shop2 .card-img-wrap {
  margin: 0;
  border-radius: 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f5 100%);
}

.product-image img,
.product-image [data-product-image],
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-body {
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.6rem;
}

.products-listing-shop2 .product-card-body {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.4);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.6rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.product-category {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red);
}

/* Titel */
.product-card h3,
.card-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-listing-shop2 .product-card h3,
.products-listing-shop2 .card-content h3 {
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: -0.01em;
  min-height: 2.8em;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover {
  color: var(--brand-red);
}

/* Beschreibung */
.product-desc {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.products-listing-shop2 .product-desc {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.product-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

/* Preis */
.product-price,
.card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #8b1d1d;
  display: block;
}

.products-listing-shop2 .product-price,
.products-listing-shop2 .card-price {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
  min-height: 2.5rem;
}

/* Button */
.add-to-cart,
.btn-quick-add {
  margin-top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: #8b1d1d;
  color: white;
  padding: 0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-family: var(--font-body);
  justify-self: end;
  align-self: end;
}

.products-listing-shop2 .add-to-cart,
.products-listing-shop2 .btn-quick-add {
  margin-top: 0;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  padding: 0;
  background: var(--text-dark);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
  justify-self: end;
  align-self: end;
}

.products-listing-shop2 .product-card-actions {
  min-height: 2.5rem;
}

.add-to-cart:hover,
.add-to-cart:focus-visible,
.btn-quick-add:hover,
.btn-quick-add:focus-visible {
  background: #6b1414;
}

.add-to-cart-sold-out {
  margin-top: 0;
  width: fit-content;
  padding: 0.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--text-muted);
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  justify-self: end;
  align-self: end;
}

.products-listing-shop2 .add-to-cart-sold-out {
  margin-top: 0;
  width: fit-content;
  min-width: 0;
  border-radius: 16px;
  text-transform: none;
  justify-self: end;
  align-self: end;
}

/* ==========================================
   PLP (Kategorieansicht)
   ========================================== */
.category-hero {
  width: 100%;
  padding: 5rem 2rem;
  margin-bottom: 3rem;
  background: radial-gradient(circle at center, #fdfbfb 0%, #ebedee 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-hero-bg-text {
  position: absolute;
  top: -50px;
  right: -50px;
  font-family: var(--font-display);
  font-size: 15rem;
  color: rgba(139, 29, 29, 0.03);
  pointer-events: none;
  user-select: none;
}

.category-hero-breadcrumb {
  font-family: var(--font-outfit);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.category-hero-breadcrumb-sep {
  margin: 0 10px;
  opacity: 0.3;
  color: #1a1a1a;
}

.category-hero h1 {
  font-family: var(--font-cinzel-decorative);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.category-hero h1 em {
  font-style: normal;
  color: var(--brand-red);
}

.category-hero-stats {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  font-family: var(--font-outfit);
  font-weight: 400;
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plp-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Pagination mobile overflow fix — ONLYSHOP2 */
.products-listing-shop2 .plp-pagination {
  max-width: 100%;
}

@media (max-width: 768px) {
  .products-listing-shop2 .plp-pagination {
    gap: 0.5rem;
    padding-inline: 0.5rem;
  }
  .products-listing-shop2 .plp-pagination > a,
  .products-listing-shop2 .plp-pagination > span {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
  .products-listing-shop2 .plp-pagination .plp-pagination-pages {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem;
  }
  .products-listing-shop2 .plp-pagination .plp-pagination-pages a {
    min-width: 2rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    font-size: 0.8125rem;
  }
}

.filter-sidebar {
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 3rem;
}

.filter-title {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  display: block;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  font-family: var(--font-body);
}

.filter-list {
  list-style: none;
}

.filter-item {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: var(--font-body);
}

.filter-item input {
  accent-color: var(--brand-red);
  width: 18px;
  height: 18px;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.sort-select {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid var(--border);
  outline: none;
}

/* card-img-wrap / card-content / card-price / btn-quick-add: siehe oben (PRODUCTKTCARD.md) */

.card-rating {
  color: #f1c40f;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

/* ==========================================
   PDP (Produktdetail)
   ========================================== */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-family: var(--font-body);
}

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

.breadcrumbs a:hover {
  color: var(--brand-red);
}

.breadcrumbs span {
  margin: 0 10px;
  opacity: 0.5;
}

.pdp-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pdp-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pdp-tabs-full {
  width: 100%;
  margin-top: 4rem;
}

/* Shop 2: Horizontale Tabs nebeneinander */
.pdp-tabs-horizontal {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.pdp-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.pdp-tab-btn {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.pdp-tab-btn[aria-selected="true"] {
  border-color: var(--border);
  border-bottom: 1px solid var(--bg-card);
  margin-bottom: -2px;
}

.pdp-tab-panels {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pdp-tab-panel {
  padding: 2rem;
  background: var(--bg-light);
  min-height: 120px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
}

.main-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s;
}

.main-image img:hover {
  transform: scale(1.05);
}

.thumbnail-bar {
  display: flex;
  gap: 1rem;
}

.thumb {
  width: 80px;
  height: 80px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
}

.thumb.active {
  border-color: var(--brand-red);
}

.product-info h1 {
  font-family: var(--font-body);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.price-wrapper {
  margin-bottom: 2rem;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-red);
  display: block;
  font-family: var(--font-cinzel-decorative);
}

.tax-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.variation-group {
  margin-bottom: 1.5rem;
}

.variation-label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: block;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.chips {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.chip {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--brand-red);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.2s;
  font-family: var(--font-body);
}

.chip:hover {
  border-color: var(--brand-red);
}

.chip.active {
  background: var(--brand-red);
  color: white;
  border-color: var(--brand-red);
}

.purchase-box {
  background: var(--bg-soft);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.pdp-variant-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pdp-variant-price-row .qty-input {
  margin-bottom: 0;
}

.pdp-variant-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-red);
  font-family: var(--font-cinzel-decorative);
}

/** Gesamtpreis inkl. Zubehör: rechtsbündig, halbe Preisschriftgröße, rot */
.pdp-total-with-accessories {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-red);
  font-family: var(--font-cinzel-decorative);
}

.qty-input {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.qty-input button {
  background: none;
  border: none;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-weight: 700;
}

.qty-input input {
  width: 40px;
  text-align: center;
  border: none;
  font-weight: 700;
  outline: none;
}

.btn-cart {
  width: 100%;
  background: var(--brand-red);
  color: white;
  padding: 1.2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
}

.btn-cart:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 29, 29, 0.2);
}

.product-features {
  list-style: none;
  margin-top: 2rem;
}

.product-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: 900;
}

.description-section {
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.desc-text {
  max-width: 800px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: #111;
  color: #fff;
  padding: 5rem 0;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
}

.footer-brand h3,
.footer-col h4 {
  font-family: var(--font-display);
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-brand p,
.footer-links a {
  color: #FFF;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

/* Zahlung & Versand Badges (Tech-Stack-Style) */
.footer-payment-shipping-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-method-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 0.25rem 0.625rem;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-method-badge:hover {
  color: #ffffff;
  border-color: var(--brand-red);
  background: rgba(139, 29, 29, 0.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
  font-size: 0.8rem;
  color: #555;
}

/* Tech-Stack-Strip — ONLYSHOP2: Weiß, ggf. rot, zentriert unten im Footer */
.tech-stack-strip--shop2 {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.875rem 1.5rem;
  margin-top: 0;
  text-align: center;
}

.tech-stack-strip--shop2 .tech-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.tech-stack-strip--shop2 .tech-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.tech-stack-strip--shop2 .tech-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-stack-strip--shop2 .tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 0.25rem 0.625rem;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.tech-stack-strip--shop2 .tech-badge:hover {
  color: #ffffff;
  border-color: var(--brand-red);
  background: rgba(139, 29, 29, 0.2);
}

.tech-stack-strip--shop2 .tech-badge--ai:hover {
  border-color: var(--brand-red);
  background: rgba(139, 29, 29, 0.15);
}

.footer-bottom--shop2 {
  color: #ffffff;
  margin-top: 1rem;
  padding-top: 1rem;
}

.footer-bottom--shop2 p {
  color: #ffffff;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
/* Shop 2 Mobile: Overflow verhindern */
@media (max-width: 768px) {
  .site-header .container {
    overflow-x: hidden;
  }
  .shop2-header-container {
    padding-inline: 0.75rem;
  }
  .nav-wrapper {
    min-width: 0;
    gap: 0.75rem;
    height: 68px;
  }
  .shop2-nav-layout {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 0.5rem;
  }
  .nav-actions {
    min-width: 0;
    flex-shrink: 0;
    gap: 0.5rem;
  }
  .logo-waldgeist {
    height: 36px;
  }
  .shop2-nav-right {
    gap: 0.5rem;
    width: auto;
  }
  .shop2-search-wrap {
    min-width: 0;
    max-width: none;
    margin-left: 0;
  }
  .shop2-action-buttons {
    margin-left: 0;
  }
  .icon-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-lead {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-image {
    justify-content: center;
    padding: 3rem 0;
  }

  .hero-image img {
    width: 80%;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .bento-grid,
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    display: none;
  }
}

/* Hero mobile — ONLYSHOP2: Bild ausblenden, Entdecken unten, Trustbar erst beim Scrollen */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 2.5rem 0 2rem;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .hero-image--desktop {
    display: none !important;
  }

  .hero-image--mobile {
    display: block !important;
    position: relative;
    width: calc(100% - 3rem);
    margin: 1.5rem 1.5rem;
    min-height: 0;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .hero-image--mobile img {
    object-fit: contain !important;
    object-position: center !important;
  }

  .hero-eyebrow {
    font-family: var(--font-cinzel-decorative);
    font-size: 0.75rem;
  }

  .hero h1,
  .hero-heading {
    font-family: var(--font-cinzel-decorative);
    font-weight: 700;
    font-size: clamp(2rem, 10vw, 3.5rem);
    line-height: 1.05;
  }

  .hero-lead {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats--desktop {
    display: none !important;
  }

  .scroll-indicator--desktop {
    display: none !important;
  }

  /* Entdecken + Pfeil: unten im Hero, mittig, scrollt mit (nicht sticky) */
  .hero {
    overflow: visible;
  }

  .scroll-indicator--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* Trustbar: erst beim Scrollen sichtbar (unterhalb des Viewports) */
  .trust-bar {
    margin-top: 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .stat-number {
    font-family: var(--font-body);
    font-size: 1.5rem;
  }

  .stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
  }

}

/* Category Cards — 2x2 Grid NUR in mobiler Ansicht */
@media (max-width: 768px) {
  .home-category-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .plp-layout {
    grid-template-columns: 1fr;
  }

  .plp-layout > section {
    min-width: 0;
  }

  .filter-sidebar {
    display: none;
  }

  .category-hero h1 {
    font-size: 2rem;
  }

  .pdp-top {
    grid-template-columns: 1fr;
  }

  .product-info h1 {
    font-size: 1.8rem;
  }
}

/* PDP mobile — ONLYSHOP2: Produktbild Overflow verhindern */
@media (max-width: 768px) {
  .pdp-layout {
    min-width: 0;
    overflow-x: hidden;
  }

  .pdp-top {
    min-width: 0;
    overflow-x: hidden;
  }

  .product-gallery {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .product-gallery .main-image,
  .product-gallery [class*="main-image"] {
    max-width: 100%;
    width: 100%;
  }

  .product-gallery .main-image img,
  .product-gallery .main-image [data-nimg="1"] {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 600px) {
  .cat-featured {
    grid-column: span 1;
  }

  .bento-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
  SHOP2 HOMEPAGE REDESIGN (ONLYSHOP2)
  ========================================== */
.s2-home {
  background: #fff;
}

.s2-home-hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(145deg, #120909 0%, #2a1313 55%, #402020 100%);
  color: #fff;
}

.s2-home-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.s2-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.s2-home-eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.s2-home-hero-heading {
  font-family: var(--font-cinzel-decorative);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  margin: 0;
}

.s2-home-hero-heading em {
  display: block;
  font-style: normal;
  color: #f3dfcc;
  font-weight: 700;
  font-size: 0.84em;
  line-height: 1.02;
}

.s2-home-hero-lead {
  margin-top: 1.25rem;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.86);
}

.s2-home-hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.s2-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.s2-home-btn-primary {
  background: var(--brand-red);
  color: #fff;
}

.s2-home-btn-primary:hover,
.s2-home-btn-primary:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
}

.s2-home-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.s2-home-btn-ghost:hover,
.s2-home-btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.s2-home-hero-stats {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.s2-home-stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}

.s2-home-stat-number {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.s2-home-stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.s2-home-hero-media {
  position: relative;
  min-height: clamp(280px, 48vw, 580px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.s2-home-benefits {
  background: #f8f0ed;
  border-top: 1px solid #eaded7;
  border-bottom: 1px solid #eaded7;
}

.s2-home-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0.95rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  align-items: center;
  justify-content: center;
}

.s2-home-benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: #432f2f;
}

.s2-home-categories {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.s2-home-section-head {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.s2-home-section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-red);
  font-weight: 700;
}

.s2-home-section-head h2 {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

.s2-home-section-head p {
  margin-top: 0.55rem;
  color: var(--text-muted);
}

.s2-home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.s2-home-category-card {
  position: relative;
  min-height: 185px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #2b1212 0%, #442020 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.s2-home-category-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.22), transparent 45%);
}

.s2-home-category-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.s2-home-category-label {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.s2-home-category-sub {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.s2-home-products {
  padding-top: 1.4rem;
}

.s2-home-products-head {
  padding-bottom: 0.7rem;
  border-bottom: 0;
}

.s2-home-products-head h2 {
  font-family: var(--font-outfit);
  font-size: 1.875rem;
  font-weight: 700;
  color: #2b2222;
}

.s2-home-products-subtitle {
  font-family: var(--font-outfit);
  font-size: 1rem;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 0.25rem;
}

.s2-home-products-link {
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
}

.s2-home-products-link:hover,
.s2-home-products-link:focus-visible {
  color: var(--brand-red);
}

.s2-home-product-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d9cec2;
  border-top: 3px solid #7a1f12;
  box-shadow: 0 10px 22px rgba(21, 14, 14, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.s2-home-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 29, 29, 0.45);
  box-shadow: 0 14px 26px rgba(21, 14, 14, 0.1);
}

/* Kategorie-Produktcards in Shop2: exakt wie Homepage-Card */
.products-listing-shop2 .s2-home-product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d9cec2;
  border-top: 3px solid #7a1f12;
  box-shadow: 0 10px 22px rgba(21, 14, 14, 0.07);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
}

.products-listing-shop2 .s2-home-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 29, 29, 0.45);
  box-shadow: 0 14px 26px rgba(21, 14, 14, 0.1);
}

.products-listing-shop2 .s2-home-product-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.s2-home-product-image {
  background: #fff;
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0.35rem 0.35rem 0;
}

.s2-home-product-divider {
  width: 100%;
  height: 1px;
  background: #e8ddd2;
}

.s2-home-product-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.56rem;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.s2-home-product-body {
  gap: 0.45rem;
  padding: 1.05rem 1rem 1.05rem;
  background: #fff;
}

.s2-home-stock-badge {
  margin-bottom: 0.35rem;
  width: fit-content;
}

.s2-home-product-category {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.s2-home-product-card .s2-home-product-body h3 {
  font-family: var(--font-outfit);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  color: #2b2222;
  min-height: 2.6em;
  margin: 0 0 0.2rem;
}

.s2-home-product-card .s2-home-product-body h3 :where(p, span, strong, em) {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
  line-height: inherit;
  text-transform: none;
  letter-spacing: inherit;
  margin: 0;
}

.s2-home-product-desc {
  font-family: var(--font-outfit);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.s2-home-product-price-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0;
}

.s2-home-product-price-action .product-price {
  font-family: var(--font-outfit);
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b2222;
}

.s2-home-product-price-action .add-to-cart {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: #2b2222;
}

.s2-home-product-price-action .add-to-cart:hover,
.s2-home-product-price-action .add-to-cart:focus-visible {
  background: var(--brand-red);
}

.s2-home-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s2-home-price-left {
  font-family: var(--font-outfit);
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b2222;
}

.s2-home-plus-right {
  margin-left: auto;
}

/* Kundenkonto: Panel-Karten wie s2-home-product-card */
.konto-panel {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d9cec2;
  border-top: 3px solid #7a1f12;
  box-shadow: 0 10px 22px rgba(21, 14, 14, 0.07);
  background: #fff;
  padding: 1.5rem;
}

.konto-panel--compact {
  padding: 1rem;
}

.konto-panel--flush {
  padding: 0;
}

.konto-panel--interactive {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  color: inherit;
}

a.konto-panel--interactive:hover,
button.konto-panel--interactive:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 29, 29, 0.45);
  box-shadow: 0 14px 26px rgba(21, 14, 14, 0.1);
}

.konto-panel table thead {
  background: var(--bg-soft);
}

.s2-home-base-price,
.product-base-price {
  margin-top: 0.15rem;
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--text-muted);
  font-family: var(--font-outfit);
}

.s2-home-reviews {
  padding-top: clamp(2.25rem, 3.8vw, 3.25rem);
  background:
    radial-gradient(
      1200px circle at 10% -10%,
      rgba(122, 31, 18, 0.16) 0%,
      rgba(122, 31, 18, 0.08) 28%,
      rgba(122, 31, 18, 0) 58%
    ),
    radial-gradient(
      900px circle at 96% 118%,
      rgba(201, 180, 156, 0.3) 0%,
      rgba(201, 180, 156, 0.14) 34%,
      rgba(201, 180, 156, 0) 62%
    ),
    #f5f0ea;
  position: relative;
  overflow: hidden;
}

.s2-home-reviews::before,
.s2-home-reviews::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  z-index: 0;
}

.s2-home-reviews::before {
  width: 520px;
  height: 520px;
  top: -260px;
  left: -160px;
  background: radial-gradient(
    circle,
    rgba(122, 31, 18, 0.14) 0%,
    rgba(122, 31, 18, 0.06) 34%,
    rgba(122, 31, 18, 0) 72%
  );
}

.s2-home-reviews::after {
  width: 480px;
  height: 480px;
  right: -160px;
  bottom: -240px;
  background: radial-gradient(
    circle,
    rgba(201, 180, 156, 0.22) 0%,
    rgba(201, 180, 156, 0.08) 42%,
    rgba(201, 180, 156, 0) 76%
  );
}

.s2-home-reviews .container {
  position: relative;
  z-index: 1;
}

.s2-home-reviews-head {
  max-width: 680px;
  margin-bottom: 1.4rem;
}

.s2-home-reviews-head h2 {
  font-family: var(--font-outfit);
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1009;
}

.s2-home-reviews-head p {
  margin-top: 0.35rem;
  font-family: var(--font-outfit);
  font-size: 1rem;
  font-weight: 400;
  color: #5c4a38;
}

.s2-home-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.s2-home-review-card {
  background: #ffffff;
  border: 1px solid #d9cec2;
  border-top: 3px solid #7a1f12;
  border-radius: 10px;
  padding: 1.15rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.s2-home-review-product {
  font-family: var(--font-outfit);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a1f12;
}

.s2-home-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.s2-home-review-star {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.s2-home-review-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.s2-home-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f0e6d8;
  border: 1.5px solid #c9b49c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-outfit);
  font-size: 0.8rem;
  font-weight: 700;
  color: #5c3118;
}

.s2-home-review-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.s2-home-review-author {
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1009;
}

.s2-home-review-date {
  font-family: var(--font-outfit);
  font-size: 0.8rem;
  color: #6b5744;
}

.s2-home-review-divider {
  border: 0;
  border-top: 1px solid #e8ddd2;
}

.s2-home-review-text {
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #2e2017;
}

.s2-home-review-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-outfit);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
}

.s2-home-review-badge.is-verified {
  background: #eaf5ee;
  border-color: #a3cfaf;
  color: #1b5e2f;
}

.s2-home-review-badge.is-request {
  background: #fdf3ee;
  border-color: #f0bfa6;
  color: #7a2e0e;
}

@media (max-width: 1024px) {
  .s2-home-hero-inner {
    grid-template-columns: 1fr;
  }
  .s2-home-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .s2-home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .s2-home-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .s2-home-category-grid {
    grid-template-columns: 1fr;
  }
  .s2-home-review-grid {
    grid-template-columns: 1fr;
  }
  .s2-home-products-head {
    gap: 0.7rem;
    align-items: flex-start;
  }
}

/* ==========================================
   SHOP2 — PDP REDESIGN
   ========================================== */

.s2-pdp {
  font-family: var(--font-outfit);
  color: #453C3C;
  background: #fff;
}
.s2-pdp-container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.s2-pdp-breadcrumb-bar {
  padding-top: 4rem;
  background: #faf7f4;
}
.s2-pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6b5f5f;
}
.s2-pdp-breadcrumb a {
  color: #6b5f5f;
  text-decoration: none;
  transition: color 0.2s;
}
.s2-pdp-breadcrumb a:hover {
  color: var(--brand-red, #8F1A1A);
}
.s2-pdp-breadcrumb span[aria-current] {
  color: #453C3C;
}
.s2-pdp-breadcrumb-sep {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #6b5f5f;
}
.s2-pdp-main {
  background: #faf7f4;
  padding-bottom: 5rem;
  padding-top: 1.5rem;
}
.s2-pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .s2-pdp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.s2-pdp-gallery-col {
  position: sticky;
  top: 5rem;
}
.s2-pdp-main-image {
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  position: relative;
}
.s2-pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: none;
}
.s2-pdp-main-image img:hover {
  transform: none;
}
.s2-pdp-zoom-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(15, 8, 8, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.s2-pdp-main-image:hover .s2-pdp-zoom-hint {
  opacity: 1;
}
.s2-pdp-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 8, 8, 0.88);
  backdrop-filter: blur(8px);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.s2-pdp-zoom-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.s2-pdp-zoom-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 16px;
  object-fit: contain;
}
.s2-pdp-zoom-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.s2-pdp-zoom-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.s2-pdp-thumb-bar {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.s2-pdp-thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
  background: #f5f0ef;
}
.s2-pdp-thumb:hover {
  transform: scale(1.04);
}
.s2-pdp-thumb.active,
.s2-pdp-thumb[data-active="true"] {
  border-color: var(--brand-red, #8F1A1A);
}
.s2-pdp-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}
.s2-pdp-trust-strip {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(69, 60, 60, 0.08);
}
.s2-pdp-trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: #6b5f5f;
}
.s2-pdp-trust-chip svg {
  color: var(--brand-red, #8F1A1A);
  flex-shrink: 0;
}

a.s2-pdp-trust-chip--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

a.s2-pdp-trust-chip--link:hover,
a.s2-pdp-trust-chip--link:focus-visible {
  opacity: 0.88;
  outline: none;
}

.s2-pdp-info-col {
  display: flex;
  flex-direction: column;
}
.s2-pdp-category-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red, #8F1A1A);
  margin-bottom: 0.5rem;
}
.s2-pdp-title {
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.15;
  color: #1a0f0f;
  margin-bottom: 0.25rem;
}
.s2-pdp-sku {
  font-size: 0.875rem;
  color: #6b5f5f;
  margin-bottom: 1rem;
}
.s2-pdp-stock-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.5rem;
  margin-bottom: 0.9rem;
}
.stock-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.36rem 0.85rem;
  font-size: 0.89rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.stock-status-pill.is-in-stock {
  background: #d8f5d0;
  color: #1f6a2f;
}
.stock-status-pill.is-low-stock {
  background: #ffe8be;
  color: #8a5a00;
}
.stock-status-pill.is-out-of-stock {
  background: #ffd9d9;
  color: #8e1a1a;
}
.stock-status-pill.is-preorder {
  background: #c157a0;
  color: #ffffff;
}
.s2-pdp-price-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.s2-pdp-price {
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 2.1rem;
  color: #1a0f0f;
}
.s2-pdp-tax-info {
  font-size: 0.875rem;
  color: #6b5f5f;
  margin-bottom: 0.25rem;
  text-align: right;
}
.s2-pdp-base-price {
  font-size: 0.875rem;
  color: #6b5f5f;
  margin-bottom: 0.75rem;
  text-align: right;
}
.s2-pdp-link {
  color: var(--brand-red, #8F1A1A);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.s2-pdp-link:hover {
  text-decoration: none;
}
.s2-pdp-short-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #6b5f5f;
  max-width: 440px;
  margin-bottom: 1.5rem;
}
.s2-pdp-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(143, 26, 26, 0.15), transparent);
  margin-bottom: 1.5rem;
}
.s2-pdp-sold-out {
  font-weight: 500;
  color: #f59e0b;
  margin-top: 1.5rem;
}
.s2-pdp-info-col .variation-group {
  margin-bottom: 1.25rem;
}
.s2-pdp-info-col .variation-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #453C3C;
  margin-bottom: 0.625rem;
  display: block;
}
.s2-pdp-info-col .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.s2-pdp-info-col .chip {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(69, 60, 60, 0.2);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  color: #453C3C;
}
.s2-pdp-info-col .chip:hover {
  border-color: var(--brand-red, #8F1A1A);
  color: var(--brand-red, #8F1A1A);
}
.s2-pdp-info-col .chip.active {
  border-color: var(--brand-red, #8F1A1A);
  background: var(--brand-red, #8F1A1A);
  color: #fff;
}

.s2-pdp-info-col .chip.chip--unavailable {
  cursor: not-allowed;
  border-color: rgba(69, 60, 60, 0.45);
  background: #efe9e5;
  color: #2f2828;
}

.s2-pdp-info-col .chip.active.chip--unavailable {
  border-color: rgba(69, 60, 60, 0.55);
  background: #e6ddd7;
  color: #2f2828;
}
.s2-pdp-atc-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s2-pdp-atc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.s2-pdp-qty {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.25rem;
  border-radius: 0.75rem;
  border: 1.5px solid rgba(69, 60, 60, 0.15);
  background: #fff;
}
.s2-pdp-qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid rgba(69, 60, 60, 0.2);
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #453C3C;
}
.s2-pdp-qty-btn:hover {
  border-color: var(--brand-red, #8F1A1A);
  color: var(--brand-red, #8F1A1A);
}
.s2-pdp-qty-val {
  width: 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  background: transparent;
  border: none;
  outline: none;
  color: #453C3C;
  -moz-appearance: textfield;
}
.s2-pdp-qty-val::-webkit-outer-spin-button,
.s2-pdp-qty-val::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.s2-pdp-btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex: 1;
  min-width: 180px;
  background: var(--brand-red, #8F1A1A);
  color: #fff;
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.s2-pdp-btn-cart:hover {
  background: #6d1313;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(143, 26, 26, 0.35);
}
.s2-pdp-btn-cart:active {
  transform: translateY(0);
}
.s2-pdp-btn-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.s2-pdp-total-line {
  font-size: 0.875rem;
  color: #6b5f5f;
}
.s2-pdp-accessories {
  margin-bottom: 1rem;
}
.s2-pdp-accessories-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #453C3C;
  margin-bottom: 0.5rem;
}
.s2-pdp-accessories-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.s2-pdp-accessory-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 10px;
  border: 1px solid #d9cec2;
  border-top: 3px solid #7a1f12;
  background: #fff;
  box-shadow: 0 10px 22px rgba(21, 14, 14, 0.07);
  padding: 0.9rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.s2-pdp-accessory-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 29, 29, 0.45);
  box-shadow: 0 14px 26px rgba(21, 14, 14, 0.1);
}
.s2-pdp-accessory-selected {
  border-color: rgba(139, 29, 29, 0.45);
  box-shadow: 0 0 0 1px rgba(122, 31, 18, 0.2), 0 14px 26px rgba(21, 14, 14, 0.1);
}
.s2-pdp-accessory-card-group {
  display: block;
  padding: 0;
}
.s2-pdp-accessory-group-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
}
.s2-pdp-accessory-group-row-divider {
  border-top: 1px solid #e8ddd2;
}
.s2-pdp-accessory-disabled {
  opacity: 1;
  cursor: not-allowed;
  background: rgba(220, 38, 38, 0.05);
  border-color: rgba(220, 38, 38, 0.2);
}
.s2-pdp-accessory-group-row.s2-pdp-accessory-disabled {
  border-radius: 8px;
}
.s2-pdp-accessory-disabled .s2-pdp-accessory-label,
.s2-pdp-accessory-disabled .s2-pdp-accessory-price,
.s2-pdp-accessory-disabled .s2-pdp-accessory-qty-val {
  opacity: 0.7;
}
.s2-pdp-accessory-disabled .s2-pdp-accessory-qty {
  background: rgba(255, 255, 255, 0.72);
}
.s2-pdp-accessory-content {
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
}
.s2-pdp-accessory-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
}
.s2-pdp-accessory-thumb {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}
.s2-pdp-accessory-hover-img {
  display: none;
}
.s2-pdp-accessory-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.s2-pdp-accessory-label {
  font-family: var(--font-outfit);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2b2222;
}
.s2-pdp-accessory-price {
  font-family: var(--font-outfit);
  font-size: 1rem;
  font-weight: 700;
  color: #2b2222;
}
.s2-pdp-accessory-qty {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.25rem;
  border-radius: 0.75rem;
  border: 1.5px solid rgba(69, 60, 60, 0.15);
  background: #fff;
  flex-shrink: 0;
}
.s2-pdp-accessory-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid rgba(69, 60, 60, 0.2);
  background: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #453C3C;
}
.s2-pdp-accessory-qty-btn:hover {
  border-color: var(--brand-red, #8F1A1A);
  color: var(--brand-red, #8F1A1A);
}
.s2-pdp-accessory-qty-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.s2-pdp-accessory-qty-val {
  min-width: 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #453C3C;
}
.s2-pdp-total-with-acc {
  font-size: 0.92rem;
  color: #453C3C;
  text-align: right;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(69, 60, 60, 0.12);
  padding-top: 0.65rem;
}
@media (hover: hover) and (pointer: fine) {
  .s2-pdp-accessory-img-wrap:hover .s2-pdp-accessory-hover-img {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(21, 14, 14, 0.18);
    pointer-events: none;
  }
}
@media (max-width: 640px) {
  .s2-pdp-accessory-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }
  .s2-pdp-accessory-group-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }
  .s2-pdp-accessory-qty {
    align-self: flex-end;
  }
}
.s2-pdp-tabs-section {
  padding: 4rem 0;
  background: #fff;
}
.s2-pdp-tabs {
  width: 100%;
}
.s2-pdp-tab-list {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(69, 60, 60, 0.1);
  margin-bottom: 2.5rem;
  overflow-x: auto;
}
.s2-pdp-tab-btn {
  font-family: var(--font-outfit);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: rgba(69, 60, 60, 0.55);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.s2-pdp-tab-btn:hover {
  color: var(--brand-red, #8F1A1A);
}
.s2-pdp-tab-btn.active {
  color: var(--brand-red, #8F1A1A);
  border-bottom-color: var(--brand-red, #8F1A1A);
}
.s2-pdp-tab-panels {
  width: 100%;
}
.s2-pdp-tab-panel {
  padding-top: 0.5rem;
}
.s2-pdp-tab-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6b5f5f;
}
.s2-pdp-tab-content h2,
.s2-pdp-tab-content h3 {
  font-family: var(--font-outfit);
  color: #1a0f0f;
  margin-bottom: 1rem;
}
.s2-pdp-tab-empty {
  font-size: 0.875rem;
  color: #6b5f5f;
  padding: 1rem 0;
}
.s2-pdp-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.s2-pdp-specs-table tr {
  border-bottom: 1px solid rgba(69, 60, 60, 0.07);
}
.s2-pdp-spec-label {
  padding: 0.75rem 1rem 0.75rem 0;
  font-weight: 500;
  color: #453C3C;
  width: 200px;
}
.s2-pdp-spec-value {
  padding: 0.75rem 0;
  color: #6b5f5f;
}
.s2-pdp-info-col .pdp-variant-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.s2-pdp-info-col .pdp-variant-price {
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 2.1rem;
  color: #1a0f0f;
}
.s2-pdp-info-col .qty-input {
  display: flex;
  align-items: center;
  border-radius: 0.75rem;
  border: 1.5px solid rgba(69, 60, 60, 0.15);
  background: #fff;
  overflow: hidden;
}
.s2-pdp-info-col .btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex: 1;
  min-width: 180px;
  background: var(--brand-red, #8F1A1A);
  color: #fff;
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.s2-pdp-info-col .btn-cart:hover {
  background: #6d1313;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(143, 26, 26, 0.35);
}
@media (max-width: 1023px) {
  .s2-pdp-gallery-col {
    position: static;
  }
  .s2-pdp-title {
    font-size: 1.8rem;
  }
  .s2-pdp-price {
    font-size: 1.6rem;
  }
}
@media (max-width: 640px) {
  .s2-pdp-atc-row {
    flex-direction: column;
  }
  .s2-pdp-btn-cart {
    width: 100%;
  }
  .s2-pdp-tab-list {
    gap: 0;
  }
  .s2-pdp-tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
}

/* ==========================================
   REDUCE MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ═══════════════════════════════════════════════════════ */

.newsletter-section {
  background: var(--brand-red);
  color: #fff;
  padding-block: 4rem;
  width: 100%;
}

.newsletter-inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}

.newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.newsletter-subtext {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  color: #fff;
  font-family: var(--font-outfit);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: flex-end;
}

.newsletter-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 180px;
  min-width: 0;
  text-align: left;
}

.newsletter-field--email {
  flex: 2 1 220px;
}

.newsletter-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  font-family: var(--font-outfit);
}

.newsletter-input {
  padding: 0.6rem 0.9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-outfit);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-input:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.18);
}

.newsletter-submit {
  padding: 0.6rem 1.5rem;
  background: #fff;
  color: var(--brand-red);
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-outfit);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  flex-shrink: 0;
  align-self: flex-end;
}

.newsletter-submit:hover:not(:disabled) {
  opacity: 0.88;
}

.newsletter-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-error {
  font-size: 0.85rem;
  color: #ffe0e0;
  text-align: center;
}

.newsletter-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-top: 0.25rem;
  font-family: var(--font-outfit);
}

.newsletter-success {
  padding: 1.5rem;
  text-align: center;
}

.newsletter-success-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.newsletter-success-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-outfit);
}

@media (max-width: 600px) {
  .newsletter-fields {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-submit {
    width: 100%;
    align-self: auto;
  }
}
