:root {
  /* Backgrounds — світліший оливковий, багатші шари */
  --color-bg-primary: #1B2016;
  --color-bg-secondary: #242B1D;
  --color-bg-elevated: #333D28;
  --color-bg-panel: #2A3220;

  /* Accent — тепла латунь */
  --color-accent: #CDB06A;
  --color-accent-hover: #DFC27E;
  --color-accent-muted: rgba(205, 176, 106, 0.55);
  --color-accent-text: #11150F;

  /* Text */
  --color-text-primary: #F0EBE2;
  --color-text-muted: #ACB2A1;
  --color-text-subtle: #8B917F;

  /* UI */
  --color-border: #48563C;
  --color-border-subtle: #39432E;
  --color-border-strong: #5C6B4C;
  --color-error: #D06858;
  --color-success: #6F9A62;

  /* Store accents */
  --color-store-military: #37472C;
  --color-store-tourist: #453829;

  /* Surfaces & glow */
  --color-glow-accent: rgba(205, 176, 106, 0.16);
  --color-glow-military: rgba(76, 96, 60, 0.45);
  --color-overlay-dark: rgba(27, 32, 22, 0.88);
  --color-pattern-stroke: #3D4732;

  /* Shadows */
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.22);
  --shadow-elevated: 0 12px 32px rgba(0, 0, 0, 0.28);

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Jost', system-ui, sans-serif;

  /* Mobile-first spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 16px;
  --topbar-height: 44px;
  --header-bar-height: 56px;
  --header-height: calc(var(--header-bar-height) + var(--safe-top));
  --touch-target: 44px;

  /* Radius */
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Motion */
  --transition-fast: 200ms;
  --transition-base: 300ms;
  --duration-press: 160ms;
  --duration-ui: 200ms;
  --duration-panel: 260ms;
  --duration-reveal: 520ms;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  /* Safe area iOS */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);

  /* Typography scale */
  --text-h1: clamp(2.25rem, 5vw, 4rem);
  --text-h2: clamp(1.75rem, 3vw, 2.25rem);
  --text-h3: clamp(1.375rem, 2.5vw, 1.75rem);
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-price: clamp(1.5rem, 2.5vw, 2rem);
}

@media (min-width: 768px) {
  :root {
    --container-padding: 24px;
    --topbar-height: 60px;
    --header-bar-height: 64px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 32px;
  }
}
