/* ============================================
   RITUALI.CH – Dein Ritual. Deine Bedeutung
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --color-bg: #FAF8F5;
  --color-bg-alt: #F2EDE7;
  --color-surface: #FFFFFF;
  --color-text: #2C2926;
  --color-text-muted: #7A746D;
  --color-text-light: #A89F95;
  --color-accent: #8B6F47;
  --color-accent-hover: #725A39;
  --color-accent-light: #D4C4A8;
  --color-border: #E8E2DA;
  --color-border-light: #F0EBE4;
  --color-success: #5A7A5A;
  --color-error: #A85454;

  /* Path Colors */
  --path-stille: #7B8FA1;
  --path-stille-bg: #EEF2F5;
  --path-himmel: #6B5B8A;
  --path-himmel-bg: #F0EDF5;
  --path-wandlung: #8A6B5B;
  --path-wandlung-bg: #F5F0ED;
  --path-verbundenheit: #8A5B6B;
  --path-verbundenheit-bg: #F5EDF0;
  --path-schutz: #5B7A6B;
  --path-schutz-bg: #EDF5F0;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --border-radius: 8px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

ul, ol {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-accent);
  font-family: var(--font-accent);
  font-style: italic;
}

.text-center {
  text-align: center;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .grid--4, .grid--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4, .grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid--2, .grid--3, .grid--4, .grid--5 {
    grid-template-columns: 1fr;
  }
}

/* --- Header / Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.header__logo span {
  color: var(--color-accent);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-text);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius);
  transition: background var(--transition);
}

.header__cart:hover {
  background: var(--color-bg-alt);
}

.header__cart-count {
  background: var(--color-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px;
  right: 0;
}

.header__cart-count:empty,
.header__cart-count[data-count="0"] {
  display: none;
}

/* Mobile Menu */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .header__menu-toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav a {
    font-size: 1.2rem;
  }
}

/* --- Hero Section --- */
.hero {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.hero__title {
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.hero__question {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--color-accent);
  margin-bottom: 0;
  font-style: italic;
}

/* --- Path Tiles (Pfad-Kacheln) --- */
.paths {
  padding: var(--space-3xl) 0 var(--space-4xl);
}

.paths__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

@media (max-width: 1024px) {
  .paths__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 400px) {
  .paths__grid {
    grid-template-columns: 1fr;
  }
}

.path-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--border-radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}

.path-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity var(--transition);
}

.path-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.path-tile:hover::before {
  opacity: 1;
}

/* Path-specific colors */
.path-tile--stille::before { background: var(--path-stille); }
.path-tile--stille:hover { background: var(--path-stille-bg); }
.path-tile--stille .path-tile__icon { color: var(--path-stille); }

.path-tile--himmel::before { background: var(--path-himmel); }
.path-tile--himmel:hover { background: var(--path-himmel-bg); }
.path-tile--himmel .path-tile__icon { color: var(--path-himmel); }

.path-tile--wandlung::before { background: var(--path-wandlung); }
.path-tile--wandlung:hover { background: var(--path-wandlung-bg); }
.path-tile--wandlung .path-tile__icon { color: var(--path-wandlung); }

.path-tile--verbundenheit::before { background: var(--path-verbundenheit); }
.path-tile--verbundenheit:hover { background: var(--path-verbundenheit-bg); }
.path-tile--verbundenheit .path-tile__icon { color: var(--path-verbundenheit); }

.path-tile--schutz::before { background: var(--path-schutz); }
.path-tile--schutz:hover { background: var(--path-schutz-bg); }
.path-tile--schutz .path-tile__icon { color: var(--path-schutz); }

.path-tile__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.path-tile__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.path-tile__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: white;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn--secondary:hover {
  background: var(--color-accent);
  color: white;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  padding: 0.5rem 1rem;
}

.btn--ghost:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* --- Product Cards --- */
.product-card {
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: var(--color-accent-light);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-text-light);
  overflow: hidden;
  position: relative;
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__path {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-card__price small {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.product-card__action .btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* --- Product Detail --- */
.product-detail {
  padding: var(--space-3xl) 0;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 768px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
  }
}

.product-detail__image {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--color-text-light);
  overflow: hidden;
}

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

.product-detail__info {
  padding: var(--space-lg) 0;
}

.product-detail__path {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.product-detail__title {
  margin-bottom: var(--space-md);
}

.product-detail__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.product-detail__price small {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.product-detail__desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.product-detail__quantity {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.product-detail__quantity label {
  font-weight: 500;
  font-size: 0.9rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.qty-controls button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.qty-controls button:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.qty-controls input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: transparent;
}

.qty-controls input:focus {
  outline: none;
}

.product-detail__features {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.product-detail__features h4 {
  margin-bottom: var(--space-md);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.product-detail__features ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-detail__features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: var(--space-lg);
  position: relative;
}

.product-detail__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

/* --- Featured / Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header__tag {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* --- Values / Hausregeln --- */
.values {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-alt);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .values__grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  text-align: center;
  padding: var(--space-2xl);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.value-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Newsletter --- */
.newsletter {
  padding: var(--space-4xl) 0;
  text-align: center;
}

.newsletter__form {
  display: flex;
  gap: var(--space-md);
  max-width: 480px;
  margin: var(--space-xl) auto 0;
}

.newsletter__form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--color-surface);
  transition: border-color var(--transition);
}

.newsletter__form input:focus {
  outline: none;
  border-color: var(--color-accent);
}

@media (max-width: 480px) {
  .newsletter__form {
    flex-direction: column;
  }
}

/* --- Footer --- */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer a:hover {
  color: white;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 0.9rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 480px) {
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

.footer__payment {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  font-size: 0.85rem;
}

/* --- Cart Drawer --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--color-surface);
  z-index: 201;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__header h3 {
  font-size: 1.2rem;
}

.cart-drawer__close {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  padding: var(--space-sm);
}

.cart-drawer__close:hover {
  color: var(--color-text);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-drawer__empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  color: var(--color-text-muted);
}

.cart-drawer__empty .icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__image {
  width: 70px;
  height: 70px;
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.cart-item__price {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.cart-item__qty button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.cart-item__qty button:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.cart-item__qty span {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item__remove {
  color: var(--color-text-light);
  font-size: 0.8rem;
  align-self: flex-start;
  padding: var(--space-xs);
}

.cart-item__remove:hover {
  color: var(--color-error);
}

.cart-drawer__footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.cart-drawer__total span:last-child {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.cart-drawer__shipping-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: var(--space-md);
}

/* --- Quiz --- */
.quiz {
  padding: var(--space-4xl) 0;
  text-align: center;
}

.quiz__progress {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.quiz__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background var(--transition);
}

.quiz__dot.is-active {
  background: var(--color-accent);
}

.quiz__dot.is-done {
  background: var(--color-accent-light);
}

.quiz__question {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quiz__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .quiz__options {
    grid-template-columns: 1fr;
  }
}

.quiz__option {
  padding: var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  background: var(--color-surface);
}

.quiz__option:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-alt);
}

.quiz__option.is-selected {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: white;
}

.quiz__result {
  max-width: 500px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
}

.quiz__result-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.quiz__result h3 {
  margin-bottom: var(--space-md);
}

.quiz__result p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

/* --- Path Landing Pages --- */
.path-hero {
  padding: var(--space-4xl) 0;
  text-align: center;
}

.path-hero__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.path-hero__title {
  margin-bottom: var(--space-md);
}

.path-hero__text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Path-specific backgrounds */
.path-hero--stille { background: var(--path-stille-bg); }
.path-hero--himmel { background: var(--path-himmel-bg); }
.path-hero--wandlung { background: var(--path-wandlung-bg); }
.path-hero--verbundenheit { background: var(--path-verbundenheit-bg); }
.path-hero--schutz { background: var(--path-schutz-bg); }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: var(--space-md) 0;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb span {
  color: var(--color-text-light);
  margin: 0 var(--space-sm);
}

/* --- Legal Pages --- */
.legal {
  padding: var(--space-3xl) 0;
}

.legal h1 {
  margin-bottom: var(--space-2xl);
}

.legal h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.legal h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.legal p, .legal li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal li {
  list-style: disc;
  margin-bottom: var(--space-xs);
}

/* --- About Page --- */
.about-hero {
  padding: var(--space-4xl) 0;
  text-align: center;
  background: var(--color-bg-alt);
}

.about-content {
  padding: var(--space-3xl) 0;
}

.about-content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* --- Notification Toast --- */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  background: var(--color-text);
  color: white;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast--success {
  background: var(--color-success);
}

/* --- Checkout --- */
.checkout {
  padding: var(--space-3xl) 0;
}

.checkout__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 768px) {
  .checkout__grid {
    grid-template-columns: 1fr;
  }
}

.checkout__form-section {
  margin-bottom: var(--space-2xl);
}

.checkout__form-section h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-row--single {
  grid-template-columns: 1fr;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--color-surface);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.checkout__summary {
  background: var(--color-bg-alt);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: 100px;
}

.checkout__summary h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}

.checkout__summary-item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.checkout__summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 2px solid var(--color-border);
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- Also Interesting (Cross-Links) --- */
.also-interesting {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-alt);
}

/* --- Scroll-to-top --- */
.scroll-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.3);
  z-index: 50;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-2px);
  background: var(--color-accent-hover);
  color: white;
}

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

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

.fade-in-up--delay-1 { animation-delay: 0.1s; }
.fade-in-up--delay-2 { animation-delay: 0.2s; }
.fade-in-up--delay-3 { animation-delay: 0.3s; }
.fade-in-up--delay-4 { animation-delay: 0.4s; }
.fade-in-up--delay-5 { animation-delay: 0.5s; }
