/* Hemija Svilenković — minimal, elegant, professional. */

:root {
    --ink:        #0a0a0b;
    --bg:         #faf9f6;
    --surface:    #ffffff;
    --mute:       #6e6e74;
    --mute-2:     #9a9a9f;
    --hairline:   #ece9e2;
    --hairline-2: #d9d5cb;
    --accent:     #0e5d4e;
    --accent-2:   #084538;
    --accent-tint:#e8f1ee;
    --danger:     #b03a16;
    --warn:       #9a6a1d;
    --ok:         #2f7a44;

    --shadow-1: 0 1px 2px rgba(10,10,11,0.04);
    --shadow-2: 0 8px 24px rgba(10,10,11,0.06);
    --shadow-3: 0 20px 60px rgba(10,10,11,0.10);

    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 14px;

    --maxw: 1280px;
    --gut:  clamp(16px, 3vw, 32px);

    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Fraunces', 'EB Garamond', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Menlo', monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'ss01', 'cv11';
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0;
    font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 28;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--ink); }
.lead { font-size: 1.125rem; color: var(--mute); max-width: 60ch; }

small, .small { font-size: 0.875rem; }
.kicker {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute);
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gut);
}

.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--tight { padding: clamp(32px, 5vw, 56px) 0; }

.hairline { border: 0; border-top: 1px solid var(--hairline); margin: 0; }
.muted { color: var(--mute); }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--hairline);
}
.site-header__top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}
.brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand__mark {
    width: 28px; height: 28px;
    display: inline-grid; place-items: center;
    background: var(--ink);
    color: var(--bg);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0;
    font-weight: 500;
}
.nav {
    display: flex; align-items: center; gap: 28px;
}
.nav a {
    font-size: 0.9rem;
    color: var(--ink);
    position: relative;
}
.nav a.active { color: var(--accent); }
.nav a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-tools { display: flex; align-items: center; gap: 14px; }
.icon-btn {
    width: 38px; height: 38px;
    display: inline-grid; place-items: center;
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    color: var(--ink);
    text-decoration: none;
    position: relative;
    transition: border-color .15s, background .15s;
}
.icon-btn:hover { border-color: var(--ink); background: var(--surface); }
.icon-btn .badge-count {
    position: absolute; top: -4px; right: -4px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--accent); color: #fff;
    border-radius: 999px;
    font-size: 0.65rem; font-weight: 600;
    display: inline-grid; place-items: center;
    font-family: var(--font-mono);
}
.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    color: var(--ink);
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 22px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--bg);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform .12s ease, background .15s, border-color .15s, color .15s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn--sm { padding: 9px 16px; font-size: 0.82rem; }
.btn--block { width: 100%; }

/* Hero */
.hero {
    position: relative;
    padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 80px);
    overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__copy { max-width: 60ch; }
.hero__copy h1 { margin: 14px 0 18px; }
.hero__copy .lead { font-size: 1.1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero__visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
    max-width: 520px;
    margin-left: auto;
    width: 100%;
}
.hero__visual canvas { width: 100%; height: 100%; display: block; }
.hero__caption {
    position: absolute; bottom: 14px; left: 14px;
    font-family: var(--font-mono);
    font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--mute);
}

/* Feature row (USP under hero) */
.usp-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}
.usp {
    padding: 24px var(--gut);
    border-right: 1px solid var(--hairline);
}
.usp:last-child { border-right: 0; }
.usp .kicker { display: block; margin-bottom: 8px; }
.usp__title { font-family: var(--font-serif); font-size: 1.1rem; }

/* Category grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    overflow: hidden;
}
.cat-tile {
    background: var(--surface);
    padding: 28px 22px;
    display: flex; flex-direction: column; gap: 8px;
    text-decoration: none;
    transition: background .2s ease;
    min-height: 160px;
    justify-content: space-between;
}
.cat-tile:hover { background: var(--accent-tint); }
.cat-tile__name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink); }
.cat-tile__count { color: var(--mute); font-size: 0.82rem; }
.cat-tile__arrow { font-size: 1.4rem; align-self: flex-end; color: var(--mute); transition: transform .2s ease, color .2s; }
.cat-tile:hover .cat-tile__arrow { transform: translateX(4px); color: var(--accent); }

/* Section heads */
.section__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
}
.section__head h2 { max-width: 18ch; }
.section__head .kicker { display: block; margin-bottom: 6px; }
.section__head a.more { font-size: 0.92rem; color: var(--ink); border-bottom: 1px solid var(--hairline); padding-bottom: 2px; }
.section__head a.more:hover { color: var(--accent); border-color: var(--accent); }

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: clamp(20px, 2.5vw, 32px);
}
.product-card {
    display: block; text-decoration: none; color: inherit;
    position: relative;
}
.product-card__media {
    position: relative;
    aspect-ratio: 1 / 1.1;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color .2s ease, transform .2s ease;
}
.product-card:hover .product-card__media { border-color: var(--hairline-2); transform: translateY(-2px); }
.product-card__media img,
.product-card__media svg { width: 100%; height: 100%; object-fit: contain; padding: 18%; transition: transform .35s ease; }
.product-card:hover .product-card__media img,
.product-card:hover .product-card__media svg { transform: scale(1.04); }
.product-card__sku {
    position: absolute; top: 12px; left: 12px;
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em;
    color: var(--mute);
}
.product-card__badge {
    position: absolute; top: 12px; right: 12px;
    padding: 5px 9px;
    background: var(--ink); color: var(--bg);
    border-radius: 999px;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em;
}
.product-card__badge--accent { background: var(--accent); }
.product-card__badge--sale { background: var(--danger); }
.product-card__name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.25;
    margin: 0 0 6px;
}
.product-card__meta {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.product-card__unit { font-size: 0.82rem; color: var(--mute); }
.product-card__price {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    display: flex; align-items: baseline; gap: 8px;
}
.product-card__price del { color: var(--mute-2); font-weight: 400; font-size: 0.85rem; }

/* Product page */
.pdp { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.pdp__media {
    aspect-ratio: 1/1;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    display: grid; place-items: center;
    padding: 8%;
}
.pdp__media img, .pdp__media svg { width: 100%; height: 100%; object-fit: contain; }
.pdp__copy .kicker { display: block; margin-bottom: 12px; }
.pdp__copy h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.pdp__price-row { display: flex; align-items: baseline; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--hairline); margin: 18px 0 24px; }
.pdp__price { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 600; }
.pdp__price--old { color: var(--mute-2); font-size: 1rem; text-decoration: line-through; }
.pdp__price-meta { font-size: 0.85rem; color: var(--mute); margin-left: auto; }
.pdp__buy-row { display: flex; gap: 14px; align-items: stretch; margin: 24px 0; }
.qty-input {
    display: inline-flex; align-items: center;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    overflow: hidden;
}
.qty-input button { background: transparent; border: 0; padding: 12px 16px; font-size: 1.1rem; color: var(--ink); }
.qty-input input { width: 44px; text-align: center; border: 0; background: transparent; font-family: var(--font-mono); font-size: 0.95rem; color: var(--ink); padding: 12px 0; }
.qty-input input:focus { outline: none; }

.spec-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 0.92rem; }
.spec-table th { text-align: left; font-weight: 500; color: var(--mute); padding: 12px 0; border-bottom: 1px solid var(--hairline); width: 38%; vertical-align: top; }
.spec-table td { padding: 12px 0; border-bottom: 1px solid var(--hairline); color: var(--ink); }

.pdp__tabs { margin-top: 32px; }
.pdp__tabs h3 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; margin: 18px 0 8px; }

/* Filters / sidebar */
.shop {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}
.filters { position: sticky; top: 84px; }
.filter-group { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.filter-group:first-child { padding-top: 0; }
.filter-group h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
    margin: 0 0 12px;
    font-weight: 500;
}
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin: 6px 0; }
.filter-list a {
    display: flex; justify-content: space-between;
    padding: 4px 0;
    font-size: 0.92rem;
    color: var(--ink);
}
.filter-list a:hover { color: var(--accent); }
.filter-list a.active { color: var(--accent); font-weight: 500; }
.filter-list a span { color: var(--mute-2); font-family: var(--font-mono); font-size: 0.78rem; }
.shop__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.shop__head h1 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.shop__sort select { font-family: var(--font-sans); font-size: 0.85rem; border: 1px solid var(--hairline); padding: 8px 12px; border-radius: 999px; background: var(--surface); }

/* Cart drawer */
.cart-page { padding: clamp(32px, 6vw, 56px) 0 64px; }
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-family: var(--font-mono); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); text-align: left; padding: 10px 0; border-bottom: 1px solid var(--hairline); }
.cart-table td { padding: 16px 0; border-bottom: 1px solid var(--hairline); vertical-align: middle; }
.cart-table .cart-item { display: flex; align-items: center; gap: 14px; }
.cart-table .cart-thumb { width: 64px; height: 64px; border: 1px solid var(--hairline); border-radius: 6px; display: grid; place-items: center; background: var(--surface); flex-shrink: 0; }
.cart-table .cart-thumb img, .cart-table .cart-thumb svg { width: 100%; height: 100%; object-fit: contain; padding: 12%; }
.cart-table .cart-name { font-family: var(--font-serif); font-size: 1.02rem; line-height: 1.2; }
.cart-table .cart-sku { font-family: var(--font-mono); font-size: 0.72rem; color: var(--mute); }
.cart-table .cart-remove { background: none; border: 0; color: var(--mute); font-size: 0.85rem; padding: 0; cursor: pointer; }
.cart-table .cart-remove:hover { color: var(--danger); }
.cart-summary { padding: 24px; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); }
.cart-summary h2 { font-size: 1.2rem; margin-bottom: 16px; }
.cart-summary__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.92rem; color: var(--ink); }
.cart-summary__row .muted { color: var(--mute); }
.cart-summary__row--total { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 600; padding-top: 14px; border-top: 1px solid var(--hairline); margin-top: 8px; }

.empty {
    padding: 80px 24px; text-align: center;
    border: 1px dashed var(--hairline-2);
    border-radius: var(--r-md);
    color: var(--mute);
}
.empty h2 { color: var(--ink); margin-bottom: 8px; }

/* Forms */
form .row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
form .row--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--mute); margin-bottom: 6px; font-family: var(--font-mono); text-transform: uppercase; }
.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid var(--hairline);
    background: var(--surface);
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font: inherit;
    color: var(--ink);
    transition: border-color .15s;
}
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; border-color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field--check label { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-sans); text-transform: none; letter-spacing: 0; color: var(--ink); font-size: 0.92rem; }
.field--check input { width: auto; margin-top: 3px; }

.payment-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.payment-options label {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: border-color .15s, background .15s;
    font-family: var(--font-sans); text-transform: none; letter-spacing: 0;
    color: var(--ink); font-size: 0.92rem;
}
.payment-options input { accent-color: var(--accent); }
.payment-options label:has(input:checked) { border-color: var(--ink); background: var(--surface); }

/* Badges */
.badge {
    display: inline-flex; align-items: center;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 500;
    border-radius: 999px;
    background: var(--accent-tint);
    color: var(--accent-2);
    letter-spacing: 0.04em;
}
.badge-new { background: #fff4e6; color: #aa4f00; }
.badge-accepted { background: var(--accent-tint); color: var(--accent-2); }
.badge-ready { background: #f3edff; color: #5b3f9d; }
.badge-shipped { background: #e5f1ff; color: #1a4f8c; }
.badge-delivered { background: #e8f1ee; color: var(--accent-2); }
.badge-canceled { background: #f8e6e1; color: #8d2c0c; }

/* Footer */
.site-footer {
    background: var(--ink);
    color: #cfcfd2;
    padding: 64px 0 32px;
    margin-top: 80px;
}
.site-footer a { color: #e8e8ea; }
.site-footer a:hover { color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-grid h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9a9aa0;
    margin-bottom: 16px;
    font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 8px 0; font-size: 0.92rem; }
.footer-brand { font-family: var(--font-serif); font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.footer-tag { color: #a8a8ad; font-size: 0.92rem; max-width: 38ch; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    padding-top: 24px;
    font-size: 0.82rem;
    color: #8a8a90;
    gap: 12px;
}

/* Breadcrumb */
.crumbs { padding: 18px 0 0; font-size: 0.82rem; color: var(--mute); font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: lowercase; }
.crumbs a { color: var(--mute); }
.crumbs a:hover { color: var(--ink); }
.crumbs span.sep { margin: 0 8px; color: var(--mute-2); }

/* B2B */
.b2b-hero { padding: clamp(56px, 8vw, 96px) 0; background: var(--accent-tint); border-bottom: 1px solid var(--hairline); }
.b2b-hero .kicker { color: var(--accent-2); }
.b2b-hero h1 { color: var(--accent-2); max-width: 16ch; }
.b2b-hero p.lead { color: #2a4d44; max-width: 56ch; }
.b2b-benefits {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px; margin-top: 32px;
}
.b2b-benefit { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 22px; }
.b2b-benefit h3 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 8px; }

/* Tables */
.table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.table th { text-align: left; font-family: var(--font-mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); padding: 12px 8px; border-bottom: 1px solid var(--hairline); }
.table td { padding: 14px 8px; border-bottom: 1px solid var(--hairline); vertical-align: middle; }
.table tr:hover td { background: rgba(0,0,0,0.015); }

/* Flash */
.flash {
    padding: 14px 18px;
    border-radius: var(--r-sm);
    margin: 16px 0;
    font-size: 0.92rem;
}
.flash--ok { background: var(--accent-tint); color: var(--accent-2); }
.flash--err { background: #fceae3; color: var(--danger); }

/* Cookie banner */
.cookie {
    position: fixed; left: 16px; right: 16px; bottom: 16px;
    z-index: 100;
    background: var(--ink); color: #e8e8ea;
    border-radius: var(--r-md);
    padding: 18px 22px;
    display: none;
    align-items: center; gap: 16px;
    box-shadow: var(--shadow-3);
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.88rem;
}
.cookie.show { display: flex; }
.cookie a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookie__btns { margin-left: auto; display: flex; gap: 8px; }
.cookie__btn {
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent; color: #fff;
    padding: 9px 16px; border-radius: 999px;
    font-size: 0.82rem;
}
.cookie__btn--primary { background: #fff; color: var(--ink); border-color: #fff; }

/* Search */
.search-modal {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(10,10,11,0.45);
    backdrop-filter: blur(6px);
    display: none;
    align-items: flex-start;
    padding-top: 12vh;
}
.search-modal.open { display: flex; }
.search-modal__panel {
    width: min(680px, 92vw);
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-3);
}
.search-modal__input {
    width: 100%; padding: 22px 26px;
    border: 0; border-bottom: 1px solid var(--hairline);
    font: inherit; font-size: 1.1rem;
}
.search-modal__results { max-height: 60vh; overflow: auto; }
.search-modal__row { display: flex; align-items: center; gap: 14px; padding: 14px 22px; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--hairline); }
.search-modal__row:hover { background: var(--bg); }
.search-modal__thumb { width: 44px; height: 44px; border: 1px solid var(--hairline); border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; }
.search-modal__thumb img, .search-modal__thumb svg { width: 100%; height: 100%; object-fit: contain; padding: 18%; }

/* Responsive */
@media (max-width: 1024px) {
    .shop { grid-template-columns: 1fr; }
    .filters { position: static; }
    .filters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
    .cart-layout { grid-template-columns: 1fr; }
    .pdp { grid-template-columns: 1fr; }
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { max-width: 360px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .nav { display: none; }
    .menu-toggle { display: inline-grid; place-items: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    form .row, form .row--3 { grid-template-columns: 1fr; }
    .cart-table thead { display: none; }
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; }
    .cart-table tr { border-bottom: 1px solid var(--hairline); padding: 10px 0; }
    .cart-table td { padding: 6px 0; border: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
