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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'PeydaFaNumWeb', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

input {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ============================================
     DESIGN TOKENS (8px SPACING SYSTEM)
     ============================================ */
:root {
    /* Colors */
    --primary: #80ad01;
    --primary-soft: #80ad011a;
    --primary-hover: #6f9501;
    --bg: #ffffff;
    --bg-soft: #f8faf5;
    --bg-warm: #f4f6ef;
    --text: #1f2937;
    --text-soft: #374151;
    --muted: #6b7280;
    --border: #edf2e8;
    --border-strong: #dde4d5;
    --card: #ffffff;
    --shadow-sm: 0 1px 2px rgba(31, 41, 55, 0.04);
    --shadow-md: 0 4px 16px rgba(31, 41, 55, 0.06), 0 2px 4px rgba(31, 41, 55, 0.04);
    --shadow-lg: 0 16px 40px rgba(31, 41, 55, 0.08), 0 4px 12px rgba(31, 41, 55, 0.04);
    --shadow-xl: 0 32px 64px rgba(31, 41, 55, 0.10), 0 8px 16px rgba(31, 41, 55, 0.04);
    --shadow-green: 0 12px 32px rgba(128, 173, 1, 0.25);

    /* Spacing — 8px system */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 64px;
    --space-8: 96px;
    --space-9: 128px;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --duration: 0.3s;
    --duration-slow: 0.5s;

    /* Layout */
    --container: 1400px;
    --container-narrow: 960px;
}

/* ============================================
     TYPOGRAPHY SCALE
     ============================================ */
.display-1 {
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 400;
}

.display-2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.display-3 {
    font-size: clamp(32px, 3.5vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.h1 {
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 500;
}

.h2 {
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    font-weight: 500;
}

.h3 {
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.body-l {
    font-size: 18px;
    line-height: 1.65;
}

.body-m {
    font-size: 16px;
    line-height: 1.6;
}

.body-s {
    font-size: 14px;
    line-height: 1.55;
}

.caption {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

/* ============================================
     LAYOUT HELPERS
     ============================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

section {
    padding: var(--space-8) 0;
}

/* ============================================
     HEADER — STICKY
     ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-4) 0;
}

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

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #95c310 100%);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-green);
    flex-shrink: 0;
}

.brand-mark svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.brand-name {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text);
}

.brand-tag {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Search in header */
.header-search {
    justify-self: center;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.header-search input {
    width: 100%;
    height: 44px;
    padding: 0 var(--space-4) 0 44px;
    background-color: var(--bg-soft);
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    color: var(--text);
    font-size: 14px;
    transition: all var(--duration) var(--ease);
}

.header-search input::placeholder {
    color: var(--muted);
}

.header-search input:focus {
    background-color: var(--bg);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.header-search .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}


/* ============================================
     HERO
     ============================================ */
.hero {
    position: relative;
    padding: var(--space-8) 0 var(--space-9);
    overflow: hidden;
    background: radial-gradient(ellipse at top right, var(--bg-soft) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, var(--bg-warm) 0%, transparent 50%);
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-decoration .blob-1 {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-decoration .blob-2 {
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(128, 173, 1, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-decoration .leaf {
    position: absolute;
    color: var(--primary);
    opacity: 0.15;
}

.hero-decoration .leaf-1 {
    top: 15%;
    left: 8%;
    width: 80px;
    height: 80px;
    transform: rotate(-15deg);
}

.hero-decoration .leaf-2 {
    top: 65%;
    right: 12%;
    width: 60px;
    height: 60px;
    transform: rotate(35deg);
}

.hero-decoration .leaf-3 {
    bottom: 10%;
    left: 48%;
    width: 40px;
    height: 40px;
    transform: rotate(75deg);
    opacity: 0.1;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--space-7);
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 8px 16px;
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-5);
}

.hero-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.hero-title {
    margin-bottom: var(--space-4);
    color: var(--text);
    font-weight: 900;
}

.hero-title .accent {
    color: var(--primary);
    font-weight: 700;
}

.hero-description {
    color: var(--muted);
    max-width: 520px;
    margin-bottom: var(--space-6);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-7);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 56px;
    padding: 0 var(--space-5);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-pill);
    transition: all var(--duration) var(--ease);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration) var(--ease);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
    border-color: var(--text);
    background-color: var(--text);
    color: #fff;
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border);
}

.stat-value {
    font-size: 32px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 540px;
    justify-self: end;
    width: 100%;
}

.hero-image-frame {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}

.hero-visual:hover .hero-image-frame img {
    transform: scale(1.03);
}

.hero-floating-card {
    position: absolute;
    background-color: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -8%;
    width: 240px;
}

.hero-floating-card.card-2 {
    bottom: 12%;
    right: -8%;
    width: 260px;
}

.floating-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background-color: var(--bg-soft);
    display: grid;
    place-items: center;
    color: var(--primary);
    flex-shrink: 0;
}

.floating-icon svg {
    width: 22px;
    height: 22px;
}

.floating-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.floating-subtitle {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    margin-top: 4px;
}

.stars svg {
    width: 12px;
    height: 12px;
}

/* ============================================
     SECTION HEADER
     ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-7);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .eyebrow {
    display: inline-block;
    margin-bottom: var(--space-3);
}

.section-header .h2 {
    margin-bottom: var(--space-3);
    color: var(--text);
}

.section-header p {
    color: var(--muted);
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
     SEARCH SECTION
     ============================================ */
.search-section {
    padding: var(--space-7) 0;
    background-color: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.search-box {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    height: 72px;
    padding: 0 72px 0 var(--space-6);
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 17px;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
}

.search-box input::placeholder {
    color: var(--muted);
    font-size: 15px;
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 6px var(--primary-soft), var(--shadow-md);
}

.search-box .search-icon {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    color: var(--primary);
    pointer-events: none;
}

.search-box .search-action {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 52px;
    padding: 0 var(--space-4);
    background-color: var(--text);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--duration) var(--ease);
}

.search-box .search-action:hover {
    background-color: var(--primary);
}

.search-suggestions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.search-suggestions .label {
    font-size: 13px;
    color: var(--muted);
    margin-right: var(--space-2);
    align-self: center;
}

.suggestion {
    padding: 6px 14px;
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--text-soft);
    transition: all var(--duration) var(--ease);
}

.suggestion:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* ============================================
     CATEGORIES
     ============================================ */
.categories-section {
    padding: var(--space-7) 0 var(--space-5);
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    height: 48px;
    padding: 0 var(--space-4);
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    transition: all var(--duration) var(--ease);
    box-shadow: var(--shadow-sm);
}

.category-chip svg {
    width: 18px;
    height: 18px;
}

.category-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary);
    border-color: var(--primary);
}

.category-chip.active {
    background-color: var(--text);
    color: #fff;
    border-color: var(--text);
    box-shadow: var(--shadow-md);
}

.category-chip.active svg {
    color: #fff;
}

.category-chip .chip-count {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    background-color: var(--bg-soft);
    color: var(--muted);
    border-radius: var(--radius-pill);
}

.category-chip.active .chip-count {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.category-chip:hover .chip-count {
    background-color: var(--primary-soft);
    color: var(--primary);
}

/* ============================================
     PRODUCTS
     ============================================ */
.products-section {
    padding: var(--space-6) 0 var(--space-9);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
}

.product-card {
    background-color: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-strong);
}

.product-card.featured {
    grid-column: span 2;
    grid-row: span 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: var(--space-5);
    gap: var(--space-5);
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-warm) 100%);
    border: none;
}

.product-card.featured .product-media {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0;
}

.product-card.featured .product-body {
    padding: var(--space-4) 0;
    justify-content: center;
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--bg-soft);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}

.product-card:hover .product-media img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
    box-shadow: var(--shadow-sm);
}

.product-badge::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary);
}

.product-badge.new {
    background-color: var(--primary);
    color: #fff;
}

.product-badge.new::before {
    background-color: #fff;
}

.product-badge.popular {
    background-color: var(--text);
    color: #fff;
}

.product-badge.popular::before {
    background-color: #fff;
}

.product-body {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex: 1;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-1);
}

.product-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--border-strong);
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
}

.product-rating svg {
    width: 11px;
    height: 11px;
}

.product-rating span {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.05em;
}

.product-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--text);
    line-height: 1.25;
}

.product-description {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 2px 0 var(--space-3);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price .label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.product-price .value {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text);
}

.product-price .unit {
    font-size: 13px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-left: 4px;
}


/* ============================================
     FOOTER
     ============================================ */
.site-footer {
    background-color: var(--bg-soft);
    padding: var(--space-5) 0 var(--space-5);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-7);
    margin-bottom: var(--space-4);
}

.footer-brand {
    max-width: 360px;
}

.footer-brand .brand {
    margin-bottom: var(--space-4);
}

.footer-brand p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: var(--space-5);
}



.footer-bottom {
    padding-top: var(--space-5);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.footer-legal {
    display: flex;
    gap: var(--space-5);
}

.footer-legal a {
    color: var(--muted);
    transition: color var(--duration) var(--ease);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-7);
    }

    .hero-visual {
        max-width: 480px;
        justify-self: center;
    }

    .hero-floating-card.card-1 {
        left: -4%;
    }

    .hero-floating-card.card-2 {
        right: -4%;
    }

    .product-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    :root {
        --space-8: 80px;
        --space-9: 96px;
    }

    .header-inner {
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        gap: var(--space-3);
        padding: var(--space-3) 0;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .header-search {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: none;
    }

    .header-search input {
        height: 40px;
    }

    .hero-title {
        font-size: clamp(40px, 10vw, 60px);
    }

    .hero-stats {
        gap: var(--space-5);
    }

    .stat-value {
        font-size: 26px;
    }

    .hero-floating-card.card-1 {
        top: auto;
        bottom: -6%;
        left: 4%;
        width: 200px;
    }

    .hero-floating-card.card-2 {
        top: -6%;
        bottom: auto;
        right: 4%;
        width: 200px;
    }

    .search-box input {
        height: 60px;
        padding: 0 var(--space-5) 0 56px;
        font-size: 15px;
    }

    .search-box .search-icon {
        left: 20px;
        width: 20px;
        height: 20px;
    }

    .search-box .search-action {
        height: 44px;
        padding: 0 var(--space-3);
        font-size: 13px;
        right: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-4);
    }

    .product-card.featured {
        padding: var(--space-4);
    }

    .categories {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: var(--space-2);
        margin-left: calc(var(--space-3) * -1);
        margin-right: calc(var(--space-3) * -1);
        padding-left: var(--space-3);
        padding-right: var(--space-3);
        scrollbar-width: none;
    }

    .categories::-webkit-scrollbar {
        display: none;
    }

    .category-chip {
        flex-shrink: 0;
    }
}