/*
Theme Name:  PureBell
Theme URI:   https://www.purebell.de
Description: Custom theme for PureBell — Kettlebell-Starter-System. Ein-Produkt-Funnel mit WooCommerce, Blog und DSGVO-konformem Tracking.
Version:     1.0.0
Author:      Martin Kawalla
Author URI:  https://www.purebell.de
License:     Private
Text Domain: purebell
*/

/* ─── Design Tokens ─────────────────────────────────────────────── */
:root {
  --orange:        #FF7A1A;
  --orange-dark:   #E06010;
  --orange-soft:   #FFF1E5;
  --orange-line:   #FFD9B8;
  --ink:           #1A1A1A;
  --ink-soft:      #4A4A4A;
  --ink-muted:     #8A8A8A;
  --paper:         #FFFFFF;
  --paper-warm:    #FAFAF7;
  --rule:          #E8E5DF;
  --green:         #2E7D52;
  --green-soft:    #F0F9F4;
  --green-line:    #C3E6D2;
  --red-err:       #D94040;
  --dark:          #111111;

  --font-head:     'Manrope', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --radius:        8px;
  --radius-lg:     16px;

  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      1.5rem;
  --space-lg:      2.5rem;
  --space-xl:      4rem;
  --space-2xl:     6rem;

  --max-w:         680px;
  --max-w-wide:    900px;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
