/* Google Fonts artık includes/header.php <head> içinde <link rel="preconnect"> + <link rel="stylesheet">
   ile yükleniyor — @import burada render-blocking olurdu (CSS'in geri kalanı parse edilene kadar
   font isteği başlamazdı). */

/* isakaustria.at canlı sitesinden çıkarılan tasarım token'ları (renk/font/spacing) */
:root {
    --color-text: #232323;
    --color-text2: #969696;
    --color-black: #202020;
    --color-grey: #868686;
    --color-white: #ffffff;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f8f8;
    --color-topbar-bg: #f7f8fa;
    --color-navy-text: #06142e;
    --color-accent: #17bce3;
    --color-accent-dark: #06bfe2;
    --color-border: #e6e6e6;
    --color-error: #d93333;
    --color-error-bg: #fceeee;
    --color-success: #5a5a5a;
    --color-success-bg: #dff0d8;
    --color-breadcrumb: #999999;
    --font-family: 'Montserrat', sans-serif;
    --container-width: 1170px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0;
    color: var(--color-text);
    background: var(--color-bg);
}

a { color: var(--color-text); text-decoration: none; }
a:hover { color: var(--color-text); }
img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
    font-family: var(--font-family);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 16px;
}

.button {
    display: inline-block;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: center;
    padding: 12px 24px;
    border: 1px solid var(--color-black);
    border-radius: 0;
    background: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.button:hover { background: var(--color-white); color: var(--color-black); }
.button--outline { background: transparent; color: var(--color-black); }
.button--outline:hover { background: var(--color-black); color: var(--color-white); }
.button--block { display: block; width: 100%; }
.button:disabled { opacity: .5; cursor: not-allowed; }

/* --- Top bar --- */
.topbar {
    background: #f7f8fa;
    border-top: 3px solid #3b1f20;
    color: #15213a;
    font-size: 13px;
    padding: 5px 0;
}
.topbar .container {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
}
.topbar__contact { display: flex; gap: 18px; align-items: center; }
.topbar__contact span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__contact .icon { width: 14px; height: 14px; }
.topbar__shipping { justify-self: center; font-weight: 500; }
.topbar__free { justify-self: end; font-weight: 500; }

/* --- Header --- */
.site-header {
    padding: 20px 0;
    background: var(--color-bg);
}
.site-header .container { display: grid; grid-template-columns: 190px minmax(340px, 590px) 1fr; align-items: center; gap: 34px; }
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { height: 50px; width: auto; }
.site-header__search { width: 100%; }
.site-header__search-inner {
    display: flex; align-items: center; background: #f7f8fa;
    border-radius: 18px; padding: 0 0 0 22px; border: none;
    box-shadow: 0 2px 13px rgba(20, 26, 36, .08);
    overflow: hidden;
    transition: box-shadow .15s;
}
.site-header__search-inner:focus-within { box-shadow: 0 2px 18px rgba(23, 188, 227, .25); }
.site-header__search input {
    flex: 1; width: 100%; border: none; background: transparent; font-family: var(--font-family); font-size: 14px;
    padding: 13px 0; color: var(--color-text);
}
.site-header__search input:focus { outline: none; }
.site-header__search-btn {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 50px; height: 50px; border-radius: 14px; border: none; cursor: pointer;
    background: var(--color-accent); color: #fff; transition: background .15s;
}
.site-header__search-btn:hover { background: var(--color-accent-dark); }
.site-header__search-btn .icon { background: #fff; width: 22px; height: 22px; }
.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; font-size: 13px; white-space: nowrap; }
.site-header__actions a { transition: color .15s; }
.site-header__cart-link {
    display: grid; grid-template-rows: auto auto; justify-items: center; gap: 3px;
    min-width: 72px; color: #15213a;
}
.site-header__cart-badge {
    display: inline-flex; align-items: center; justify-content: center; min-width: 70px; height: 18px;
    padding: 0 10px; border-radius: 14px; background: var(--color-accent); color: #fff; font-size: 12px; font-weight: 700;
}
.site-header__account {
    display: flex; align-items: center; gap: 12px; color: #15213a;
}
.site-header__account .icon { width: 34px; height: 34px; }
.site-header__account small,
.site-header__account strong { display: block; line-height: 1.15; }
.site-header__account small { font-size: 14px; font-weight: 400; }
.site-header__account strong { font-size: 14px; font-weight: 700; }
/* --- Icons (inline SVG via mask, currentColor uyumlu) --- */
.icon { display: inline-block; width: 16px; height: 16px; background: currentColor; flex-shrink: 0; }
.icon--user {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><circle cx="12" cy="8" r="4"/><path d="M4 20c0-4 4-6 8-6s8 2 8 6"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><circle cx="12" cy="8" r="4"/><path d="M4 20c0-4 4-6 8-6s8 2 8 6"/></svg>') center/contain no-repeat;
}
.icon--cart {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><circle cx="9" cy="21" r="1"/><circle cx="19" cy="21" r="1"/><path d="M2 3h2l2.4 12.4a2 2 0 0 0 2 1.6h8.7a2 2 0 0 0 2-1.6L21 7H6"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><circle cx="9" cy="21" r="1"/><circle cx="19" cy="21" r="1"/><path d="M2 3h2l2.4 12.4a2 2 0 0 0 2 1.6h8.7a2 2 0 0 0 2-1.6L21 7H6"/></svg>') center/contain no-repeat;
}
.icon--phone {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.24.2 2.45.57 3.57a1 1 0 0 1-.25 1.02l-2.2 2.2Z"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.24.2 2.45.57 3.57a1 1 0 0 1-.25 1.02l-2.2 2.2Z"/></svg>') center/contain no-repeat;
    background: var(--color-navy-text);
}
.icon--envelope {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><rect x="3" y="5" width="18" height="14" rx="2"/><path d="m3 7 9 6 9-6"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><rect x="3" y="5" width="18" height="14" rx="2"/><path d="m3 7 9 6 9-6"/></svg>') center/contain no-repeat;
    background: var(--color-navy-text);
}
.icon--grid {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect width="7" height="7" x="3" y="3" rx="1"/><rect width="7" height="7" x="14" y="3" rx="1"/><rect width="7" height="7" x="14" y="14" rx="1"/><rect width="7" height="7" x="3" y="14" rx="1"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect width="7" height="7" x="3" y="3" rx="1"/><rect width="7" height="7" x="14" y="3" rx="1"/><rect width="7" height="7" x="14" y="14" rx="1"/><rect width="7" height="7" x="3" y="14" rx="1"/></svg>') center/contain no-repeat;
}
.icon--search {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.5"><circle cx="11" cy="11" r="7"/><path d="M21 21l-4.3-4.3"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.5"><circle cx="11" cy="11" r="7"/><path d="M21 21l-4.3-4.3"/></svg>') center/contain no-repeat;
}
.icon--refresh {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6v5h-5"/><path d="M4 18v-5h5"/><path d="M18 9a7 7 0 0 0-11.7-2.6L4 8.7"/><path d="M6 15a7 7 0 0 0 11.7 2.6L20 15.3"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6v5h-5"/><path d="M4 18v-5h5"/><path d="M18 9a7 7 0 0 0-11.7-2.6L4 8.7"/><path d="M6 15a7 7 0 0 0 11.7 2.6L20 15.3"/></svg>') center/contain no-repeat;
}
.icon--photo {
    width: 28px; height: 28px;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.5"><rect x="3" y="5" width="18" height="14" rx="2"/><circle cx="8.5" cy="10.5" r="1.5"/><path d="M21 15l-5-5L5 19"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.5"><rect x="3" y="5" width="18" height="14" rx="2"/><circle cx="8.5" cy="10.5" r="1.5"/><path d="M21 15l-5-5L5 19"/></svg>') center/contain no-repeat;
}
.icon--filter {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 5h20"/><path d="M6 12h12"/><path d="M9 19h6"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 5h20"/><path d="M6 12h12"/><path d="M9 19h6"/></svg>') center/contain no-repeat;
}
.icon--tag {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z"/><circle cx="7.5" cy="7.5" r=".5" fill="black"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z"/><circle cx="7.5" cy="7.5" r=".5" fill="black"/></svg>') center/contain no-repeat;
}
.icon--device {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect width="14" height="20" x="5" y="2" rx="2" ry="2"/><path d="M12 18h.01"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect width="14" height="20" x="5" y="2" rx="2" ry="2"/><path d="M12 18h.01"/></svg>') center/contain no-repeat;
}
.icon--check {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.801 10A10 10 0 1 1 17 3.335"/><path d="m9 11 3 3L22 4"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.801 10A10 10 0 1 1 17 3.335"/><path d="m9 11 3 3L22 4"/></svg>') center/contain no-repeat;
}
.icon--euro {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 10h12"/><path d="M4 14h9"/><path d="M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8c2 0 3.8-.8 5.2-2"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 10h12"/><path d="M4 14h9"/><path d="M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8c2 0 3.8-.8 5.2-2"/></svg>') center/contain no-repeat;
}
/* Nav "Produkte" mega-menü kategori ikonları (Lucide) */
.icon--battery {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 14v-4"/><rect x="2" y="6" width="16" height="12" rx="2"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 14v-4"/><rect x="2" y="6" width="16" height="12" rx="2"/></svg>') center/contain no-repeat;
}
.icon--camera {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z"/><circle cx="12" cy="13" r="3"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z"/><circle cx="12" cy="13" r="3"/></svg>') center/contain no-repeat;
}
.icon--volume {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"/><path d="M16 9a5 5 0 0 1 0 6"/><path d="M19.364 18.364a9 9 0 0 0 0-12.728"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"/><path d="M16 9a5 5 0 0 1 0 6"/><path d="M19.364 18.364a9 9 0 0 0 0-12.728"/></svg>') center/contain no-repeat;
}
.icon--zap {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z"/></svg>') center/contain no-repeat;
}
.icon--shield {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"/></svg>') center/contain no-repeat;
}
.icon--cpu {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20v2"/><path d="M12 2v2"/><path d="M17 20v2"/><path d="M17 2v2"/><path d="M2 12h2"/><path d="M2 17h2"/><path d="M2 7h2"/><path d="M20 12h2"/><path d="M20 17h2"/><path d="M20 7h2"/><path d="M7 20v2"/><path d="M7 2v2"/><rect x="4" y="4" width="16" height="16" rx="2"/><rect x="8" y="8" width="8" height="8" rx="1"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20v2"/><path d="M12 2v2"/><path d="M17 20v2"/><path d="M17 2v2"/><path d="M2 12h2"/><path d="M2 17h2"/><path d="M2 7h2"/><path d="M20 12h2"/><path d="M20 17h2"/><path d="M20 7h2"/><path d="M7 20v2"/><path d="M7 2v2"/><rect x="4" y="4" width="16" height="16" rx="2"/><rect x="8" y="8" width="8" height="8" rx="1"/></svg>') center/contain no-repeat;
}
.icon--car {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2"/><circle cx="7" cy="17" r="2"/><path d="M9 17h6"/><circle cx="17" cy="17" r="2"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2"/><circle cx="7" cy="17" r="2"/><path d="M9 17h6"/><circle cx="17" cy="17" r="2"/></svg>') center/contain no-repeat;
}
.icon--package {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z"/><path d="M12 22V12"/><polyline points="3.29 7 12 12 20.71 7"/><path d="m7.5 4.27 9 5.15"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z"/><path d="M12 22V12"/><polyline points="3.29 7 12 12 20.71 7"/><path d="m7.5 4.27 9 5.15"/></svg>') center/contain no-repeat;
}

/* --- Nav --- */
.site-nav {
    background: #fff; border-top: 1px solid #f1f1f1; border-bottom: 1px solid var(--color-border); position: sticky; top: 0; z-index: 50;
    box-shadow: 0 4px 18px rgba(20, 26, 36, .06);
}
.site-nav__row { display: flex; align-items: center; gap: 24px; min-height: 54px; }

.site-nav__group { position: relative; }
.site-nav__group--brands { display: none; }
.site-nav__trigger {
    display: flex; align-items: center; gap: 10px; padding: 0; background: none; border: none; cursor: pointer;
    font-family: var(--font-family); font-size: 16px; font-weight: 600; text-transform: none; letter-spacing: 0;
    color: var(--color-text);
}
.site-nav__trigger:hover { color: var(--color-accent); }
.site-nav__trigger .icon { width: 18px; height: 18px; background: var(--color-accent); }
.site-nav__chevron {
    display: inline-block; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); transform-origin: center; transition: transform .15s ease;
}
.site-nav__group.is-open .site-nav__chevron { transform: rotate(-135deg); }
.site-nav__divider { width: 1px; height: 30px; background: #dedede; }
.site-nav__links { display: flex; align-items: center; gap: 26px; }

/* Panel: her zaman DOM'da (display:block), açık/kapalı durumu opacity+transform ile yönetilir
   -- display:none/block anlık "pop" yerine yumuşak geçiş, ve mouseleave grace-period'ı ile
   fare paneli geçerken titreme olmasın diye pointer-events de birlikte kontrol edilir. */
.site-nav__panel {
    position: absolute; top: calc(100% + 10px); left: 0; background: #fff; border: 1px solid rgba(16, 24, 40, .09);
    border-radius: 10px; box-shadow: 0 24px 60px rgba(16, 24, 40, .16); padding: 18px; width: min(860px, calc(100vw - 40px)); z-index: 50;
    max-height: min(72vh, 680px); overflow-y: auto;
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px);
    transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
}
.site-nav__panel::-webkit-scrollbar { width: 6px; }
.site-nav__panel::-webkit-scrollbar-track { background: transparent; }
.site-nav__panel::-webkit-scrollbar-thumb { background: #d7dde3; border-radius: 999px; }
.site-nav__panel::before {
    content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.site-nav__panel::after {
    content: ''; position: absolute; left: 18px; right: 18px; top: 0; height: 3px;
    border-radius: 0 0 999px 999px; background: var(--color-accent);
}
.site-nav__group.is-open .site-nav__panel {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
    transition: opacity .15s ease, transform .15s ease, visibility 0s linear 0s;
}
.site-nav__panel-head {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 4px 4px 16px; border-bottom: 1px solid rgba(16, 24, 40, .08);
}
.site-nav__panel-head strong {
    display: block; margin-top: 2px; font-size: 16px; line-height: 1.2; letter-spacing: 0; color: #202020;
}
.site-nav__panel-eyebrow {
    display: block; color: var(--color-accent); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}
.site-nav__panel-all {
    display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0 12px;
    border-radius: 999px; background: #f5f8fb; color: #202020; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.site-nav__panel-all:hover { background: var(--color-accent); color: #fff; }
.site-nav__panel-featured {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 14px 0;
}
.site-nav__panel-featured a {
    display: flex; flex-direction: column; justify-content: center; min-height: 76px; padding: 14px;
    border-radius: 8px; background: linear-gradient(180deg, #f8fafc 0%, #f1f5f8 100%);
    border: 1px solid rgba(16, 24, 40, .07); transition: border-color .15s, box-shadow .15s, transform .15s;
}
.site-nav__panel-featured a:hover {
    border-color: rgba(23, 188, 227, .35); box-shadow: 0 12px 26px rgba(16, 24, 40, .08); transform: translateY(-1px);
}
.site-nav__panel-featured span { font-size: 15px; font-weight: 800; color: #202020; text-transform: uppercase; letter-spacing: .02em; }
.site-nav__panel-featured small { margin-top: 3px; font-size: 11px; font-weight: 700; color: #7d8791; }
.site-nav__panel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding-top: 2px; }
.site-nav__panel-grid a {
    display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px;
    min-height: 40px; padding: 8px 10px; color: var(--color-text); font-size: 13px; font-weight: 650;
    text-transform: none; letter-spacing: 0; border-radius: 8px; background: #fff;
    transition: background .15s, color .15s, box-shadow .15s, transform .15s;
}
.site-nav__cat-icon {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 26px; height: 26px; border-radius: 7px; background: rgba(23, 188, 227, .09);
    transition: background .15s;
}
.site-nav__cat-icon .icon { width: 13px; height: 13px; color: #6d7580; transition: color .15s; }
.site-nav__panel-grid a:hover .site-nav__cat-icon { background: rgba(23, 188, 227, .16); }
.site-nav__panel-grid a:hover .site-nav__cat-icon .icon { color: var(--color-accent); }
.site-nav__cat-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.site-nav__panel-grid a:hover {
    background: #f6fbfd; color: #0c2230; box-shadow: inset 0 0 0 1px rgba(23, 188, 227, .22); transform: translateX(2px);
}
.site-nav__count {
    display: inline-flex; align-items: center; justify-content: center; min-width: 30px; min-height: 20px; padding: 0 7px;
    border-radius: 999px; background: #f0f3f6; color: #7b8490; font-size: 10px; font-weight: 800;
}
.site-nav__panel-grid a:hover .site-nav__count { background: #fff; color: var(--color-accent); }

.site-nav__quick {
    display: inline-block; padding: 16px 0; color: var(--color-text); font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .02em; position: relative;
}
.site-nav__quick::after {
    content: ''; position: absolute; left: 4px; right: 4px; bottom: 8px; height: 2px;
    background: var(--color-accent); transform: scaleX(0); transition: transform .15s;
}
.site-nav__quick:hover { color: var(--color-accent); }
.site-nav__quick:hover::after { transform: scaleX(1); }
/* --- Breadcrumb --- */
.breadcrumb { padding: 14px 0; font-size: 12px; color: var(--color-breadcrumb); }
.breadcrumb a { color: var(--color-breadcrumb); }
.breadcrumb a:hover { color: var(--color-text); }

/* --- Hero banner (premium stage) --- */
.hero-stage {
    position: relative; padding-bottom: 46px; background: #fff;
}
.hero-banner {
    position: relative; width: 100%; background: var(--color-bg-alt); overflow: hidden;
    border-radius: 0 0 16px 16px;
}
.hero-banner__img {
    width: 100%; max-width: 100%; height: clamp(430px, 36.45vw, 700px);
    object-fit: cover; object-position: center 48%; display: block;
}
.hero-brand-icons {
    position: absolute; left: 50%; top: 51%; transform: translate(-50%, -50%);
    display: flex; align-items: center; justify-content: center; gap: clamp(8px, .72vw, 13px);
    z-index: 3; pointer-events: auto;
}
.hero-brand-icons__item {
    display: flex; align-items: center; justify-content: center;
    width: clamp(66px, 4.9vw, 94px); height: clamp(66px, 4.9vw, 94px);
    border-radius: 18px; background: #000; color: #fff; overflow: hidden;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .14);
    transition: transform .15s ease, box-shadow .15s ease;
}
.hero-brand-icons__item:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 34px rgba(0, 0, 0, .18); }
.hero-brand-icons__logo {
    display: block; width: 100%; height: 100%; object-fit: contain; filter: invert(1);
    pointer-events: none;
}
.hero-brand-icons__logo--apple { max-width: 54%; max-height: 54%; }
.hero-brand-icons__logo--samsung { max-width: 78%; max-height: 78%; }
.hero-brand-icons__logo--xiaomi { max-width: 78%; max-height: 78%; filter: none; }
.hero-brand-icons__logo--huawei { max-width: 72%; max-height: 72%; }

/* --- Model finder (Marke/Modell/Produkt bulucu widget'ı) --- */
.model-finder-section {
    position: absolute; left: 50%; bottom: 74px; width: min(1460px, calc(100% - 360px));
    transform: translateX(-50%); background: transparent; padding: 0; border-bottom: 0; z-index: 5;
}
.model-finder {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) 230px; align-items: stretch; gap: 10px;
    background: transparent; box-shadow: none; flex-wrap: nowrap;
}
.model-finder__field {
    min-width: 0; padding: 0; border-right: none; position: relative;
}
.model-finder__field:last-of-type { border-right: none; }
.model-finder__field::after {
    content: ''; position: absolute; right: 24px; top: 50%; width: 10px; height: 10px;
    border-right: 2px solid #202020; border-bottom: 2px solid #202020; transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}
.model-finder__field select {
    width: 100%; height: 72px; border: 0; border-radius: 5px; font-family: var(--font-family); font-size: 15px; color: var(--color-text);
    background: #fff; padding: 0 56px 0 34px; appearance: none;
    box-shadow: 0 8px 22px rgba(20, 26, 36, .12);
}
.model-finder__field select:disabled { color: #b7b7b7; background: rgba(255, 255, 255, .78); }
.model-finder__field select:focus { outline: none; box-shadow: 0 0 0 3px rgba(23, 188, 227, .45), 0 8px 22px rgba(20, 26, 36, .12); }
.model-finder__submit {
    display: flex; align-items: center; justify-content: center; gap: 34px; border: none; cursor: pointer;
    background: #24b9d8; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0;
    font-size: 15px; padding: 0 32px; transition: background .15s; flex-shrink: 0; border-radius: 5px;
    box-shadow: 0 8px 22px rgba(20, 26, 36, .12);
}
.model-finder__submit:hover { background: var(--color-accent-dark); }
.model-finder__submit .icon { background: #fff; width: 22px; height: 22px; }

/* --- Category showcase (Parts/Accessories/Tools görselli kartlar) --- */
.home-categories-section { padding: 34px 0 24px; background: #fff; }
.home-categories-section .container,
.own-brand-banner .container,
.brand-showcase-section .container,
.wholesaler-section .container { max-width: 1780px; }

/* Shop sayfasına özel, sitenin geri kalanından bağımsız genişletilmiş kapsayıcı — ekranı daha iyi kullanır */
.collection-container { max-width: 1620px; padding: 0 16px; }
.category-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
.category-showcase__card {
    display: grid; grid-template-rows: auto 1fr; padding: 0; background: #fff; border-radius: 10px;
    overflow: hidden; border: 1px solid rgba(16, 24, 40, .075);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.category-showcase__card:hover {
    transform: translateY(-2px); border-color: rgba(23, 188, 227, .22);
    box-shadow: 0 16px 34px rgba(16, 24, 40, .07);
}
.category-showcase__image,
.category-showcase__body {
    border: 0; border-radius: 0; background: #fff; box-shadow: none;
}
.category-showcase__image {
    aspect-ratio: 2.82 / 1; display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 10px; margin-bottom: 0; background: #fbfbfc;
}
.category-showcase__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.category-showcase__body {
    min-height: 204px; padding: 24px 22px 22px;
}
.category-showcase__title {
    font-size: 18px; line-height: 1.25; padding: 0; margin: 0 0 14px;
    text-transform: none; letter-spacing: 0; color: #000;
}
.category-showcase__links { list-style: none; margin: 0; padding: 0; }
.category-showcase__links li { margin-bottom: 3px; line-height: 1.35; }
.category-showcase__links li:last-child { margin-bottom: 0; }
.category-showcase__links a { font-size: 15px; color: #222; }
.category-showcase__links a:hover { color: #0056b3; text-decoration: underline; }

.own-brand-banner { padding: 38px 0 34px; background: #fff; }
.own-brand-banner__frame {
    position: relative; border-radius: 12px; overflow: hidden;
    box-shadow: 0 10px 26px rgba(16, 24, 40, .05);
}
.own-brand-banner img {
    width: 100%; max-height: 410px; border-radius: 12px; object-fit: cover; object-position: center; aspect-ratio: 4.25 / 1;
}
.own-brand-banner__actions {
    position: absolute; left: clamp(34px, 5.2vw, 84px); bottom: clamp(30px, 4.4vw, 72px);
    display: flex; align-items: center; gap: 12px; z-index: 2;
}
.own-brand-banner__actions a {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 118px; height: 48px; padding: 0 28px; border-radius: 999px;
    background: #000; color: #fff; font-size: 14px; font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .13); transition: transform .15s, background .15s;
}
.own-brand-banner__actions a:hover { transform: translateY(-1px); background: #17bce3; color: #fff; }

/* --- Section --- */
.section { padding: 40px 0; }
.section--alt { background: var(--color-bg-alt); }
.section__title { text-align: center; font-size: 20px; margin-bottom: 30px; }

/* --- Brand marquee (homepage "Alle Marken" kayan şerit) --- */
.brand-marquee {
    position: relative; width: 100%; overflow: hidden;
    padding: 6px 0 34px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brand-marquee__track {
    display: flex; align-items: center; gap: 64px; width: max-content;
    animation: brandMarqueeScroll 36s linear infinite;
}
.brand-marquee__track:hover { animation-play-state: paused; }
@keyframes brandMarqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.brand-marquee__item {
    display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
    height: 50px; width: 128px;
}
/* Sabit bir kutu (width+height, object-fit:contain) — kare ikon logolar (Apple)
   ile geniş wordmark logolar (Samsung/Google) aynı görsel ayak izinde, eşit boyutta görünsün. */
.brand-marquee__logo {
    width: 128px; height: 46px; object-fit: contain;
    filter: grayscale(1) opacity(.5); transition: filter .2s;
}
.brand-marquee__item:hover .brand-marquee__logo { filter: none; }
.brand-marquee__badge {
    display: inline-flex; align-items: center; justify-content: center; height: 100%; width: 100%; padding: 0 14px;
    border: 1px solid var(--color-border); border-radius: 4px; color: var(--color-text2);
    font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .06em;
    transition: color .2s, border-color .2s;
}
.brand-marquee__item:hover .brand-marquee__badge { color: var(--color-accent); border-color: var(--color-accent); }
@media (prefers-reduced-motion: reduce) {
    .brand-marquee__track { animation: none; }
}

/* --- Brand showcase (gerçek marka görselli kartlar) --- */
.brand-showcase-section { padding: 34px 0 32px; background: #f8f8f8; }
.brand-showcase-section .section__title {
    text-align: left; margin-bottom: 24px; text-transform: none; letter-spacing: 0; font-size: 26px;
}
.brand-showcase { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.brand-showcase__card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid #e9eaee; border-radius: 8px;
    min-height: 262px; padding: 0; text-align: left; transition: border-color .18s, box-shadow .18s, transform .18s;
}
.brand-showcase__card:hover { transform: translateY(-3px); border-color: #dceff5; box-shadow: 0 12px 26px rgba(16, 24, 40, .07); }
.brand-showcase__image {
    display: flex; align-items: center; justify-content: center; height: 106px; padding: 22px 20px 10px;
}
.brand-showcase__image img { max-height: 48px; max-width: 190px; width: auto; margin: 0 auto; }
.brand-showcase__body {
    margin: auto 18px 18px; padding: 22px 18px 20px; border-radius: 8px; background: #fff;
    box-shadow: 0 1px 0 rgba(16, 24, 40, .04);
}
.brand-showcase__desc {
    font-size: 17px; line-height: 1.3; font-weight: 500; color: var(--color-text);
    margin: 0 0 13px; padding: 0; text-transform: none; letter-spacing: 0;
}
.brand-showcase__link {
    display: block; padding: 0; font-size: 14px; color: var(--color-text);
    text-decoration: none; line-height: 1.75;
}
.brand-showcase__link:hover { color: var(--color-accent); }

/* --- Wholesaler / reviews --- */
.wholesaler-section { padding: 34px 0 46px; background: #fff; }
.wholesaler-section .section__title {
    text-align: left; text-transform: none; letter-spacing: 0; font-size: 26px; margin-bottom: 28px;
}
.wholesaler { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: 24px; align-items: stretch; }
.wholesaler__media {
    display: block; min-height: 380px; border-radius: 10px; overflow: hidden; background: #f5f5f5;
}
.wholesaler__media img { width: 100%; height: 100%; object-fit: cover; }

.wholesaler__reviews {
    position: relative; display: flex; flex-direction: column; min-height: 380px; min-width: 0;
    border-radius: 10px; background: #fff; border: 1px solid rgba(16, 24, 40, .08);
    box-shadow: -5px 4px 5px rgba(0, 0, 0, .1);
    padding: 34px 42px 28px;
}
.wholesaler__rating { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.wholesaler__google { font-size: 20px; font-weight: 700; color: #4285f4; }
.wholesaler__stars { color: #ffcc00; font-size: 15px; letter-spacing: 1px; }
.wholesaler__score { font-size: 13px; font-weight: 700; color: var(--color-text2); }

/* Gerçek klip sınırı burada — .wholesaler__reviews'in kendi padding'i (görsel nefes alanı için)
   overflow:hidden'ın SINIRINDA olduğundan, taşan içerik padding alanı içinde görünür kalabiliyordu
   (overflow, padding kutusunun DIŞINDA kırpar, İÇİNDE değil). Ayrı, padding'siz bir viewport
   kırpma sınırını tam görsel kutu kenarına taşıyor. */
.wholesaler__viewport { overflow: hidden; width: 100%; min-width: 0; flex: 1; display: flex; align-items: center; }
.wholesaler__track { display: flex; width: 100%; min-width: 0; transition: transform .25s ease; }
.wholesaler__review { flex: 0 0 100%; min-width: 0; text-align: left; }
.wholesaler__quote-mark {
    display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 52px; line-height: 1;
    color: var(--color-accent); opacity: .3; margin-bottom: 2px;
}
.wholesaler__review p { margin: 0; font-size: 18px; line-height: 1.42; color: #202020; }

.wholesaler__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.wholesaler__arrow {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 38px; height: 38px; border-radius: 50%; border: 0; background: #fff;
    box-shadow: 0 4px 14px rgba(16, 24, 40, .14); color: #202020; font-size: 19px; line-height: 1;
    cursor: pointer; transition: background .15s, color .15s;
}
.wholesaler__arrow:hover { background: var(--color-accent); color: #fff; }
.wholesaler__dots { display: flex; align-items: center; gap: 8px; }
.wholesaler__dot {
    width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: rgba(16, 24, 40, .16);
    cursor: pointer; transition: width .2s ease, background .2s ease;
}
.wholesaler__dot.is-active { background: var(--color-accent); width: 22px; border-radius: 4px; }

/* --- Product grid --- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.collection-products { min-width: 0; }
.collection-layout .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card {
    display: flex; flex-direction: column; text-align: center; padding: 0 0 18px; position: relative;
    background: #fff; border: 1px solid rgba(16, 24, 40, .075); border-radius: 10px; overflow: hidden;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .055);
    transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
}
.product-card:hover {
    border-color: rgba(23, 188, 227, .24);
    box-shadow: 0 18px 42px rgba(16, 24, 40, .095);
    transform: translateY(-2px);
}
.product-card__image {
    position: relative; aspect-ratio: 1 / 1; background: linear-gradient(180deg, #f8fafc 0%, #f2f5f8 100%);
    display: flex; align-items: center; justify-content: center; margin-bottom: 14px; overflow: hidden;
}
.product-card__image img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 18px;
    transition: opacity .65s ease, transform .75s ease;
}
.product-card__img--primary { opacity: 1; transform: scale(1); }
.product-card__img--secondary { opacity: 0; transform: scale(1.015); }
.product-card:hover .product-card__img--primary { opacity: 0; transform: scale(1.055); }
.product-card:hover .product-card__img--secondary { opacity: 1; transform: scale(1.055); }
.product-card:hover .product-card__image img:only-child { opacity: 1; transform: scale(1.055); }
.product-card__placeholder {
    display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;
    color: var(--color-border); background: linear-gradient(135deg, #fbfbfd 0%, var(--color-bg-alt) 100%);
}
.product-card__placeholder .icon--photo { width: 34px; height: 34px; }
.product-detail__gallery .product-card__placeholder .icon--photo { width: 64px; height: 64px; }
.product-card__meta {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 0 16px; margin-bottom: 8px; min-height: 23px;
}
.product-card__vendor {
    min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    font-size: 10px; text-transform: uppercase; letter-spacing: .055em; color: #7b8490; text-align: left;
}
.product-card__stock {
    flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
    min-height: 22px; padding: 0 8px; border-radius: 999px; font-size: 10px; font-weight: 800;
    letter-spacing: .02em; line-height: 1;
}
.product-card__stock--in { background: #eaf8f2; color: #21714f; }
.product-card__stock--out { background: #f8eeee; color: #9a3535; }
.product-card__title { font-size: 14px; font-weight: 700; letter-spacing: 0; padding: 0 16px; display: block; margin-bottom: 10px; text-transform: none; line-height: 1.35; }
.collection-layout .product-card__title { min-height: 38px; }
.product-card__price { font-size: 15px; font-weight: 700; margin-bottom: 14px; min-height: 22px; }
.product-card__price a { color: var(--color-text2); font-weight: 400; font-size: 12px; }
.product-card__login-note {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    min-height: 28px; padding: 0 12px; border-radius: 999px;
    background: #f5f7f9; border: 1px solid rgba(16, 24, 40, .08);
    color: #68717d !important; font-size: 11px !important; font-weight: 700 !important; font-style: normal !important;
}
.product-card__login-note::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent);
}
.product-card__login-note:hover { color: #202020 !important; border-color: rgba(23, 188, 227, .35); }
.product-card .button {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 44px; width: calc(100% - 32px); margin: auto 16px 0; padding: 0 18px;
    border-radius: 8px; border-color: #202020; background: #202020; color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: .045em; line-height: 1; white-space: nowrap;
    box-shadow: 0 10px 20px rgba(32, 32, 32, .12);
}
.product-card .button::after { content: '›'; font-size: 15px; line-height: 1; transform: translateY(-1px); }
.product-card .button:hover {
    background: var(--color-accent); border-color: var(--color-accent); color: #fff;
}

/* --- Filters / sort bar --- */
.collection-toolbar {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
    padding: 14px 16px; margin-bottom: 18px; background: #fff; border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 10px; box-shadow: 0 10px 26px rgba(16, 24, 40, .05);
}
.collection-toolbar__meta { display: flex; flex-direction: column; gap: 3px; }
.collection-toolbar__eyebrow {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--color-accent);
}
.collection-toolbar__count { font-size: 13px; font-weight: 600; color: #4b5563; }
.collection-toolbar__sort { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.collection-toolbar__sort label {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .055em; color: #717b86;
}
.collection-toolbar select {
    min-width: 178px; height: 40px; padding: 0 36px 0 12px; border: 1px solid rgba(16, 24, 40, .1);
    border-radius: 8px; background: #f7f9fb; font-family: var(--font-family); font-size: 13px; font-weight: 600; color: #20242a;
    appearance: none; -webkit-appearance: none;
}
.collection-toolbar select:focus { outline: none; border-color: rgba(23, 188, 227, .65); box-shadow: 0 0 0 3px rgba(23, 188, 227, .13); }
.collection-empty {
    margin: 0; padding: 28px; border: 1px dashed rgba(16, 24, 40, .12); border-radius: 10px;
    background: #fff; color: #68717d; font-size: 14px; text-align: center;
}
.collection-layout { display: grid; grid-template-columns: 360px 1fr; gap: 30px; align-items: start; }
.collection-layout.is-loading { opacity: .78; pointer-events: none; transition: opacity .14s ease; }
.collection-layout.is-updated { animation: collectionSoftRefresh .18s ease-out both; }
@keyframes collectionSoftRefresh {
    from { opacity: .82; }
    to { opacity: 1; }
}

/* --- Active filter chips --- */
.active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-chip {
    display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--color-border);
    border-radius: 20px; padding: 6px 12px; font-size: 12px; color: var(--color-text); transition: border-color .15s, color .15s;
}
.filter-chip:hover { border-color: var(--color-accent); color: var(--color-accent); }
.filter-chip__x { font-size: 14px; color: var(--color-text2); }
.active-filters__clear { font-size: 12px; color: var(--color-accent); text-decoration: underline; margin-left: 4px; }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination__link {
    display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px;
    background: #fff; border: 1px solid var(--color-border); font-size: 13px; color: var(--color-text); transition: all .15s;
}
.pagination__link:hover { border-color: var(--color-accent); color: var(--color-accent); }
.pagination__link.is-active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

/* --- Filter panel (premium) ---
   .filter-panel'in kendi doğal yüksekliği (5 açık akordeon + fiyat aralığı) viewport'tan kolayca
   uzun olabiliyor; max-height + overflow-y olmadan sticky panel viewport'a sığmayan alt kısmı
   (özellikle Preis/Anwenden) sadece sayfanın en altına inildiğinde "unstuck" olup görünür hale
   gelirdi. top, sticky .site-nav'ın (top:0, ~58px yüksekliğinde) altına oturacak şekilde ayarlı. */
.filter-panel {
    position: sticky; top: 68px; align-self: start; max-height: calc(100vh - 88px); overflow-y: auto;
    background: #fff; border: 1px solid rgba(16, 24, 40, .06); border-radius: 10px;
    box-shadow: -5px 4px 5px rgba(0, 0, 0, .1); padding: 20px;
    scrollbar-width: thin; scrollbar-color: rgba(16, 24, 40, .2) transparent;
}
.filter-panel::-webkit-scrollbar { width: 7px; }
.filter-panel::-webkit-scrollbar-thumb { background: rgba(16, 24, 40, .18); border-radius: 10px; }
.filter-panel::-webkit-scrollbar-track { background: transparent; }
.filter-panel__header {
    display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .04em; padding: 0 2px 14px; margin-bottom: 2px;
    border-bottom: 1px solid rgba(16, 24, 40, .08);
}
.filter-panel__title { display: inline-flex; align-items: center; gap: 10px; }
.filter-icon-chip {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 26px; height: 26px; border-radius: 8px; background: rgba(23, 188, 227, .12);
}
.filter-panel__title .filter-icon-chip .icon { width: 14px; height: 14px; color: var(--color-accent-dark); }
.filter-panel__badge {
    display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px;
    border-radius: 9px; background: var(--color-accent); color: #fff; font-size: 11px; font-weight: 700;
}
.filter-panel__header a {
    font-size: 11px; text-transform: none; letter-spacing: 0; color: var(--color-accent);
    text-decoration: none; font-weight: 700;
}

.filter-block { border-bottom: 1px solid rgba(16, 24, 40, .08); padding: 18px 0; }
.filter-block:last-of-type { border-bottom: none; }
.filter-block summary {
    font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .035em; cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 0 2px;
}
.filter-block summary::-webkit-details-marker { display: none; }
.filter-block__label { display: inline-flex; align-items: center; gap: 10px; }
.filter-block__label .filter-icon-chip {
    width: 24px; height: 24px; border-radius: 7px; background: rgba(16, 24, 40, .045); transition: background .15s;
}
.filter-block__label .filter-icon-chip .icon { width: 13px; height: 13px; color: #6d7580; transition: color .15s; }
.filter-block[open] .filter-block__label .filter-icon-chip { background: rgba(23, 188, 227, .13); }
.filter-block[open] .filter-block__label .filter-icon-chip .icon { color: var(--color-accent); }
/* Faz 12'deki nav dropdown chevron'uyla aynı teknik: tek bir köşe kenarlığı rotate edilir,
   +/- karakter yerine — böylece açık/kapalı geçişi tek bir `transform` özelliğiyle pürüzsüz döner. */
.filter-block summary::after {
    content: ''; display: inline-block; flex-shrink: 0; width: 7px; height: 7px;
    border-right: 2px solid #9198a0; border-bottom: 2px solid #9198a0;
    transform: rotate(45deg); transform-origin: center; transition: transform .15s ease, border-color .15s ease;
}
.filter-block[open] summary::after { border-color: var(--color-accent); transform: rotate(-135deg); }
.filter-block__body { padding-top: 12px; }
.filter-panel .filter-block:nth-of-type(1) .filter-block__body,
.filter-panel .filter-block:nth-of-type(2) .filter-block__body {
    overflow: visible;
}
.filter-search {
    display: flex; align-items: center; gap: 8px; min-height: 38px; margin: 0 0 8px; padding: 0 10px;
    background: #f7f9fb; border: 1px solid rgba(16, 24, 40, .08); border-radius: 8px;
}
.filter-search .icon { width: 14px; height: 14px; background: #8b949e; }
.filter-search input {
    width: 100%; min-width: 0; border: 0; outline: 0; background: transparent;
    font-family: var(--font-family); font-size: 12px; color: var(--color-text);
}
.filter-search input::placeholder { color: #9aa1a9; }
.filter-options { max-height: 320px; overflow-y: auto; padding-right: 6px; }
.filter-options::-webkit-scrollbar { width: 5px; }
.filter-options::-webkit-scrollbar-track { background: transparent; }
.filter-options::-webkit-scrollbar-thumb { background: #d6dce2; border-radius: 999px; }
.filter-option {
    display: grid; grid-template-columns: 22px minmax(0, 1fr) auto; align-items: center; gap: 10px;
    min-height: 44px; padding: 9px 10px; border-radius: 8px; color: #252a31;
    font-size: 13px; line-height: 1.28; transition: background .15s, box-shadow .15s, color .15s, transform .15s;
}
.filter-option + .filter-option { margin-top: 2px; }
.filter-option:hover {
    background: #f6fafc; color: #111827; box-shadow: inset 0 0 0 1px rgba(16, 24, 40, .06);
}
.filter-option.is-active {
    background: rgba(23, 188, 227, .12); color: #0c2230; font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(23, 188, 227, .34);
}
.filter-option.is-active .filter-count { background: #fff; color: #0caaca; }
.filter-option--all { margin-bottom: 6px; }
.filter-option--all .filter-count { min-width: 42px; }
.filter-option__mark {
    width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid #a3abb4;
    display: grid; place-items: center; background: #fff;
}
.filter-option__mark::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent);
    transform: scale(0); transition: transform .12s;
}
.filter-option.is-active .filter-option__mark {
    border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(23, 188, 227, .16);
}
.filter-option.is-active .filter-option__mark::before { transform: scale(1); }
.filter-option__label { overflow-wrap: anywhere; }
.filter-empty {
    display: none; margin: 8px 0 2px; padding: 10px; border-radius: 8px; background: #f7f9fb;
    color: var(--color-text2); font-size: 12px; text-align: center;
}
.filter-block label {
    display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; align-items: center; gap: 10px;
    min-height: 36px; padding: 6px 8px; border-radius: 8px; font-size: 13px; line-height: 1.32;
    margin-bottom: 3px; cursor: pointer; transition: background .15s, color .15s, box-shadow .15s;
}
.filter-block .filter-search {
    display: flex; grid-template-columns: none; gap: 8px; min-height: 38px; margin: 0 0 8px;
    padding: 0 10px; cursor: text; line-height: 1;
}
.filter-block .filter-search span:first-of-type { flex: 0 0 auto; }
.filter-block .filter-search:hover { background: #f7f9fb; }
.filter-block label:hover { background: #f7fafc; }
.filter-block label:has(input:checked) {
    background: rgba(23, 188, 227, .1); color: #111827; box-shadow: inset 0 0 0 1px rgba(23, 188, 227, .26);
}
.filter-block input[type="checkbox"] {
    width: 18px; height: 18px; margin: 0; appearance: none; -webkit-appearance: none;
    border: 1.5px solid #9aa1a9; border-radius: 5px; background: #fff;
    display: grid; place-items: center; transition: border-color .15s, background .15s, box-shadow .15s;
}
.filter-block input[type="checkbox"]::before {
    content: ''; width: 9px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0); margin-top: -1px; transition: transform .12s;
}
.filter-block input[type="checkbox"]:checked {
    background: var(--color-accent); border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(23, 188, 227, .16);
}
.filter-block input[type="checkbox"]:checked::before { transform: rotate(-45deg) scale(1); }
.filter-block label span:first-of-type { flex: 1; }
.filter-block__static { color: var(--color-text2); cursor: default; grid-template-columns: minmax(0, 1fr) auto; }
.filter-block__static:hover { background: transparent; }
.filter-count {
    min-width: 34px; justify-self: end; text-align: center; color: #7f8790; background: #f3f5f7;
    border-radius: 999px; padding: 2px 7px; font-size: 11px; font-weight: 700;
}

/* --- Price range slider --- */
.price-range__slider { position: relative; height: 20px; margin-bottom: 10px; }
.price-range__slider input[type="range"] {
    position: absolute; top: 8px; left: 0; width: 100%; margin: 0; -webkit-appearance: none; appearance: none;
    background: transparent; pointer-events: none;
}
.price-range__slider input[type="range"]::-webkit-slider-runnable-track { height: 4px; background: var(--color-border); border-radius: 2px; }
.price-range__slider input[type="range"]::-moz-range-track { height: 4px; background: var(--color-border); border-radius: 2px; }
.price-range__slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 50%;
    background: var(--color-accent); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--color-accent); cursor: pointer; margin-top: -6px;
}
.price-range__slider input[type="range"]::-moz-range-thumb {
    pointer-events: auto; width: 16px; height: 16px; border-radius: 50%;
    background: var(--color-accent); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--color-accent); cursor: pointer;
}
.price-range__inputs { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.price-range__field {
    display: flex; align-items: center; gap: 4px; border: 1px solid var(--color-border); padding: 6px 8px; flex: 1;
    transition: border-color .15s, box-shadow .15s;
}
.price-range__field:focus-within { border-color: rgba(23, 188, 227, .65); box-shadow: 0 0 0 3px rgba(23, 188, 227, .13); }
.price-range__field span { font-size: 12px; color: var(--color-text2); }
.price-range__field input { border: none; width: 100%; font-size: 13px; font-family: var(--font-family); }
.price-range__field input:focus { outline: none; }
.price-range__sep { font-size: 12px; color: var(--color-text2); }
.button--small { padding: 8px 16px; font-size: 12px; width: 100%; }

/* --- Product detail --- */
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr); gap: 44px; padding: 40px 0 56px; align-items: start; }
.product-detail__media { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.product-detail__gallery {
    aspect-ratio: 1/1; background: #fff;
    display: flex; align-items: center; justify-content: center; color: var(--color-grey);
    border: 1px solid #eceff3; border-radius: 10px;
    box-shadow: 0 18px 48px rgba(20, 26, 36, .08); overflow: hidden;
}
.product-detail__gallery img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.product-detail__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-detail__thumb {
    width: 68px; height: 68px; padding: 0; border: 1px solid var(--color-border); border-radius: 8px; background: #fff;
    cursor: pointer; overflow: hidden; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.product-detail__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-detail__thumb:hover { border-color: var(--color-accent); transform: translateY(-1px); }
.product-detail__thumb.is-active { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(23, 188, 227, .12); }
.product-detail__summary { min-width: 0; }
.product-detail__vendor { color: var(--color-text2); text-transform: uppercase; font-size: 12px; letter-spacing: .05em; margin-bottom: 6px; }
.product-detail__title { font-size: clamp(22px, 3vw, 30px); line-height: 1.25; margin-bottom: 14px; letter-spacing: .02em; overflow-wrap: anywhere; }
.product-detail__intro { color: #555; margin: 0 0 20px; line-height: 1.75; }
.product-purchase-card {
    background: #fff;
    border: 1px solid #e7ebef;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 18px 44px rgba(20, 26, 36, .08);
}
.product-purchase-card__top {
    display: grid;
    grid-template-columns: minmax(140px, auto) 1fr;
    gap: 20px;
    align-items: start;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eef1f4;
}
.product-purchase-card__label {
    display: block;
    margin-bottom: 5px;
    color: #8b96a3;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.product-detail__price { font-size: 28px; line-height: 1.15; font-weight: 800; margin: 0; color: #111; }
.product-detail__sku { display: grid; gap: 6px; color: var(--color-text2); font-size: 12px; justify-items: end; text-align: right; }
.product-detail__sku strong { color: #343a40; font-size: 12px; }
.product-detail__sku .badge { justify-self: end; }
.product-buy-form { display: grid; gap: 16px; }
.variant-picker { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; }
.variant-picker .form-row { margin-bottom: 0; min-width: 0; }
.variant-picker select {
    width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid var(--color-border); border-radius: 10px; font-family: var(--font-family); font-size: 13px; background: #fff;
}
.variant-picker select:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(23, 188, 227, .12); }
.qty-row { display: grid; grid-template-columns: 142px minmax(0, 1fr); gap: 12px; margin: 0; align-items: stretch; }
.qty-control {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    min-height: 52px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.qty-control button {
    border: 0;
    background: #f7f8fa;
    font-size: 20px;
    font-weight: 700;
    color: #232323;
    cursor: pointer;
}
.qty-control button:hover { background: #eef9fc; color: var(--color-accent); }
.qty-control input {
    width: 100%;
    border: 0;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    text-align: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
}
.qty-control input:focus { outline: none; box-shadow: inset 0 0 0 2px rgba(23, 188, 227, .5); }
.product-add-button {
    min-height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product-help-strip {
    display: grid;
    gap: 7px;
    margin-top: 16px;
    color: #666;
    font-size: 12px;
}
.product-help-strip span {
    position: relative;
    padding-left: 18px;
}
.product-help-strip span::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-accent);
}
.login-gate { background: #f7f8fa; border: 1px solid #e4e8ee; border-radius: 12px; padding: 18px; text-align: center; margin: 0; }
.login-gate a { font-weight: 700; text-decoration: underline; }

/* --- Cart --- */
.cart-page { padding: 34px 0 46px; }
.cart-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 18px;
}
.cart-head h1 { margin: 0; font-size: 34px; line-height: 1.1; letter-spacing: 0; }
.cart-head p { color: var(--color-text2); line-height: 1.7; margin: 12px 0 0; max-width: 610px; }
.cart-layout {
    display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start;
}
.cart-card,
.cart-summary,
.cart-empty {
    background: #fff; border: 1px solid var(--color-border); border-radius: 12px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}
.cart-card { overflow: hidden; }
.cart-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) 112px 142px 118px;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eef1f4;
}
.cart-item:last-child { border-bottom: 0; }
.cart-item__image {
    display: flex; align-items: center; justify-content: center;
    width: 86px; height: 86px; border-radius: 10px; background: #f7f9fb; overflow: hidden;
    border: 1px solid rgba(16, 24, 40, .06);
}
.cart-item__image img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-item__body { min-width: 0; }
.cart-item__title {
    display: block; color: var(--color-text); font-weight: 800; line-height: 1.35; overflow-wrap: anywhere;
}
.cart-item__variant,
.cart-item__stock {
    display: block; margin-top: 5px; color: var(--color-text2); font-size: 12px;
}
.cart-item__stock { color: #21714f; font-weight: 700; }
.cart-item__stock--out { color: var(--color-error); }
.cart-item--unavailable { opacity: .6; }
.cart-item--unavailable .cart-item__image { filter: grayscale(1); }
.cart-item__price,
.cart-item__qty,
.cart-item__subtotal {
    display: grid; gap: 6px; justify-items: start;
}
.cart-item__subtotal { justify-items: end; text-align: right; }
.cart-item small,
.cart-summary p {
    color: var(--color-text2); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
}
.cart-item strong { font-size: 14px; }
.qty-control--small {
    grid-template-columns: 34px 52px 34px;
    min-height: 38px;
    border-radius: 9px;
}
.qty-control--small button { font-size: 16px; }
.qty-control--small input { font-size: 13px; }
.cart-remove {
    border: 0; background: transparent; padding: 0; color: #9a3535; cursor: pointer;
    font-family: var(--font-family); font-size: 11px; font-weight: 800; text-decoration: underline;
}
.cart-summary {
    position: sticky; top: 78px; padding: 20px; text-align: left;
}
.cart-summary h2 { margin: 0 0 16px; font-size: 21px; letter-spacing: 0; }
.cart-summary__line {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
    margin-bottom: 14px;
}
.cart-summary__line span { color: var(--color-text2); font-size: 13px; font-weight: 800; }
.cart-summary__line strong { font-size: 22px; }
.cart-summary p {
    line-height: 1.55; text-transform: none; letter-spacing: 0; font-weight: 600; margin: 0 0 14px;
}
.cart-summary__note { display: flex; align-items: flex-start; gap: 8px; color: var(--color-text2); }
.cart-summary__note .icon { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--color-accent); }
.cart-summary .button + .button { margin-top: 10px; }
.cart-empty {
    display: grid; gap: 8px; justify-items: start; padding: 28px;
}
.cart-empty strong { font-size: 20px; }
.cart-empty span { color: var(--color-text2); margin-bottom: 8px; }

/* --- Forms (login/register) --- */
.form-page { max-width: 420px; margin: 60px auto; }
.form-page h1 { font-size: 20px; text-align: center; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; margin-bottom: 6px; font-weight: 600; }
.form-row input, .form-row textarea {
    width: 100%; padding: 11px 12px; border: 1px solid var(--color-border); font-family: var(--font-family); font-size: 13px;
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-accent); }

.checkout-card { background: #fff; box-shadow: -5px 4px 5px rgba(0, 0, 0, .06); padding: 24px; }

/* --- Simple register & checkout flow --- */
.register-page {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 460px); gap: 34px; align-items: center;
    padding: 54px 0 64px;
}
.register-intro h1,
.checkout-head h1 { margin: 0; font-size: 34px; line-height: 1.1; letter-spacing: 0; }
.register-intro p,
.checkout-head p { color: var(--color-text2); line-height: 1.7; margin: 12px 0 0; max-width: 560px; }
.register-steps {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 24px;
}
.register-steps span {
    display: grid; gap: 8px; background: #fff; border: 1px solid var(--color-border); border-radius: 10px;
    padding: 16px; font-size: 13px; font-weight: 800; color: var(--color-text);
}
.register-steps strong {
    display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center;
    border-radius: 999px; background: #e9f8fb; color: var(--color-accent);
}
.register-card,
.checkout-step-card,
.checkout-card {
    background: #fff; border: 1px solid var(--color-border); border-radius: 10px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}
.register-card { padding: 26px; }
.register-card__login { text-align: center; margin: 16px 0 0; font-size: 13px; color: var(--color-text2); }
.register-card__login a { font-weight: 800; color: var(--color-accent); }
.auth-forgot-link { text-align: right; margin: -8px 0 16px; font-size: 12px; }
.auth-forgot-link a { color: var(--color-accent); font-weight: 700; }
/* --- Ortak alışveriş ilerleme göstergesi (Warenkorb/Sepet → Versand/Checkout → Bestätigung/Sipariş Onayı) --- */
.checkout-steps { display: flex; align-items: center; list-style: none; padding: 0; margin: 0 0 26px; }
.checkout-steps__step {
    display: flex; align-items: center; gap: 9px; color: var(--color-text2); font-size: 13px; font-weight: 700;
}
.checkout-steps__step:not(:last-child)::after {
    content: ''; width: 34px; height: 1px; background: var(--color-border); margin: 0 14px;
}
.checkout-steps__marker {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 26px; height: 26px; border-radius: 50%; background: #f0f3f6; color: #8b929b; font-size: 12px; font-weight: 800;
}
.checkout-steps__step.is-active { color: var(--color-text); }
.checkout-steps__step.is-active .checkout-steps__marker { background: var(--color-accent); color: #fff; }
.checkout-steps__step.is-done .checkout-steps__marker { background: rgba(23, 188, 227, .15); color: var(--color-accent); }
.checkout-steps__step.is-done .checkout-steps__marker .icon { width: 12px; height: 12px; }

.checkout-page { padding: 34px 0 46px; }
.checkout-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 18px;
}
.checkout-payment-note {
    display: inline-flex; align-items: center; min-height: 34px; padding: 0 13px; border-radius: 999px;
    background: #fff2dd; color: #8a6d3b; font-size: 12px; font-weight: 800; white-space: nowrap;
}
.checkout-grid {
    display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 18px; align-items: start;
}
.checkout-step-card { padding: 22px; }
.checkout-step-card__head {
    display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.checkout-step-card__head > span {
    display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
    border-radius: 999px; background: #e9f8fb; color: var(--color-accent); font-weight: 900;
}
.checkout-step-card__head h2 { margin: 0; font-size: 18px; letter-spacing: 0; }
.checkout-step-card__head p { margin: 3px 0 0; color: var(--color-text2); font-size: 13px; }
.checkout-step-card .cart-table,
.order-success__card .cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 14px;
}
.checkout-step-card .cart-table th,
.checkout-step-card .cart-table td,
.order-success__card .cart-table th,
.order-success__card .cart-table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid #eef1f4;
    font-size: 13px;
    vertical-align: top;
}
.checkout-step-card .cart-table th,
.order-success__card .cart-table th {
    color: var(--color-text2);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.checkout-step-card .cart-table tr:last-child td,
.order-success__card .cart-table tr:last-child td { border-bottom: 0; }
.checkout-step-card .cart-table__variant,
.order-success__card .cart-table__variant {
    margin-top: 4px;
    color: var(--color-text2);
    font-size: 11px;
}
.checkout-edit-link { display: inline-flex; color: var(--color-accent); font-size: 13px; font-weight: 800; text-decoration: underline; }
.checkout-total-line {
    display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 20px 0 14px;
    padding-top: 16px; border-top: 1px solid var(--color-border);
}
.checkout-total-line span { color: var(--color-text2); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.checkout-total-line strong { font-size: 22px; }
.checkout-trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.checkout-help-text { color: var(--color-text2); font-size: 12px; line-height: 1.5; text-align: center; margin: 12px 0 0; }

/* --- Bestellbestätigung (order-success.php) --- */
.order-success { padding: 34px 0 46px; }
.order-success__head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.order-success__badge {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 52px; height: 52px; border-radius: 50%; background: rgba(23, 188, 227, .12);
}
.order-success__badge .icon { width: 24px; height: 24px; color: var(--color-accent); }
.order-success__head h1 { margin: 4px 0 6px; font-size: 26px; }
.order-success__head p { margin: 0; color: var(--color-text2); }
.order-success__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start; }
.order-success__card {
    background: #fff; border-radius: 12px; padding: 24px;
    box-shadow: -5px 4px 5px rgba(0, 0, 0, .06);
}
.order-success__card h2 { margin: 0 0 16px; font-size: 17px; }
.order-success__steps-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 14px; }
.order-success__steps-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--color-text2); line-height: 1.5; }
.order-success__steps-list .icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--color-accent); }
.order-success__actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 900px) {
    .order-success__grid { grid-template-columns: 1fr; }
    .order-success__head { align-items: flex-start; }
}

/* --- Account & order detail --- */
.account-page,
.order-detail-page { padding: 34px 0 42px; }
.account-hero {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 18px;
    background: #fff; border: 1px solid var(--color-border); border-radius: 10px;
    padding: 24px; margin-bottom: 18px; box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}
.account-eyebrow {
    display: block; color: var(--color-accent); font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px;
}
.account-hero h1,
.account-section-head h2,
.order-detail-card h2 { margin: 0; font-size: 24px; letter-spacing: 0; }
.account-hero p { margin: 7px 0 0; color: var(--color-text2); }
.account-status,
.order-status {
    display: inline-flex; align-items: center; justify-content: center; min-height: 30px;
    padding: 0 12px; border-radius: 999px; font-size: 12px; font-style: normal; font-weight: 800;
    white-space: nowrap;
}
.account-status--approved,
.order-status--paid,
.order-status--completed { background: var(--color-success-bg); color: var(--color-success); }
.account-status--pending,
.order-status--pending { background: #fff2dd; color: #8a6d3b; }
.order-status--preparing { background: #eef2ff; color: #4751c9; }
.order-status--shipped { background: #edf7ff; color: #0b70b7; }
.order-status--cancelled { background: var(--color-error-bg); color: var(--color-error); }
.account-section-head {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    margin: 28px 0 14px;
}
.account-empty {
    display: grid; gap: 5px; background: #fff; border: 1px solid var(--color-border);
    border-radius: 10px; padding: 24px; color: var(--color-text2);
}
.account-empty strong { color: var(--color-text); }
.account-order-list { display: grid; gap: 10px; }
.account-order-card {
    display: grid; grid-template-columns: 90px 1fr auto 120px; align-items: center; gap: 14px;
    background: #fff; border: 1px solid var(--color-border); border-radius: 10px; padding: 16px 18px;
    color: var(--color-text); transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.account-order-card:hover {
    border-color: rgba(23, 188, 227, .35); box-shadow: 0 12px 26px rgba(16, 24, 40, .06);
    transform: translateY(-1px);
}
.account-order-card span { color: var(--color-text2); font-size: 13px; }
.account-order-card b { text-align: right; }
.order-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start; }
.order-detail-card {
    background: #fff; border: 1px solid var(--color-border); border-radius: 10px;
    padding: 22px; box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}
.order-detail-card--wide { min-width: 0; }
.order-detail-card .account-section-head { margin-top: 0; }
.order-detail-card p { color: var(--color-text2); line-height: 1.6; }
.order-detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

/* --- Contact page --- */
.contact-page { background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%); padding-bottom: 12px; }
.contact-map-hero {
    width: 100%; height: clamp(320px, 34vw, 470px); overflow: hidden; background: #edf2f6;
    border-bottom: 1px solid rgba(16, 24, 40, .08);
}
.contact-map-hero iframe {
    display: block; width: 100%; height: 100%; border: 0; filter: saturate(.96) contrast(.98);
}
.contact-hero {
    display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: end;
    padding: 20px 0 32px;
}
.contact-eyebrow,
.contact-card__label {
    display: inline-flex; color: var(--color-accent); font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .08em;
}
.contact-hero h1 {
    margin: 6px 0 10px; font-size: 34px; line-height: 1.1; letter-spacing: 0; text-transform: none;
}
.contact-hero p {
    max-width: 660px; margin: 0; color: #5e6874; font-size: 15px; line-height: 1.7;
}
.contact-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.contact-hero__badges span {
    display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px;
    border-radius: 999px; background: #fff; border: 1px solid rgba(16, 24, 40, .08);
    color: #202020; font-size: 11px; font-weight: 800; box-shadow: 0 8px 20px rgba(16, 24, 40, .045);
}
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; align-items: stretch; }
.contact-card,
.contact-map-card {
    background: #fff; border: 1px solid rgba(16, 24, 40, .08); border-radius: 10px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}
.contact-card { padding: 28px; }
.contact-card h2,
.contact-map-card h2 {
    margin: 6px 0 18px; font-size: 22px; line-height: 1.22; letter-spacing: 0; text-transform: none;
}
.contact-info-list { display: grid; gap: 10px; }
.contact-info {
    display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; align-items: center;
    min-height: 68px; padding: 12px; border-radius: 9px; background: #f7f9fb;
    border: 1px solid rgba(16, 24, 40, .06); transition: border-color .15s, box-shadow .15s, transform .15s;
}
a.contact-info:hover {
    border-color: rgba(23, 188, 227, .28); box-shadow: 0 10px 22px rgba(16, 24, 40, .07); transform: translateY(-1px);
}
.contact-info__icon {
    display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
    border-radius: 10px; background: #fff; color: var(--color-accent); font-size: 12px; font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(16, 24, 40, .07);
}
.contact-info__icon .icon { width: 17px; height: 17px; background: var(--color-accent); }
.contact-info small {
    display: block; margin-bottom: 2px; color: #7c8490; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .055em;
}
.contact-info strong {
    display: block; color: #202020; font-size: 13px; line-height: 1.35; letter-spacing: 0;
}
.contact-hours {
    margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(16, 24, 40, .08);
}
.contact-hours h3 { margin-bottom: 12px; font-size: 13px; letter-spacing: .06em; }
.contact-hours div {
    display: flex; justify-content: space-between; gap: 18px; padding: 7px 0; font-size: 13px; color: #606a75;
}
.contact-hours strong { color: #202020; white-space: nowrap; }
.contact-route-button { width: 100%; justify-content: center; margin-top: 18px; }
.contact-form { display: grid; gap: 14px; }
.contact-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label {
    display: grid; gap: 7px; color: #3a4048; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.contact-form input,
.contact-form textarea {
    width: 100%; border: 1px solid rgba(16, 24, 40, .1); border-radius: 8px; background: #f7f9fb;
    font-family: var(--font-family); font-size: 13px; color: #202020; padding: 0 13px; outline: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.contact-form input { height: 46px; }
.contact-form textarea { min-height: 148px; padding-top: 13px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
    background: #fff; border-color: rgba(23, 188, 227, .62); box-shadow: 0 0 0 3px rgba(23, 188, 227, .12);
}
.contact-form .button { width: 100%; min-height: 46px; border-radius: 8px; }
/* --- Footer --- */
.site-footer {
    background: #f7f8fa; border-top: 1px solid rgba(16, 24, 40, .08);
    padding: 42px 0 22px; margin-top: 52px;
}
.footer-main {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr); gap: 34px;
    align-items: stretch; padding-bottom: 34px; border-bottom: 1px solid rgba(16, 24, 40, .08);
}
.footer-brand,
.footer-newsletter {
    background: #fff; border: 1px solid rgba(16, 24, 40, .07); border-radius: 10px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .045);
}
.footer-brand { padding: 28px; }
.footer-brand__logo { display: inline-flex; margin-bottom: 16px; }
.footer-brand__logo img { height: 54px; width: auto; }
.footer-brand p {
    max-width: 430px; margin: 0 0 18px; color: #626b76; font-size: 13px; line-height: 1.7;
}
.footer-brand__contact { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-brand__contact a {
    display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 12px;
    border-radius: 999px; background: #f7f9fb; color: #202020; font-size: 12px; font-weight: 700;
}
.footer-brand__contact .icon { width: 14px; height: 14px; background: var(--color-accent); }

.footer-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
    padding: 30px 0 26px; border-bottom: 1px solid rgba(16, 24, 40, .08);
}
.footer-column { min-width: 0; }
.footer-grid h2,
.footer-newsletter h2 {
    font-size: 13px; margin-bottom: 14px; letter-spacing: .06em;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a {
    display: inline-flex; color: #6b7280; font-size: 12px; line-height: 1.35; transition: color .15s, transform .15s;
}
.footer-grid a:hover { color: #202020; transform: translateX(2px); }

/* --- Footer Newsletter --- */
.footer-newsletter { padding: 26px 28px; }
.footer-newsletter__eyebrow {
    display: inline-flex; margin-bottom: 8px; color: var(--color-accent); font-size: 11px;
    font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.footer-newsletter p { font-size: 12px; color: #626b76; margin: 0 0 16px; text-transform: none; letter-spacing: 0; line-height: 1.6; }
.footer-newsletter__form {
    display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px;
}
.footer-newsletter__form input {
    min-width: 0; border: 1px solid rgba(16, 24, 40, .1); border-radius: 8px;
    padding: 0 14px; height: 46px; font-family: var(--font-family); font-size: 13px; background: #f7f9fb;
}
.footer-newsletter__form input:focus { outline: none; border-color: rgba(23, 188, 227, .55); background: #fff; }
.footer-newsletter__form button {
    height: 46px; border: 0; border-radius: 8px; background: #202020; color: #fff; padding: 0 20px; font-weight: 800;
    font-size: 11px; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; transition: background .15s;
}
.footer-newsletter__form button:hover { background: var(--color-accent); }
.footer-newsletter__message { font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: 20px; display: inline-block; margin-bottom: 12px !important; }
.footer-newsletter__message--success { background: var(--color-success-bg); color: var(--color-success); }
.footer-newsletter__message--error { background: var(--color-error-bg); color: var(--color-error); }

/* --- Footer Payment --- */
.footer-meta {
    display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; flex-wrap: wrap;
}
.footer-payment { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-payment__label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #7a828c; font-weight: 800; }
.footer-payment__icons { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-badge {
    display: inline-flex; align-items: center; gap: 5px; background: #fff; border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 999px; padding: 6px 11px; font-size: 11px; font-weight: 800; color: #68717d; letter-spacing: .02em;
}
.payment-badge .icon { width: 12px; height: 12px; background: #68717d; }
.footer-bottom { font-size: 12px; color: #7a828c; text-align: right; }

.badge { display: inline-block; padding: 3px 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .02em; border-radius: 3px; }
.badge--out { background: var(--color-error-bg); color: var(--color-error); }
.badge--in { background: var(--color-success-bg); color: var(--color-success); }

/* --- Alerts (site geneli) --- */
.alert { padding: 12px 16px; font-size: 13px; margin-bottom: 16px; border-radius: 4px; }
.alert--success { background: var(--color-success-bg); color: var(--color-success); }
.alert--error { background: var(--color-error-bg); color: var(--color-error); }
.alert--info { background: #fff2dd; color: #8a6d3b; }

@media (max-width: 1180px) {
    .topbar .container { grid-template-columns: 1fr; gap: 4px; text-align: left; }
    .topbar__shipping,
    .topbar__free { justify-self: start; }
    .site-header .container { grid-template-columns: 180px 1fr; gap: 24px; }
    .site-header__search { grid-column: 1 / -1; grid-row: 2; }
    .site-header__actions { justify-content: flex-end; }
    .site-nav__row { gap: 22px; }
    .site-nav__links { gap: 22px; }
    .model-finder-section { width: min(1120px, calc(100% - 80px)); }
}

@media (max-width: 900px) {
    .brand-marquee__track { gap: 40px; }
    .brand-marquee__item { width: 96px; height: 42px; }
    .brand-marquee__logo { width: 96px; height: 34px; }
    .brand-showcase { grid-template-columns: repeat(2, 1fr); }
    .category-showcase { grid-template-columns: 1fr; }
    .own-brand-banner { padding: 28px 0; }
    .wholesaler { grid-template-columns: 1fr; }
    .wholesaler__media,
    .wholesaler__reviews { min-height: 320px; }
    .brand-showcase__card { min-height: 250px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-layout .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .collection-layout { grid-template-columns: 1fr; }
    .collection-toolbar { align-items: stretch; }
    .collection-toolbar__sort { width: 100%; margin-left: 0; justify-content: space-between; }
    .collection-toolbar select { flex: 1; min-width: 0; }
    .filter-panel { position: static; top: auto; max-height: none; overflow-y: visible; }
    .filter-options { max-height: 280px; }
    .collection-container { padding: 0 15px; }
    .product-detail { grid-template-columns: 1fr; }
    .product-purchase-card__top { grid-template-columns: 1fr; }
    .product-detail__sku { justify-items: start; text-align: left; }
    .product-detail__sku .badge { justify-self: start; }
    .register-page,
    .checkout-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .cart-item { grid-template-columns: 76px minmax(0, 1fr) 118px; }
    .cart-item__price,
    .cart-item__qty,
    .cart-item__subtotal { grid-column: 2 / -1; justify-items: start; text-align: left; }
    .checkout-head { align-items: flex-start; flex-direction: column; }
    .account-hero { align-items: flex-start; flex-direction: column; }
    .account-order-card { grid-template-columns: 90px 1fr; }
    .account-order-card .order-status,
    .account-order-card b { justify-self: start; }
    .order-detail-grid { grid-template-columns: 1fr; }
    .contact-map-hero { height: 340px; }
    .contact-hero { grid-template-columns: 1fr; align-items: start; }
    .contact-hero__badges { justify-content: flex-start; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-meta { align-items: flex-start; flex-direction: column; }
    .footer-bottom { text-align: left; }
    .hero-stage { padding-bottom: 260px; }
    .hero-banner__img { width: 100%; height: 360px; }
    .hero-brand-icons { top: 50%; gap: 7px; }
    .hero-brand-icons__item { width: 58px; height: 58px; border-radius: 15px; }
    .model-finder-section { width: calc(100% - 40px); bottom: 24px; }
    .model-finder { grid-template-columns: 1fr; gap: 0; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 24px rgba(20, 26, 36, .12); }
    .model-finder__field { border-bottom: 1px solid var(--color-border); }
    .model-finder__field select { height: 58px; border-radius: 0; box-shadow: none; padding-left: 22px; }
    .model-finder__submit { height: 58px; border-radius: 0; box-shadow: none; padding: 0; }

    .site-header .container { grid-template-columns: 160px 1fr; }
    .site-nav { position: relative; top: auto; }
    .site-nav__row { flex-wrap: wrap; align-items: center; gap: 0 20px; min-height: auto; padding: 10px 20px; }
    .site-nav__group { position: static; }
    .site-nav__panel {
        top: 100%; left: 20px; right: 20px; width: auto; min-width: 0; max-width: none;
        max-height: min(60vh, 420px); box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
    }
    .site-nav__panel-featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .site-nav__panel-featured span { font-size: 13px; }
    .site-nav__panel-grid { grid-template-columns: repeat(2, 1fr); }
    .site-nav__links { display: flex; gap: 16px; overflow-x: auto; }
    .site-nav__quick { font-size: 13px; padding: 10px 0; }
}

@media (max-width: 560px) {
    .container { padding: 0 15px; }
    .topbar { padding: 5px 0; }
    .topbar .container { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
    .topbar__contact { flex-direction: row; flex-wrap: wrap; gap: 4px 14px; }
    .topbar__shipping,
    .topbar__free { line-height: 1.35; }
    .site-header { padding: 14px 0; }
    .site-header .container { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
    .site-header__logo img { height: 44px; }
    .site-header__actions { justify-content: space-between; gap: 10px; font-size: 12px; }
    .site-header__search { max-width: none; order: 3; min-width: 0; }
    .site-header__search input { font-size: 14px; padding: 13px 0; }
    .site-header__search-btn { width: 46px; height: 46px; }
    .site-header__cart-badge { min-width: 44px; }
    .site-header__account .icon { width: 30px; height: 30px; }
    .site-header__account small { display: none; }
    .site-nav__row { display: flex; padding-top: 8px; padding-bottom: 8px; }
    .site-nav__group { display: block; }
    .site-nav__group--brands { display: none; }
    .site-nav__trigger { justify-content: flex-start; padding: 0; font-size: 16px; }
    .site-nav__divider,
    .site-nav__links { display: none; }
    .site-nav__panel {
        left: 15px; right: 15px; padding: 14px; max-height: 58vh; overflow-y: auto;
    }
    .site-nav__panel-head { align-items: flex-start; flex-direction: column; gap: 10px; padding-bottom: 12px; }
    .site-nav__panel-all { width: 100%; }
    .site-nav__panel-featured { grid-template-columns: 1fr; gap: 8px; padding: 12px 0; }
    .site-nav__panel-featured a { min-height: 58px; padding: 12px; }
    .site-nav__panel-grid { grid-template-columns: 1fr; gap: 2px; }
    .register-page,
    .checkout-page,
    .cart-page { padding: 24px 0 34px; }
    .cart-head { align-items: flex-start; flex-direction: column; }
    .cart-head h1 { font-size: 27px; }
    .cart-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }
    .cart-item__image { width: 72px; height: 72px; }
    .cart-item__price,
    .cart-item__qty,
    .cart-item__subtotal { grid-column: 1 / -1; }
    .cart-item__subtotal { border-top: 1px solid #eef1f4; padding-top: 12px; }
    .cart-summary,
    .cart-empty { padding: 18px; }
    .register-intro h1,
    .checkout-head h1 { font-size: 27px; }
    .register-steps { grid-template-columns: 1fr; }
    .register-card,
    .checkout-step-card,
    .checkout-card { padding: 18px; }
    .checkout-payment-note { white-space: normal; }
    .account-page,
    .order-detail-page { padding: 24px 0 32px; }
    .account-hero,
    .order-detail-card,
    .account-empty { padding: 18px; }
    .account-section-head { align-items: flex-start; flex-direction: column; }
    .account-section-head .button { width: 100%; justify-content: center; }
    .account-order-card { grid-template-columns: 1fr; gap: 8px; }
    .account-order-card b { text-align: left; }
    .order-detail-actions .button { width: 100%; justify-content: center; }
    .hero-stage { padding-bottom: 280px; }
    .hero-banner { border-radius: 0 0 10px 10px; }
    .hero-banner__img { width: 100%; height: 250px; object-fit: cover; object-position: center; }
    .hero-brand-icons { top: 50%; gap: 5px; }
    .hero-brand-icons__item { width: 44px; height: 44px; border-radius: 12px; }
    .model-finder-section { width: calc(100% - 30px); bottom: 18px; }
    .home-categories-section { padding: 24px 0; }
    .category-showcase { gap: 14px; align-items: start; }
    .category-showcase__card { padding: 0; }
    .category-showcase__image { aspect-ratio: 2.35 / 1; margin-bottom: 0; padding: 8px; }
    .category-showcase__body { min-height: 0; padding: 18px 14px; }
    .category-showcase__title { font-size: 16px; }
    .category-showcase__links a { font-size: 14px; }
    .own-brand-banner img { min-height: 145px; max-height: 180px; object-fit: cover; object-position: center; }
    .own-brand-banner__actions {
        left: 16px; right: 16px; bottom: 16px; gap: 8px; flex-wrap: wrap;
    }
    .own-brand-banner__actions a {
        min-width: 0; height: 36px; padding: 0 14px; font-size: 12px; flex: 1;
    }
    .brand-showcase-section .section__title,
    .wholesaler-section .section__title { font-size: 20px; }
    .brand-showcase { grid-template-columns: 1fr; gap: 14px; }
    .brand-showcase__card { min-height: 0; }
    .brand-showcase__image { height: 86px; padding: 18px 16px 8px; }
    .brand-showcase__body { margin: 0 14px 14px; padding: 18px 14px; }
    .brand-showcase__desc { font-size: 16px; }
    .wholesaler__media,
    .wholesaler__reviews { min-height: 280px; }
    .wholesaler__reviews { padding: 24px 22px 22px; }
    .wholesaler__review p { font-size: 15px; }
    .wholesaler__quote-mark { font-size: 40px; }
    .product-detail { gap: 24px; padding: 24px 0 36px; }
    .product-detail__gallery { border-radius: 8px; }
    .product-purchase-card { padding: 16px; border-radius: 12px; }
    .variant-picker,
    .qty-row { grid-template-columns: 1fr; }
    .qty-control { width: 150px; }
    .product-add-button { width: 100%; }
    .product-grid { grid-template-columns: 1fr; }
    .collection-layout .product-grid { grid-template-columns: 1fr; gap: 18px; }
    .collection-toolbar { padding: 12px; border-radius: 8px; }
    .collection-toolbar__sort { align-items: stretch; flex-direction: column; gap: 6px; }
    .collection-toolbar select { width: 100%; height: 42px; min-height: 42px; }
    .product-card__meta { padding: 0 14px; }
    .product-card .button { width: calc(100% - 28px); margin-left: 14px; margin-right: 14px; }
    .contact-map-hero { height: 280px; }
    .contact-hero { padding: 12px 0 22px; }
    .contact-hero h1 { font-size: 28px; }
    .contact-card { padding: 20px; }
    .contact-form__row { grid-template-columns: 1fr; gap: 12px; }
    .contact-hours div { align-items: flex-start; flex-direction: column; gap: 2px; }
    .site-footer { padding-top: 28px; margin-top: 34px; }
    .footer-main { gap: 16px; padding-bottom: 22px; }
    .footer-brand,
    .footer-newsletter { padding: 20px; }
    .footer-brand__contact { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 18px; padding: 22px 0; }
    .footer-newsletter__form { grid-template-columns: 1fr; }
    .footer-newsletter__form button { width: 100%; }
    .footer-payment { align-items: flex-start; flex-direction: column; }
}
