/* tokens — extracted from v1-category-18.html
   Source of truth — based on baseline file. */

:root {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --color-text-primary: #1C1C1A;
    --color-text-secondary: #5F5E5A;
    --color-text-tertiary: #6B6964;
    --color-border-secondary: #D3D1C7;
    --color-border-tertiary: #E8E8E4;
    --border-radius-md: 8px;
    /* ── BRAND COLORS (locked to logo) ──
       Green:  #149A49  (BDStall green — house roof, "BD" wordmark)
       Orange: #F58320  (BDStall orange — house body; canonical brand orange) */
    --green: #149A49;
    --green-dark: #0E7A38;
    --green-light: #D9F0E0;
    --green-subtle: #EAF8EE;
    --orange: #F58320;
    --orange-dark: #C56612;
    --orange-light: #FCE4CC;
    --color-bg-subtle: #FAFBFD;
    --color-warning-bg: #FFFBEB;
    --color-warning-border: #FDE68A;
    --color-warning-text: #92400E;
    --color-warning-strong: #78350F;
  }

html { font-size: 16px; }

* { box-sizing: border-box; }

body {
    margin: 0;
    background: #ECECE6;
    font-family: var(--font-sans);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

.page-main { flex: 1 0 auto; }

/* Reserve space for the fixed mobile tab bar — mobile only */
@media (max-width: 767px) {
    body { padding-bottom: 62px; }
  }

@keyframes sdFadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes search-dropdown-slide-down {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

@keyframes ddFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

@keyframes mobile-menu-slide-right { from { transform: translateX(-28px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

@keyframes bannerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

html { scroll-behavior: smooth; }
