:root {
    --wood: #8b5a2b;
    --wood-dark: #5c3a1e;
    --navy: #1c2e24;
    --teal: #2f6b4f;
    --gold: #c4a35a;
    --ink: #1c1917;
    --muted: #6b635c;
    --line: #e7e0d6;
    --paper: #faf7f2;
    --card: #fff;
    --soft: #f3eee6;
    --shadow: 0 10px 30px rgba(28, 25, 23, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Poppins, system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1220px, calc(100% - 32px)); margin-inline: auto; }

.lm-topbar { display: none; }

.site-top {
    background: var(--card);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}
.contact-strip {
    background: var(--navy);
    color: #f5efe6;
    font-size: 13px;
}
.contact-strip .wrap {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    min-height: 38px;
    flex-wrap: wrap;
}
.contact-strip a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-strip a:hover { color: var(--gold); }
.site-kod-ara-bar {
    background: #fff;
    border-bottom: 1px solid var(--line, #e7e5e4);
    padding: 10px 0;
}
.site-kod-ara {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.site-kod-ara-lbl {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted, #78716c);
    white-space: nowrap;
}
.site-kod-ara input[type="search"] {
    flex: 1;
    min-width: 180px;
    font-size: 16px;
    padding: 11px 14px;
    border: 2px solid #c5d0c6;
    border-radius: 8px;
    background: #fafbfa;
    color: var(--ink, #1c1917);
}
.site-kod-ara input[type="search"]::placeholder {
    color: #b0b5b0;
    opacity: 1;
}
.site-kod-ara input[type="search"]::-webkit-input-placeholder {
    color: #b0b5b0;
}
.site-kod-ara input[type="search"]::-moz-placeholder {
    color: #b0b5b0;
    opacity: 1;
}
.site-kod-ara input[type="search"]:focus {
    outline: none;
    border-color: var(--navy, #1c2e24);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(28, 46, 36, 0.12);
}
.site-kod-ara button {
    border: 0;
    border-radius: 8px;
    background: var(--navy, #1c2e24);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 22px;
    cursor: pointer;
    white-space: nowrap;
}
.site-kod-ara button:hover {
    background: var(--teal, #2c5f2d);
}
.top-menu-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 76px;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
    color: var(--navy);
}
.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(160deg, #2f6b4f, #1c2e24);
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.top-menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-left: auto;
}
.top-menu-links a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 9px 10px;
    color: var(--ink);
    border-radius: 6px;
}
.top-menu-links a.is-on,
.top-menu-links a:hover { color: var(--teal); background: var(--soft); }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 10px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    margin: 6px 0;
}

.hero-banner {
    min-height: 340px;
    background:
        linear-gradient(120deg, rgba(28, 46, 36, 0.86), rgba(47, 107, 79, 0.55)),
        url("../images/hero.jpg") center/cover no-repeat,
        #24382c;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    padding: 56px 16px;
}
.hero-overlay { max-width: 720px; }
.hero-overlay p {
    margin: 0 0 8px;
    font-size: 14px;
    opacity: 0.92;
}
.hero-overlay h1 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    letter-spacing: 0.02em;
    font-weight: 700;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.btn-banner, .btn-call, .btn-detail, .btn, .btn-primary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
}
.btn-banner {
    background: var(--gold);
    color: #1c1917;
    padding: 12px 22px;
}
.btn-ghost {
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    padding: 12px 22px;
}
.btn-call {
    background: var(--navy);
    color: #fff;
    padding: 12px 18px;
    margin-top: 8px;
}
.footer-call-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.footer-call-stack .btn-call {
    margin-top: 0;
    display: inline-block;
}
.btn-detail {
    border: 0;
    background: var(--navy);
    color: #fff;
    padding: 10px 14px;
    width: calc(100% - 24px);
    margin: auto 12px 14px;
}
.btn-detail:hover { background: var(--teal); }
.btn-primary { background: var(--navy); color: #fff; padding: 12px 18px; }

.shop-layout {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 24px;
    padding: 32px 0 64px;
    align-items: start;
}
.cat-rail {
    position: sticky;
    top: 92px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    box-shadow: none;
}
.cat-rail-title { display: none; }
.cat-btn {
    display: block;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: 0.01em;
}
.cat-btn em { display: none; }
.cat-btn:hover { background: var(--soft); color: var(--navy); }
.cat-btn.is-on { background: var(--navy); color: #fff; font-weight: 600; }
.cat-btn.is-on em { background: rgba(255,255,255,.12); color: #fff; }

.shop-head { margin-bottom: 22px; }
.shop-head.center { text-align: left; }
.kicker {
    color: var(--teal);
    font-weight: 600;
    margin: 0 0 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}
.shop-head h1 {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy);
}
.shop-head p, .empty { margin: 0; color: var(--muted); }

.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.prod-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.prod-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease;
}
.prod-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(28, 25, 23, 0.12);
}
.prod-media {
    aspect-ratio: 4/3;
    background: var(--soft);
    overflow: hidden;
    display: block;
}
.prod-media img, .prod-ph { width: 100%; height: 100%; object-fit: cover; }
.prod-ph {
    display: grid;
    place-items: center;
    color: var(--muted);
    background:
        repeating-linear-gradient(-45deg, #efe8dc, #efe8dc 12px, #e7dccb 12px, #e7dccb 24px);
}
.prod-card h3 { margin: 14px 16px 4px; font-size: 16px; text-align: left; }
.prod-card h3 a { text-decoration: none; }
.prod-card h3 a:hover { color: var(--teal); }
.price {
    color: var(--wood-dark);
    font-weight: 700;
    font-size: 18px;
    margin: 0 16px 10px;
    text-align: left;
}
.price.lg { font-size: 28px; margin: 12px 0; }
.price-krs { font-size: calc(1em - 1pt); color: #888; font-weight: 600; }
.price-tl.is-lg { font-size: inherit; }
.sku, .meta { color: var(--muted); font-size: 13px; }
.prod-body { padding: 14px 16px 16px; text-align: left; }

.page-prose { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 28px; }
.page-prose h1 { color: var(--navy); }
.page-prose h2 { font-size: 1.15rem; margin-top: 22px; }

.home-page { padding: 0 0 64px; display: flex; flex-direction: column; gap: 28px; }
.shop-layout.home-with-rail { padding-top: 32px; }
.shop-main.home-page { padding-top: 0; }
.home-block { margin: 0; }
.home-block-panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 20px 24px;
    box-shadow: var(--shadow);
}
.home-block-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.home-block-title {
    margin: 0 0 6px;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    color: var(--navy);
}
.home-block-desc { margin: 0; color: var(--muted); max-width: 52rem; }
.home-block-more {
    white-space: nowrap;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
}
.home-block-more:hover { text-decoration: underline; }
.home-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}
.home-cat-pill {
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}
.home-cat-pill:hover { border-color: var(--navy); color: var(--navy); }
.home-cat-pill.is-on { background: var(--navy); border-color: var(--navy); color: #fff; }
.blog-card .blog-date { margin: 12px 16px 0; }
.blog-excerpt {
    margin: 0 16px 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-article { padding: 32px 0 64px; max-width: 860px; }
.blog-article-head h1 { margin: 4px 0 10px; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.4rem); }
.blog-sub { margin: 0 0 10px; font-size: 1.15rem; color: var(--muted); font-weight: 600; }
.blog-lead { font-size: 1.05rem; color: var(--ink); line-height: 1.55; }
.blog-cover { margin: 18px 0 22px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.blog-cover img { width: 100%; display: block; max-height: 420px; object-fit: cover; }
.blog-body { margin-bottom: 18px; }
.blog-back a { font-weight: 700; color: var(--teal); text-decoration: none; }
.breadcrumb { color: var(--muted); font-size: 13px; margin: 0 0 16px; }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.page-detail { padding: 28px 0 64px; }
.thumb-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.thumb-row img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }

.yt-cinema {
    margin: 22px 0 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0a1220;
    border: 1px solid rgba(28, 46, 36, 0.18);
    box-shadow: 0 14px 36px rgba(15, 23, 32, 0.16);
}
.yt-cinema-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(232, 201, 122, 0.18), transparent 55%),
        #081018;
}
.yt-cinema-stage iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.yt-cinema-cap {
    margin: 0;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    background: linear-gradient(180deg, #1e3352 0%, #0f1c2e 100%);
    border-top: 1px solid rgba(232, 201, 122, 0.28);
}
.yt-cinema.blog-yt { margin: 18px 0 22px; }
.page-detail .yt-cinema { margin-top: 28px; max-width: 100%; }
.crumb { font-size: 13px; color: var(--muted); margin: 0 0 16px; }
.crumb a { color: var(--teal); text-decoration: none; }

.detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 20px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.detail-gallery,
.detail-info {
    min-width: 0;
}
.detail-stage {
    position: relative;
}
.detail-main {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--soft);
    border-radius: 10px;
    display: block;
}
.detail-main[hidden] {
    display: none !important;
}
.detail-main-video {
    object-fit: contain;
    background: #151a17;
}
.detail-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24%;
    max-width: 96px;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    display: flex;
    align-items: center;
    z-index: 2;
    transition: color .18s, background .18s;
    -webkit-tap-highlight-color: transparent;
}
.detail-nav svg {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45));
    pointer-events: none;
}
.detail-nav-prev {
    left: 0;
    justify-content: flex-start;
    padding-left: 8px;
    border-radius: 10px 0 0 10px;
}
.detail-nav-next {
    right: 0;
    justify-content: flex-end;
    padding-right: 8px;
    border-radius: 0 10px 10px 0;
}
.detail-nav:hover,
.detail-nav:focus-visible {
    color: rgba(255, 255, 255, 0.92);
    outline: none;
}
.detail-nav-prev:hover,
.detail-nav-prev:focus-visible {
    background: linear-gradient(90deg, rgba(0, 0, 0, .22), transparent);
}
.detail-nav-next:hover,
.detail-nav-next:focus-visible {
    background: linear-gradient(270deg, rgba(0, 0, 0, .22), transparent);
}
.detail-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.detail-thumbs .thumb {
    width: 72px;
    height: 56px;
    flex: 0 0 72px;
    min-width: 72px;
    max-width: 72px;
    padding: 0;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.detail-thumbs .thumb.is-on { border-color: var(--teal); }
.detail-thumbs img,
.detail-thumbs video { width: 100%; height: 100%; min-width: 0; min-height: 0; max-width: 100%; max-height: 100%; object-fit: cover; display: block; pointer-events: none; background: #151a17; }
.detail-thumbs .thumb.is-video { position: relative; }
.detail-thumbs .thumb-play {
    position: absolute;
    right: 4px;
    bottom: 3px;
    font-size: 10px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.detail-info h1 { margin: 0; color: var(--navy); }
.detail-info .h2 { font-size: 1rem; font-weight: 500; color: var(--muted); margin: 6px 0 0; }
.prose { margin: 16px 0; overflow-x: auto; max-width: 100%; }
.prose table { max-width: 100%; border-collapse: collapse; }
.prose img { max-width: 100%; height: auto; }

.site-footer {
    background: #17241d;
    color: #d6cdc2;
    padding: 40px 0 0;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 28px;
}
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 15px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 8px; }
.site-footer a { text-decoration: none; color: #efe8dc; }
.site-footer a:hover { color: var(--gold); }
.footer-copy {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 14px 0 20px;
    font-size: 12px;
}
.float-call-stack {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.float-call-num {
    background: #fff;
    color: #128c3c;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 18px rgba(0,0,0,.14);
    border: 1px solid rgba(37, 211, 102, 0.35);
    white-space: nowrap;
}
.float-call-num-s {
    color: #1c2e24;
    border-color: rgba(28, 46, 36, 0.18);
}
.float-call-num:hover {
    background: #f0fff5;
    color: #0d6e2f;
}
.float-call-num-s:hover {
    background: #f4f7f3;
    color: #1c2e24;
}
.float-call {
    position: static;
    right: auto;
    bottom: auto;
    z-index: auto;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.contact-strip-tels {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    justify-content: flex-end;
}
.urun-ara-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.urun-ara-btns .btn-call {
    margin-top: 0;
    font-size: 15px;
    padding: 14px 20px;
}
.urun-iletisim-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 12px;
}
.urun-iletisim-kolon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
    flex: 1 1 200px;
    max-width: 320px;
}
.urun-iletisim-kolon .btn-call {
    margin-top: 0;
    width: 100%;
    font-size: 15px;
    padding: 14px 16px;
    box-sizing: border-box;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
    box-sizing: border-box;
}
.urun-wa-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.btn-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
}
.urun-kod-ara {
    margin: 0 0 16px;
    padding: 14px 16px;
    background: var(--soft, #f5f5f4);
    border: 1px solid var(--line, #e7e5e4);
    border-radius: 10px;
}
.urun-kod-ara label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted, #78716c);
    margin-bottom: 8px;
}
.urun-kod-ara-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.urun-kod-ara-row input[type="search"] {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    padding: 12px 14px;
    border: 1px solid var(--line, #d4ddd2);
    border-radius: 8px;
    background: #fff;
    color: var(--ink, #1c1917);
}
.urun-kod-ara-row input:focus {
    outline: none;
    border-color: var(--navy, #1c2e24);
    box-shadow: 0 0 0 3px rgba(28, 46, 36, 0.12);
}
.urun-kod-ara-row button {
    border: 0;
    border-radius: 8px;
    background: var(--navy, #1c2e24);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 0 20px;
    cursor: pointer;
    white-space: nowrap;
}
.urun-kod-ara-row button:hover {
    background: var(--teal, #2c5f2d);
}
.urun-kod-ara-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--muted, #78716c);
}
.urun-kod-ara-err {
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #9b2c2c;
}
.btn-whatsapp::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 980px) {
    .footer-grid, .detail { grid-template-columns: 1fr 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .prod-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cat-rail {
        position: static;
        max-height: none;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        padding: 8px;
    }
    .cat-btn {
        border: 1px solid var(--line);
        padding: 5px 10px;
        font-size: 11.5px;
    }
    .nav-toggle { display: block; }
    .top-menu-links {
        display: none;
        position: absolute;
        left: 0; right: 0;
        top: 100%;
        background: #fff;
        flex-direction: column;
        padding: 8px 12px 16px;
        border-bottom: 1px solid var(--line);
        z-index: 60;
    }
    .top-menu-links.is-open { display: flex; }
}
@media (max-width: 640px) {
    .footer-grid, .detail { grid-template-columns: 1fr; }
    .prod-grid.cols-4 { grid-template-columns: 1fr; }
    .contact-strip .wrap { justify-content: center; text-align: center; }
    .site-kod-ara-lbl { width: 100%; }
    .site-kod-ara button { width: 100%; }
}
