@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --clr-bg: #f0ede8;
  --clr-bg-alt: #e8e4de;
  --clr-surface: rgba(255, 255, 255, 0.55);
  --clr-surface-strong: rgba(255, 255, 255, 0.72);
  --clr-surface-subtle: rgba(255, 255, 255, 0.30);
  --clr-glass-border: rgba(255, 255, 255, 0.65);
  --clr-glass-border-subtle: rgba(255, 255, 255, 0.30);

  --clr-primary: #2d3a2e;
  --clr-primary-light: #3d5040;
  --clr-primary-muted: rgba(45, 58, 46, 0.12);

  --clr-accent: #7a9e7e;
  --clr-accent-light: #a8c5ac;
  --clr-accent-dark: #5a7a5e;

  --clr-text: #1e2a1f;
  --clr-text-secondary: #4a5c4b;
  --clr-text-muted: #7a8c7b;
  --clr-text-light: #a8b8a9;

  --clr-compare-bad: rgba(180, 80, 60, 0.08);
  --clr-compare-good: rgba(90, 140, 90, 0.10);

  /* Typography */
  --ff-heading: 'Familjen Grotesk', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

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

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-glass: 0 8px 32px rgba(45, 58, 46, 0.10), 0 2px 8px rgba(45, 58, 46, 0.06), inset 0 1px 0 rgba(255,255,255,0.7);
  --shadow-glass-hover: 0 16px 48px rgba(45, 58, 46, 0.15), 0 4px 16px rgba(45, 58, 46, 0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  --shadow-card: 0 4px 24px rgba(45, 58, 46, 0.08), 0 1px 4px rgba(45, 58, 46, 0.05);
  --shadow-card-hover: 0 12px 40px rgba(45, 58, 46, 0.14), 0 4px 12px rgba(45, 58, 46, 0.08);
  --shadow-pill: 0 4px 20px rgba(45, 58, 46, 0.25), 0 2px 8px rgba(45, 58, 46, 0.15);
  --shadow-inset: inset 0 2px 4px rgba(45, 58, 46, 0.06);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;
}

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

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

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--ff-body);
  border: none;
  background: none;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.SectionEyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  margin-bottom: var(--space-sm);
}

.SectionHeading {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.SectionSubtext {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--clr-text-secondary);
  line-height: 1.75;
  max-width: 56ch;
  margin-bottom: var(--space-md);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.Btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  cursor: pointer;
  min-height: 48px;
  white-space: nowrap;

  &.Btn--primary {
    background: var(--clr-primary);
    color: #f5f2ed;
    box-shadow: 0 4px 16px rgba(45, 58, 46, 0.25), 0 1px 4px rgba(45, 58, 46, 0.15);

    &:hover {
      background: var(--clr-primary-light);
      box-shadow: 0 8px 28px rgba(45, 58, 46, 0.32), 0 2px 8px rgba(45, 58, 46, 0.18);
      transform: translateY(-2px);
    }

    &:active {
      transform: translateY(0);
    }
  }

  &.Btn--ghost {
    background: var(--clr-surface);
    color: var(--clr-primary);
    border: 1px solid var(--clr-glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);

    &:hover {
      background: var(--clr-surface-strong);
      box-shadow: var(--shadow-glass-hover);
      transform: translateY(-2px);
    }
  }
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.SiteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: transform var(--transition-slow), opacity var(--transition-slow);

  &.SiteHeader--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }

  .SiteHeader-inner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 1rem 2rem;
    background: rgba(240, 237, 232, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-glass-border);
    box-shadow: 0 2px 20px rgba(45, 58, 46, 0.08), 0 1px 4px rgba(45, 58, 46, 0.04);
  }

  .SiteHeader-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;

    .SiteHeader-logoImg {
      width: 32px;
      height: 32px;
    }

    .SiteHeader-logoText {
      font-family: var(--ff-heading);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--clr-primary);
      letter-spacing: -0.02em;
    }
  }

  .SiteHeader-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;

    .SiteHeader-navLink {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--clr-text-secondary);
      padding: 0.5rem 0.85rem;
      border-radius: var(--radius-sm);
      transition: all var(--transition-fast);

      &:hover {
        color: var(--clr-primary);
        background: var(--clr-primary-muted);
      }
    }
  }

  .SiteHeader-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    background: var(--clr-primary);
    color: #f5f2ed;
    border-radius: var(--radius-pill);
    transition: all var(--transition-base);
    box-shadow: 0 2px 12px rgba(45, 58, 46, 0.2);
    min-height: 44px;

    &:hover {
      background: var(--clr-primary-light);
      box-shadow: 0 4px 20px rgba(45, 58, 46, 0.28);
      transform: translateY(-1px);
    }
  }

  .SiteHeader-menuBtn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);

    span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--clr-primary);
      border-radius: 2px;
      transition: all var(--transition-base);
    }

    &:hover {
      background: var(--clr-primary-muted);
    }
  }
}

/* ============================================================
   MINI NAV PILL
   ============================================================ */
.MiniNav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  z-index: 850;
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  pointer-events: none;

  &.MiniNav--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .MiniNav-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    background: var(--clr-primary);
    color: #f5f2ed;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--ff-body);
    box-shadow: var(--shadow-pill);
    transition: all var(--transition-base);
    min-height: 44px;

    &:hover {
      background: var(--clr-primary-light);
      box-shadow: 0 8px 32px rgba(45, 58, 46, 0.35);
      transform: translateY(-2px);
    }
  }
}

/* ============================================================
   MOBILE MENU (FLIP CARD)
   ============================================================ */
.MobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  height: 80px;
  perspective: 1200px;
  display: none;
  pointer-events: none;

  &.MobileMenu--active {
    pointer-events: all;
    height: 100vh;

    .MobileMenu-scene {
      height: 100vh;
    }

    .MobileMenu-card {
      transform: rotateX(-180deg);
    }
  }

  .MobileMenu-scene {
    width: 100%;
    height: 80px;
    transform-style: preserve-3d;
    transition: height 0s 0.35s;

    &.MobileMenu-scene--active {
      height: 100vh;
      transition: height 0s;
    }
  }

  .MobileMenu-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
  }

  .MobileMenu-front,
  .MobileMenu-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .MobileMenu-front {
    background: rgba(240, 237, 232, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-glass-border);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;

    .MobileMenu-frontInner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .MobileMenu-brand {
      font-family: var(--ff-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--clr-primary);
    }

    .MobileMenu-close {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--clr-primary);
      border-radius: var(--radius-sm);
      transition: background var(--transition-fast);

      &:hover {
        background: var(--clr-primary-muted);
      }
    }
  }

  .MobileMenu-back {
    background: rgba(240, 237, 232, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: rotateX(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-xl) var(--space-md);
    min-height: 100vh;

    .MobileMenu-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-xs);
      width: 100%;
      max-width: 320px;

      .MobileMenu-link {
        display: block;
        width: 100%;
        text-align: center;
        font-family: var(--ff-heading);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--clr-primary);
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
        transition: all var(--transition-fast);

        &:hover {
          background: var(--clr-primary-muted);
          color: var(--clr-primary-light);
        }
      }
    }

    .MobileMenu-closeBack {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: var(--space-md);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--clr-text-muted);
      padding: 0.6rem 1.2rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(45, 58, 46, 0.15);
      transition: all var(--transition-fast);

      &:hover {
        color: var(--clr-primary);
        border-color: var(--clr-accent);
        background: var(--clr-primary-muted);
      }
    }
  }
}

.MobileMenu-overlay {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(30, 42, 31, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);

  &.MobileMenu-overlay--active {
    opacity: 1;
    pointer-events: all;
  }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.PageHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;

  .PageHero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 30%, rgba(168, 197, 172, 0.35) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 20% 70%, rgba(122, 158, 126, 0.20) 0%, transparent 55%),
      radial-gradient(ellipse 50% 40% at 90% 80%, rgba(90, 122, 94, 0.15) 0%, transparent 50%),
      linear-gradient(160deg, #f0ede8 0%, #e6e2da 40%, #ddd8d0 100%);
    z-index: 0;
  }

  .PageHero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-2xl) 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .PageHero-textBlock {
    .PageHero-eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--clr-accent-dark);
      margin-bottom: var(--space-md);
      padding: 0.4rem 1rem;
      background: rgba(122, 158, 126, 0.15);
      border-radius: var(--radius-pill);
      border: 1px solid rgba(122, 158, 126, 0.25);
    }

    .PageHero-heading {
      font-family: var(--ff-heading);
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--clr-text);
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: var(--space-md);
    }

    .PageHero-sub {
      font-size: 1.1rem;
      color: var(--clr-text-secondary);
      line-height: 1.8;
      max-width: 48ch;
      margin-bottom: var(--space-lg);
    }

    .PageHero-actions {
      display: flex;
      gap: var(--space-sm);
      flex-wrap: wrap;
    }
  }

  .PageHero-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-end;

    .PageHero-glassCard {
      width: 100%;
      max-width: 380px;
      background: var(--clr-surface);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--clr-glass-border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-glass);
      transition: all var(--transition-base);

      &:hover {
        box-shadow: var(--shadow-glass-hover);
        transform: translateY(-4px);
      }

      &.PageHero-glassCard--offset {
        margin-right: -1.5rem;
        background: rgba(255, 255, 255, 0.40);
      }

      .PageHero-glassCard-inner {
        padding: var(--space-md) var(--space-lg);

        .PageHero-icon {
          font-size: 1.6rem;
          color: var(--clr-accent);
          margin-bottom: 0.75rem;
        }

        .PageHero-glassCard-label {
          font-family: var(--ff-heading);
          font-size: 1rem;
          font-weight: 600;
          color: var(--clr-text);
          margin-bottom: 0.4rem;
        }

        .PageHero-glassCard-text {
          font-size: 0.9rem;
          color: var(--clr-text-secondary);
          line-height: 1.6;
        }
      }
    }
  }

  .PageHero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--clr-text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: scrollBounce 2.2s ease-in-out infinite;

    i {
      font-size: 0.9rem;
    }
  }
}

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

/* ============================================================
   COLLECTION SECTION
   ============================================================ */
.CollectionSection {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 158, 126, 0.3), transparent);
  }

  .CollectionSection-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .CollectionSection-header {
    max-width: 640px;
    margin-bottom: var(--space-2xl);
  }

  .CollectionSection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

.ProductCard {
  background: var(--clr-surface-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);

  &:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);

    .ProductCard-imagePlaceholder {
      background: rgba(122, 158, 126, 0.18);
    }
  }

  .ProductCard-visual {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;

    .ProductCard-imagePlaceholder {
      width: 100%;
      height: 100%;
      background: rgba(122, 158, 126, 0.10);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: background var(--transition-base);

      i {
        font-size: 3rem;
        color: var(--clr-accent);
        opacity: 0.6;
      }
    }

    .ProductCard-badge {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      background: var(--clr-primary);
      color: #f5f2ed;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 0.25rem 0.65rem;
      border-radius: var(--radius-pill);
    }
  }

  .ProductCard-body {
    padding: var(--space-md);

    .ProductCard-title {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 600;
      color: var(--clr-text);
      margin-bottom: 0.25rem;
    }

    .ProductCard-material {
      font-size: 0.75rem;
      color: var(--clr-accent-dark);
      font-weight: 500;
      margin-bottom: 0.5rem;
      letter-spacing: 0.02em;
    }

    .ProductCard-desc {
      font-size: 0.85rem;
      color: var(--clr-text-secondary);
      line-height: 1.55;
      margin-bottom: var(--space-sm);
    }

    .ProductCard-price {
      font-family: var(--ff-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--clr-primary);
    }
  }
}

/* ============================================================
   MATERIAL SECTION
   ============================================================ */
.MaterialSection {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122, 158, 126, 0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .MaterialSection-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }

  .MaterialSection-left {
    padding-right: var(--space-lg);

    .MaterialSection-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: var(--space-md);
    }
  }

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

.Tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-accent-dark);
  background: rgba(122, 158, 126, 0.12);
  border: 1px solid rgba(122, 158, 126, 0.25);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  transition: all var(--transition-fast);

  &:hover {
    background: rgba(122, 158, 126, 0.22);
    border-color: rgba(122, 158, 126, 0.45);
  }
}

.MaterialCard {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--clr-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);

  &:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateX(6px);
    background: var(--clr-surface-strong);
  }

  .MaterialCard-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(122, 158, 126, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-dark);
    font-size: 1.2rem;
    transition: background var(--transition-fast);
  }

  &:hover .MaterialCard-icon {
    background: rgba(122, 158, 126, 0.28);
  }

  .MaterialCard-content {
    h4 {
      font-family: var(--ff-heading);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--clr-text);
      margin-bottom: 0.3rem;
    }

    p {
      font-size: 0.875rem;
      color: var(--clr-text-secondary);
      line-height: 1.6;
    }
  }
}

/* ============================================================
   COMPARE SECTION
   ============================================================ */
.CompareSection {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 158, 126, 0.25), transparent);
  }

  .CompareSection-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .CompareSection-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
  }

  .CompareSection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

.CompareCard {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base);

  &:hover {
    box-shadow: var(--shadow-card-hover);
  }

  .CompareCard-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-md) var(--space-lg);

    i {
      font-size: 1.3rem;
    }

    h3 {
      font-family: var(--ff-heading);
      font-size: 1.1rem;
      font-weight: 600;
    }
  }

  .CompareCard-list {
    padding: var(--space-sm) var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;

    li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.9rem;
      line-height: 1.5;

      i {
        margin-top: 0.1rem;
        flex-shrink: 0;
        font-size: 0.95rem;
      }
    }
  }

  &.CompareCard--conventional {
    background: rgba(180, 80, 60, 0.06);
    border: 1px solid rgba(180, 80, 60, 0.15);

    .CompareCard-header {
      background: rgba(180, 80, 60, 0.08);
      border-bottom: 1px solid rgba(180, 80, 60, 0.12);

      i { color: #b44c3c; }
      h3 { color: var(--clr-text); }
    }

    .CompareCard-list li {
      color: var(--clr-text-secondary);

      i { color: #c05040; }
    }
  }

  &.CompareCard--yoranmorix {
    background: rgba(90, 140, 90, 0.07);
    border: 1px solid rgba(90, 140, 90, 0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    .CompareCard-header {
      background: rgba(90, 140, 90, 0.10);
      border-bottom: 1px solid rgba(90, 140, 90, 0.15);

      i { color: var(--clr-accent-dark); }
      h3 { color: var(--clr-text); }
    }

    .CompareCard-list li {
      color: var(--clr-text-secondary);

      i { color: var(--clr-accent-dark); }
    }
  }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.ProcessSection {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;

  &::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 197, 172, 0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .ProcessSection-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .ProcessSection-header {
    max-width: 640px;
    margin-bottom: var(--space-2xl);
  }

  .ProcessSection-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
  }
}

.ProcessStep {
  background: var(--clr-surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-base);
  position: relative;

  &:hover {
    box-shadow: var(--shadow-glass-hover);
    transform: translateY(-6px);
  }

  .ProcessStep-number {
    font-family: var(--ff-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(122, 158, 126, 0.25);
    line-height: 1;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.04em;
  }

  .ProcessStep-icon {
    width: 52px;
    height: 52px;
    background: rgba(122, 158, 126, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-dark);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    transition: background var(--transition-fast);
  }

  &:hover .ProcessStep-icon {
    background: rgba(122, 158, 126, 0.28);
  }

  .ProcessStep-title {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 0.75rem;
  }

  .ProcessStep-text {
    font-size: 0.9rem;
    color: var(--clr-text-secondary);
    line-height: 1.7;
  }
}

.ProcessStep-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-sm);
  margin-top: 4rem;
  color: var(--clr-accent-light);
  font-size: 1.2rem;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.GallerySection {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);

  .GallerySection-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .GallerySection-header {
    max-width: 580px;
    margin-bottom: var(--space-2xl);
  }

  .GallerySection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-sm);
  }
}

.GalleryItem {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;

  &:hover {
    box-shadow: var(--shadow-card-hover);
    transform: scale(1.02);

    .GalleryItem-overlay {
      opacity: 1;
    }

    .GalleryItem-placeholder {
      background: rgba(122, 158, 126, 0.18);
    }
  }

  .GalleryItem-inner {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .GalleryItem-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(122, 158, 126, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background var(--transition-base);

    i {
      font-size: 2.5rem;
      color: var(--clr-accent);
      opacity: 0.5;
    }

    span {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--clr-text-muted);
      letter-spacing: 0.04em;
    }
  }

  .GalleryItem-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 58, 46, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    backdrop-filter: blur(2px);

    i {
      font-size: 1.8rem;
      color: rgba(255, 255, 255, 0.9);
    }
  }
}

/* ============================================================
   SHIPPING SECTION
   ============================================================ */
.ShippingSection {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 158, 126, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .ShippingSection-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .ShippingSection-header {
    max-width: 640px;
    margin-bottom: var(--space-2xl);
  }

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

.ShippingCard {
  background: var(--clr-surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-base);

  &:hover {
    box-shadow: var(--shadow-glass-hover);
    transform: translateY(-5px);
  }

  .ShippingCard-icon {
    width: 56px;
    height: 56px;
    background: rgba(122, 158, 126, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-dark);
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    transition: background var(--transition-fast);
  }

  &:hover .ShippingCard-icon {
    background: rgba(122, 158, 126, 0.28);
  }

  .ShippingCard-title {
    font-family: var(--ff-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 0.75rem;
  }

  .ShippingCard-text {
    font-size: 0.9rem;
    color: var(--clr-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }

  .ShippingCard-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(122, 158, 126, 0.15);
    font-size: 0.88rem;

    span { color: var(--clr-text-secondary); }
    strong { color: var(--clr-primary); font-weight: 600; }

    &:last-of-type { border-bottom: none; }
  }

  .ShippingCard-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-accent-dark);
    transition: all var(--transition-fast);

    &:hover {
      color: var(--clr-primary);
      gap: 0.65rem;
    }
  }

  .ShippingCard-paymentIcons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

.PaymentBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-text-secondary);
  background: rgba(45, 58, 46, 0.06);
  border: 1px solid rgba(45, 58, 46, 0.10);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.65rem;

  i { color: var(--clr-accent-dark); }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.ContactSection {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-alt);
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 158, 126, 0.3), transparent);
  }

  .ContactSection-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start;
  }

  .ContactSection-left {
    padding-right: var(--space-md);

    .ContactSection-map {
      margin-top: var(--space-md);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--clr-glass-border);
      box-shadow: var(--shadow-card);
    }
  }
}

.ContactInfo {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);

  .ContactInfo-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);

    i {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: rgba(122, 158, 126, 0.15);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--clr-accent-dark);
      font-size: 0.95rem;
    }

    div {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;

      strong {
        font-size: 0.78rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--clr-text-muted);
      }

      span, a {
        font-size: 0.92rem;
        color: var(--clr-text-secondary);
        line-height: 1.5;
      }

      a:hover {
        color: var(--clr-primary);
      }
    }
  }
}

.ContactForm {
  background: var(--clr-surface-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-glass);

  .ContactForm-field {
    margin-bottom: var(--space-md);
  }

  .ContactForm-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .ContactForm-input,
  .ContactForm-select,
  .ContactForm-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(122, 158, 126, 0.25);
    border-radius: var(--radius-md);
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: var(--clr-text);
    transition: all var(--transition-fast);
    outline: none;
    min-height: 48px;
    box-shadow: var(--shadow-inset);

    &::placeholder {
      color: var(--clr-text-light);
    }

    &:focus {
      border-color: var(--clr-accent);
      background: rgba(255, 255, 255, 0.80);
      box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.15), var(--shadow-inset);
    }
  }

  .ContactForm-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9e7e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }

  .ContactForm-textarea {
    resize: vertical;
    min-height: 120px;
  }

  .ContactForm-privacy {
    margin-bottom: var(--space-md);

    .ContactForm-checkLabel {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      cursor: pointer;
      font-size: 0.85rem;
      color: var(--clr-text-secondary);
      line-height: 1.55;

      input[type="checkbox"] {
        display: none;
      }

      .ContactForm-checkmark {
        width: 20px;
        height: 20px;
        min-width: 20px;
        border: 2px solid rgba(122, 158, 126, 0.4);
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-fast);
        margin-top: 0.1rem;

        &::after {
          content: '';
          width: 6px;
          height: 10px;
          border: 2px solid transparent;
          border-top: none;
          border-left: none;
          transform: rotate(45deg) translateY(-1px);
          transition: border-color var(--transition-fast);
        }
      }

      input[type="checkbox"]:checked + .ContactForm-checkmark {
        background: var(--clr-accent);
        border-color: var(--clr-accent);

        &::after {
          border-color: white;
        }
      }

      a {
        color: var(--clr-accent-dark);
        text-decoration: underline;
        text-underline-offset: 2px;

        &:hover { color: var(--clr-primary); }
      }
    }
  }

  .ContactForm-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.SiteFooter {
  background: var(--clr-primary);
  color: rgba(240, 237, 232, 0.85);
  padding: var(--space-2xl) 0 0;

  .SiteFooter-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem var(--space-2xl);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-xl);
  }

  .SiteFooter-brand {
    .SiteFooter-logo {
      width: 36px;
      height: 36px;
      margin-bottom: var(--space-sm);
      filter: brightness(0) invert(1) opacity(0.7);
    }

    .SiteFooter-tagline {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(240, 237, 232, 0.55);
    }
  }

  .SiteFooter-nav,
  .SiteFooter-legal,
  .SiteFooter-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    h4 {
      font-family: var(--ff-heading);
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(240, 237, 232, 0.45);
      margin-bottom: 0.5rem;
    }

    a, p {
      font-size: 0.88rem;
      color: rgba(240, 237, 232, 0.70);
      line-height: 1.6;
      transition: color var(--transition-fast);
    }

    a:hover {
      color: rgba(240, 237, 232, 0.95);
    }
  }

  .SiteFooter-bottom {
    border-top: 1px solid rgba(240, 237, 232, 0.10);
    padding: var(--space-md) 2rem;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);

    p {
      font-size: 0.8rem;
      color: rgba(240, 237, 232, 0.35);
    }
  }
}

/* ============================================================
   LEGAL PAGES SHARED
   ============================================================ */
.LegalPage {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  flex-direction: column;

  .LegalPage-header {
    background: var(--clr-bg-alt);
    padding: var(--space-xl) 2rem var(--space-lg);
    border-bottom: 1px solid rgba(122, 158, 126, 0.15);

    .LegalPage-headerInner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .LegalPage-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--clr-accent-dark);
      margin-bottom: 0.5rem;
    }

    h1 {
      font-family: var(--ff-heading);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--clr-text);
      margin-bottom: 0.5rem;
    }

    .LegalPage-meta {
      font-size: 0.85rem;
      color: var(--clr-text-muted);
    }
  }

  .LegalPage-body {
    flex: 1;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: var(--space-lg) 2rem var(--space-2xl);
    gap: var(--space-xl);
    align-items: flex-start;
  }

  .LegalPage-sidebar {
    width: 240px;
    min-width: 240px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: var(--space-sm);

    h3 {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--clr-text-muted);
      margin-bottom: var(--space-sm);
    }

    .LegalPage-tocList {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;

      a {
        display: block;
        font-size: 0.82rem;
        color: var(--clr-text-muted);
        padding: 0.4rem 0.75rem;
        border-radius: var(--radius-sm);
        border-left: 2px solid transparent;
        transition: all var(--transition-fast);
        line-height: 1.4;

        &:hover {
          color: var(--clr-primary);
          background: var(--clr-primary-muted);
          border-left-color: var(--clr-accent);
        }

        &.active {
          color: var(--clr-primary);
          background: rgba(122, 158, 126, 0.10);
          border-left-color: var(--clr-accent-dark);
          font-weight: 500;
        }
      }
    }
  }

  .LegalPage-content {
    flex: 1;
    min-width: 0;

    h2 {
      font-family: var(--ff-heading);
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--clr-text);
      margin-top: var(--space-xl);
      margin-bottom: var(--space-sm);
      padding-top: var(--space-lg);
      border-top: 1px solid rgba(122, 158, 126, 0.12);

      &:first-child {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
      }
    }

    h3 {
      font-family: var(--ff-heading);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--clr-text);
      margin-top: var(--space-md);
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 0.92rem;
      color: var(--clr-text-secondary);
      line-height: 1.8;
      margin-bottom: var(--space-sm);
    }

    ul, ol {
      margin-left: 1.5rem;
      margin-bottom: var(--space-sm);

      li {
        font-size: 0.92rem;
        color: var(--clr-text-secondary);
        line-height: 1.75;
        margin-bottom: 0.3rem;
      }
    }

    a {
      color: var(--clr-accent-dark);
      text-decoration: underline;
      text-underline-offset: 2px;

      &:hover { color: var(--clr-primary); }
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: var(--space-md);
      font-size: 0.88rem;

      th, td {
        padding: 0.75rem 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(122, 158, 126, 0.12);
      }

      th {
        font-weight: 600;
        color: var(--clr-text);
        background: rgba(122, 158, 126, 0.08);
      }

      td {
        color: var(--clr-text-secondary);
      }
    }
  }

  .LegalPage-mobileToc {
    display: none;
    margin-bottom: var(--space-md);

    details {
      background: var(--clr-surface);
      border: 1px solid var(--clr-glass-border);
      border-radius: var(--radius-md);
      padding: var(--space-sm);

      summary {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--clr-primary);
        cursor: pointer;
        padding: 0.25rem 0;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;

        &::after {
          content: '\f107';
          font-family: 'Font Awesome 6 Free';
          font-weight: 900;
          color: var(--clr-accent);
        }
      }

      .LegalPage-mobileTocList {
        margin-top: var(--space-sm);
        display: flex;
        flex-direction: column;
        gap: 0.25rem;

        a {
          display: block;
          font-size: 0.85rem;
          color: var(--clr-text-secondary);
          padding: 0.35rem 0.5rem;
          border-radius: var(--radius-sm);
          transition: all var(--transition-fast);

          &:hover {
            color: var(--clr-primary);
            background: var(--clr-primary-muted);
          }
        }
      }
    }
  }
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.ThanksPage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  .ThanksPage-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) 2rem;

    .ThanksPage-card {
      max-width: 580px;
      width: 100%;
      background: var(--clr-surface-strong);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--clr-glass-border);
      border-radius: var(--radius-xl);
      padding: var(--space-2xl);
      text-align: center;
      box-shadow: var(--shadow-glass);

      .ThanksPage-icon {
        width: 72px;
        height: 72px;
        background: rgba(122, 158, 126, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--space-md);
        color: var(--clr-accent-dark);
        font-size: 1.8rem;
      }

      h1 {
        font-family: var(--ff-heading);
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 700;
        color: var(--clr-text);
        margin-bottom: var(--space-sm);
      }

      p {
        font-size: 0.95rem;
        color: var(--clr-text-secondary);
        line-height: 1.75;
        margin-bottom: var(--space-md);
      }

      .ThanksPage-steps {
        background: rgba(122, 158, 126, 0.07);
        border: 1px solid rgba(122, 158, 126, 0.15);
        border-radius: var(--radius-md);
        padding: var(--space-md);
        text-align: left;
        margin-bottom: var(--space-lg);

        h3 {
          font-family: var(--ff-heading);
          font-size: 0.9rem;
          font-weight: 600;
          color: var(--clr-text);
          margin-bottom: var(--space-sm);
        }

        ul {
          list-style: none;
          display: flex;
          flex-direction: column;
          gap: 0.6rem;

          li {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            font-size: 0.88rem;
            color: var(--clr-text-secondary);
            line-height: 1.5;

            i {
              color: var(--clr-accent-dark);
              margin-top: 0.15rem;
              flex-shrink: 0;
            }
          }
        }
      }
    }
  }
}

/* ============================================================
   COOKIE CONSENT (SPLIT BANNER)
   ============================================================ */
.CookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 40px rgba(45, 58, 46, 0.18), 0 -2px 12px rgba(45, 58, 46, 0.08);

  &.CookieConsent--visible {
    transform: translateY(0);
  }

  .CookieConsent-left {
    flex: 1;
    background: rgba(45, 58, 46, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    .CookieConsent-logo {
      font-family: var(--ff-heading);
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 0.5rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    h3 {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.60);
      line-height: 1.6;

      a {
        color: rgba(168, 197, 172, 0.85);
        text-decoration: underline;
        text-underline-offset: 2px;

        &:hover { color: rgba(168, 197, 172, 1); }
      }
    }
  }

  .CookieConsent-right {
    flex: 1;
    background: rgba(240, 237, 232, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    border-top: 1px solid rgba(122, 158, 126, 0.20);

    .CookieConsent-toggles {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .CookieConsent-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;

      .CookieConsent-toggleLabel {
        font-size: 0.82rem;
        color: var(--clr-text-secondary);
        font-weight: 500;

        span {
          font-size: 0.72rem;
          color: var(--clr-text-muted);
          font-weight: 400;
          display: block;
        }
      }

      .CookieConsent-switch {
        position: relative;
        width: 40px;
        height: 22px;
        flex-shrink: 0;

        input {
          opacity: 0;
          width: 0;
          height: 0;
          position: absolute;

          &:checked + .CookieConsent-switchTrack {
            background: var(--clr-accent);

            &::after {
              transform: translateX(18px);
            }
          }

          &:disabled + .CookieConsent-switchTrack {
            opacity: 0.5;
            cursor: not-allowed;
          }
        }

        .CookieConsent-switchTrack {
          position: absolute;
          inset: 0;
          background: rgba(45, 58, 46, 0.15);
          border-radius: 22px;
          cursor: pointer;
          transition: background var(--transition-base);

          &::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 16px;
            height: 16px;
            background: white;
            border-radius: 50%;
            transition: transform var(--transition-base);
            box-shadow: 0 1px 4px rgba(0,0,0,0.2);
          }
        }
      }
    }

    .CookieConsent-actions {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-top: 0.25rem;

      button {
        flex: 1;
        min-width: 100px;
        padding: 0.6rem 1rem;
        border-radius: var(--radius-pill);
        font-size: 0.82rem;
        font-weight: 600;
        font-family: var(--ff-body);
        transition: all var(--transition-base);
        cursor: pointer;
        min-height: 44px;
      }

      .CookieConsent-btnAccept {
        background: var(--clr-primary);
        color: #f5f2ed;
        border: none;
        box-shadow: 0 2px 12px rgba(45, 58, 46, 0.25);

        &:hover {
          background: var(--clr-primary-light);
          box-shadow: 0 4px 20px rgba(45, 58, 46, 0.32);
        }
      }

      .CookieConsent-btnSave {
        background: transparent;
        color: var(--clr-primary);
        border: 1px solid rgba(45, 58, 46, 0.25);

        &:hover {
          background: var(--clr-primary-muted);
          border-color: var(--clr-accent);
        }
      }

      .CookieConsent-btnReject {
        background: transparent;
        color: var(--clr-text-muted);
        border: 1px solid rgba(45, 58, 46, 0.12);
        flex: 0 0 auto;

        &:hover {
          color: var(--clr-text-secondary);
          border-color: rgba(45, 58, 46, 0.25);
        }
      }
    }
  }
}

/* ============================================================
   IMPRESSUM PAGE
   ============================================================ */
.ImpressumPage {
  min-height: 100vh;
  padding-top: 80px;

  .ImpressumPage-header {
    background: var(--clr-bg-alt);
    padding: var(--space-xl) 2rem var(--space-lg);
    border-bottom: 1px solid rgba(122, 158, 126, 0.15);
    max-width: 1200px;
    margin: 0 auto;
  }

  .ImpressumPage-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) 2rem var(--space-2xl);

    h2 {
      font-family: var(--ff-heading);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--clr-text);
      margin-top: var(--space-xl);
      margin-bottom: var(--space-sm);
      padding-top: var(--space-lg);
      border-top: 1px solid rgba(122, 158, 126, 0.12);

      &:first-child {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
      }
    }

    p {
      font-size: 0.92rem;
      color: var(--clr-text-secondary);
      line-height: 1.8;
      margin-bottom: var(--space-sm);
    }

    a {
      color: var(--clr-accent-dark);
      text-decoration: underline;
      text-underline-offset: 2px;

      &:hover { color: var(--clr-primary); }
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: var(--space-md);
      font-size: 0.88rem;

      th, td {
        padding: 0.75rem 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(122, 158, 126, 0.12);
      }

      th {
        font-weight: 600;
        color: var(--clr-text);
        background: rgba(122, 158, 126, 0.08);
        width: 35%;
      }

      td {
        color: var(--clr-text-secondary);
      }
    }
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .CollectionSection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ProcessSection-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .ProcessStep-connector {
    display: none;
  }

  .SiteFooter-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 900px) {
  .SiteHeader-nav,
  .SiteHeader-cta {
    display: none;
  }

  .SiteHeader-menuBtn {
    display: flex;
  }

  .MobileMenu {
    display: block;
  }

  .PageHero-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .PageHero-visual {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    .PageHero-glassCard {
      max-width: 280px;

      &.PageHero-glassCard--offset {
        margin-right: 0;
      }
    }
  }

  .MaterialSection-container {
    grid-template-columns: 1fr;
  }

  .MaterialSection-left {
    padding-right: 0;
  }

  .CompareSection-grid {
    grid-template-columns: 1fr;
  }

  .ShippingSection-grid {
    grid-template-columns: 1fr;
  }

  .ContactSection-container {
    grid-template-columns: 1fr;
  }

  .ContactSection-left {
    padding-right: 0;
  }

  .GallerySection-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .LegalPage-sidebar {
    display: none;
  }

  .LegalPage-mobileToc {
    display: block;
  }

  .LegalPage-body {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
    --space-3xl: 6rem;
  }

  .CollectionSection-grid {
    grid-template-columns: 1fr;
  }

  .GallerySection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .PageHero-visual {
    flex-direction: column;
    align-items: stretch;

    .PageHero-glassCard {
      max-width: 100%;
    }
  }

  .SiteFooter-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .SiteFooter-bottom {
    flex-direction: column;
    text-align: center;
  }

  .CookieConsent {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }

  .ContactForm {
    padding: var(--space-md);
  }

  .PageHero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(122, 158, 126, 0.35);
  border-radius: 3px;

  &:hover {
    background: rgba(122, 158, 126, 0.55);
  }
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(122, 158, 126, 0.25);
  color: var(--clr-text);
}