/* Bilimoto mağaza ortak stilleri */
:root {
    --black: #0a0a0a;
    --ink: #111;
    --gold: #d4af37;
    --gold-hi: #e8c547;
    --paper: #fff;
    --page: #f5f5f6;
    --muted: #6b7280;
    --line: #e6e6e8;
    --safe-t: env(safe-area-inset-top, 0px);
    --safe-b: env(safe-area-inset-bottom, 0px);
    --max: 1240px;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    color: var(--ink);
    background: var(--page);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
h1, h2, h3 {
    font-family: "Instrument Sans", "DM Sans", sans-serif;
    letter-spacing: -0.025em;
    line-height: 1.15;
    font-weight: 650;
}
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
@media (min-width: 900px) {
    .wrap { width: min(var(--max), calc(100% - 3rem)); }
}

.topbar {
    background: linear-gradient(90deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
    color: rgba(255,255,255,0.72);
    font-size: 0.75rem;
    padding: 0.5rem 0;
    padding-top: calc(0.5rem + var(--safe-t));
    border-bottom: 1px solid rgba(212,175,55,0.22);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-promo { display: flex; align-items: center; gap: 0.55rem; min-width: 0; }
.topbar-pill {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.18rem 0.5rem; border-radius: 999px;
    background: rgba(212,175,55,0.16); color: var(--gold-hi);
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    flex-shrink: 0;
}
.topbar strong { color: var(--gold-hi); font-weight: 600; }
.topbar-links { display: none; gap: 0.15rem; }
.topbar-links a {
    padding: 0.2rem 0.55rem; border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}
.topbar-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
@media (min-width: 800px) { .topbar-links { display: flex; } }

.header {
    position: sticky; top: 0; z-index: 40;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px) saturate(1.35);
    border-bottom: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 8px 24px rgba(17,17,17,0.04);
}
.header-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 4.4rem;
    padding-block: 0.7rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    display: grid; place-items: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(212,175,55,0.25);
}
.brand-mark img {
    width: 28px; height: 28px; object-fit: contain;
}
.brand-name { display: none; flex-direction: column; gap: 0.08rem; }
.brand-name strong {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.05rem; font-weight: 700; letter-spacing: -0.03em;
}
.brand-name span {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold);
}
@media (min-width: 520px) { .brand-name { display: flex; } }

.search {
    display: flex; align-items: stretch; max-width: 580px; width: 100%;
    margin-inline: auto; border: 1px solid rgba(17,17,17,0.08);
    border-radius: 14px; overflow: hidden;
    background: #f7f7f8;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.search:focus-within {
    background: #fff;
    border-color: rgba(212,175,55,0.55);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14), 0 8px 20px rgba(17,17,17,0.05);
}
.search select {
    display: none; border: 0; border-right: 1px solid rgba(17,17,17,0.06);
    padding: 0 0.85rem; background: transparent; font-size: 0.8rem;
    color: #4b5563; max-width: 148px; outline: none; cursor: pointer;
}
@media (min-width: 720px) { .search select { display: block; } }
.search-field {
    flex: 1; display: flex; align-items: center; gap: 0.45rem;
    min-width: 0; padding-left: 0.85rem;
}
.search-ico {
    width: 18px; height: 18px; color: #9ca3af; flex-shrink: 0;
}
.search input {
    flex: 1; border: 0; outline: none; padding: 0.8rem 0.75rem 0.8rem 0;
    min-width: 0; background: transparent; font-size: 0.9rem;
}
.search button {
    padding: 0 1.15rem; background: var(--black); color: #fff;
    font-weight: 650; font-size: 0.82rem; white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.search button:hover { background: #222; color: var(--gold-hi); }

.header-actions { display: flex; align-items: center; gap: 0.2rem; }
.h-btn {
    position: relative; width: 42px; height: 42px; display: grid; place-items: center;
    border-radius: 12px; color: var(--ink);
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.h-btn:hover { background: #f0f0f1; }
.h-btn-cart:hover {
    background: var(--black); color: var(--gold-hi);
    box-shadow: 0 6px 16px rgba(0,0,0,0.16);
}
.h-btn svg { width: 21px; height: 21px; }
.h-btn .badge {
    position: absolute; top: 5px; right: 4px; min-width: 17px; height: 17px;
    padding: 0 4px; border-radius: 999px; background: var(--gold); color: var(--black);
    font-size: 0.62rem; font-weight: 700; display: grid; place-items: center; line-height: 1;
    box-shadow: 0 0 0 2px #fff;
}
.h-account {
    display: none; align-items: center; gap: 0.55rem;
    padding: 0.3rem 0.6rem 0.3rem 0.3rem; border-radius: 12px; margin-left: 0.2rem;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}
.h-account:hover { background: #f7f7f8; border-color: rgba(17,17,17,0.06); }
.h-account-avatar {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    color: var(--gold-hi); display: grid; place-items: center;
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.2);
}
.h-account-avatar svg { width: 18px; height: 18px; }
.h-account-meta { line-height: 1.2; }
.h-account-meta small { display: block; font-size: 0.68rem; color: var(--muted); }
.h-account-meta strong { font-size: 0.8rem; font-weight: 650; }
@media (min-width: 900px) { .h-account { display: flex; } }
.menu-btn { display: grid; }
@media (min-width: 980px) { .menu-btn { display: none; } }

.catnav {
    display: none;
    border-top: 1px solid rgba(17,17,17,0.05);
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}
@media (min-width: 980px) { .catnav { display: block; } }
.catnav-empty {
    padding: 0.8rem 0.95rem; font-size: 0.84rem; color: #9ca3af;
}
.catnav-inner {
    display: flex; align-items: center; gap: 0.15rem;
    overflow-x: auto; scrollbar-width: none;
}
.catnav-inner::-webkit-scrollbar { display: none; }
.catnav a {
    flex-shrink: 0; padding: 0.75rem 0.9rem; font-size: 0.84rem; font-weight: 550;
    color: #3f3f46; border-bottom: 2px solid transparent;
    border-radius: 8px 8px 0 0;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.catnav a:hover {
    color: var(--ink);
    background: rgba(17,17,17,0.03);
}
.catnav a.is-active {
    color: var(--ink);
    border-bottom-color: var(--gold);
    font-weight: 650;
}
.catnav-all {
    display: inline-flex; align-items: center; gap: 0.35rem;
    margin-right: 0.35rem; padding-left: 0 !important; font-weight: 650 !important;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    height: 46px; padding: 0 1.25rem; border-radius: 9px;
    font-size: 0.9rem; font-weight: 650;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-gold { background: var(--gold-hi); color: var(--black); }
.btn-gold:hover { background: #f0d45a; }
.btn-dark { background: var(--black); color: #fff; height: 42px; padding: 0 1rem; font-size: 0.85rem; }
.btn-dark:hover { background: #222; }
.btn-outline-dark { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }

.section { padding: 3.5rem 0; }
.cat-section {
    background: var(--page);
}
.cat-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.cat-grid {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.55rem;
    margin-inline: -0.15rem;
    padding-inline: 0.15rem;
    scrollbar-width: thin;
}
.cat-grid::-webkit-scrollbar { height: 6px; }
.cat-grid::-webkit-scrollbar-thumb {
    background: #d4d4d8;
    border-radius: 999px;
}
.cat-grid .cat-card {
    flex: 0 0 min(78vw, 240px);
    scroll-snap-align: start;
    min-height: 168px;
}
@media (min-width: 700px) {
    .cat-grid .cat-card { flex-basis: 220px; }
}
@media (min-width: 1100px) {
    .cat-grid .cat-card { flex-basis: 240px; }
}
.cat-card {
    position: relative;
    min-height: 168px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--black);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.15rem 1.15rem 1.2rem;
    isolation: isolate;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, transparent 15%, rgba(0,0,0,0.88) 100%),
        radial-gradient(circle at 85% 15%, rgba(212,175,55,0.28), transparent 48%);
}
.cat-card.has-cover::before {
    background: linear-gradient(180deg, transparent 8%, rgba(0,0,0,0.82) 100%);
}
.cat-card-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s var(--ease);
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }
.cat-card-letter {
    position: absolute;
    right: 0.85rem;
    top: 0.7rem;
    z-index: 0;
    font-family: "Instrument Sans", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
}
.cat-card-body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.25rem;
    padding-right: 1.5rem;
}
.cat-card strong {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}
.cat-card small {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}
.cat-card-arrow {
    position: absolute;
    right: 1rem;
    bottom: 1.1rem;
    z-index: 1;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.1);
    color: var(--gold-hi);
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s;
}
.cat-card:hover .cat-card-arrow {
    background: var(--gold-hi);
    color: var(--black);
    transform: translateX(2px);
}
.cat-empty {
    grid-column: 1 / -1;
    padding: 2.25rem;
    text-align: center;
    color: var(--muted);
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: 16px;
}

.promo-section { padding-top: 0.5rem; }
.promo-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 800px) {
    .promo-grid { grid-template-columns: 1.25fr 1fr; gap: 1.15rem; }
}
.promo {
    position: relative;
    border-radius: 18px;
    padding: 1.85rem 1.6rem;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.2);
}
.promo-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.promo-a {
    background:
        radial-gradient(ellipse at 90% 10%, rgba(212,175,55,0.22), transparent 42%),
        linear-gradient(145deg, #1f1f1f 0%, #0d0d0d 55%, #080808 100%);
}
.promo-b {
    background:
        radial-gradient(ellipse at 10% 20%, rgba(212,175,55,0.16), transparent 40%),
        linear-gradient(145deg, #2a2418 0%, #14110a 50%, #0a0907 100%);
}
.promo-tag {
    align-self: flex-start;
    margin-bottom: auto;
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 0.7rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold-hi);
}
.promo h3 {
    position: relative;
    margin: 0.65rem 0 0.45rem;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    letter-spacing: -0.025em;
}
.promo p {
    position: relative;
    margin: 0 0 1.15rem;
    color: rgba(255,255,255,0.62);
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 24rem;
}
.promo-cta {
    position: relative;
    align-self: flex-start;
}

.p-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
    align-items: stretch;
}
@media (min-width: 720px) { .p-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; } }
@media (min-width: 1100px) { .p-grid { grid-template-columns: repeat(4, 1fr); } }
.product {
    display: flex; flex-direction: column; background: var(--page);
    border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
    height: 100%;
}
.product:hover { border-color: #d4d4d8; box-shadow: 0 10px 28px rgba(0,0,0,0.05); }
.product-media {
    position: relative; aspect-ratio: 1 / 1; background: #ececee;
    display: grid; place-items: center; padding: 0.9rem;
    overflow: hidden;
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.product-ph { width: 42%; color: #a1a1aa; opacity: 0.7; }
.product-ph svg { width: 100%; height: auto; }
.product-badges {
    position: absolute; top: 0.75rem; left: 0.75rem;
    display: flex; flex-direction: column; gap: 0.3rem; z-index: 1;
}
.pill {
    display: inline-flex; align-items: center; height: 22px; padding: 0 0.45rem;
    border-radius: 5px; font-size: 0.65rem; font-weight: 700;
}
.pill-sale { background: var(--black); color: var(--gold-hi); }
.pill-out { background: #991b1b; color: #fff; }
.wish {
    position: absolute; top: 0.65rem; right: 0.65rem; width: 34px; height: 34px;
    border-radius: 8px; background: rgba(255,255,255,0.92); display: grid; place-items: center;
    color: #71717a; opacity: 0; z-index: 1;
}
.product:hover .wish, .wish.is-on { opacity: 1; }
.wish.is-on { color: #b91c1c; }
.wish svg { width: 16px; height: 16px; }
@media (hover: none) { .wish { opacity: 1; } }
.product-body {
    padding: 0.95rem 1rem 1.05rem; display: flex; flex-direction: column; flex: 1;
    background: #fff; border-top: 1px solid var(--line);
}
.product-brand {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem;
}
.product-body h3 {
    margin: 0; font-size: 0.92rem; font-weight: 600; letter-spacing: -0.01em;
    line-height: 1.35; min-height: 2.5em;
}
.product-meta {
    display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.4rem;
    font-size: 0.75rem; color: var(--muted);
}
.price-row { display: flex; align-items: baseline; gap: 0.45rem; margin-top: 0.55rem; }
.price {
    font-family: "Instrument Sans", sans-serif; font-weight: 700;
    font-size: 1.08rem; letter-spacing: -0.02em;
}
.product-actions { margin-top: auto; padding-top: 0.85rem; }
.btn-add {
    width: 100%; height: 40px; border-radius: 8px; background: var(--black);
    color: #fff; font-size: 0.8rem; font-weight: 650;
}
.btn-add:hover { background: #222; }
.btn-add.is-added { background: var(--gold-hi); color: var(--black); }
.btn-add:disabled { opacity: 0.45; cursor: not-allowed; }

/* Shop page */
.shop-hero {
    position: relative; background: var(--black); color: #fff;
    padding: 2.5rem 0 2.25rem; overflow: hidden;
}
.shop-hero.has-cover .shop-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.35);
}
.shop-hero-inner { position: relative; z-index: 1; }
.shop-crumb {
    display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.85rem;
}
.shop-crumb a:hover { color: var(--gold-hi); }
.shop-hero h1 {
    margin: 0; font-size: clamp(1.7rem, 3.5vw, 2.4rem); letter-spacing: -0.03em;
}
.shop-hero p {
    margin: 0.65rem 0 0; max-width: 40rem;
    color: rgba(255,255,255,0.65); font-size: 0.98rem;
}
.shop-count {
    margin-top: 0.85rem !important; font-size: 0.82rem !important;
    color: var(--gold-hi) !important; font-weight: 600;
}
.shop-layout { padding-top: 2rem; }
.shop-grid {
    display: grid; gap: 1.5rem;
}
@media (min-width: 960px) {
    .shop-grid { grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
}
.side-card {
    background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.15rem;
    position: sticky; top: 6.5rem;
}
.side-card h2 {
    margin: 0 0 0.85rem; font-size: 0.95rem;
}
.side-cats { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; }
.side-cats a {
    display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
    padding: 0.65rem 0.7rem; border-radius: 8px; font-size: 0.88rem; color: #3f3f46;
}
.side-cats a:hover { background: #f5f5f6; }
.side-cats a.is-active {
    background: var(--black); color: #fff; font-weight: 600;
}
.side-cats em {
    font-style: normal; font-size: 0.75rem; color: #a1a1aa; font-weight: 600;
}
.side-cats a.is-active em { color: rgba(255,255,255,0.55); }

.shop-toolbar {
    display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: end;
    margin-bottom: 1.25rem; padding: 0.85rem; background: #fff;
    border: 1px solid var(--line); border-radius: 12px;
}
.toolbar-search { flex: 1; min-width: 180px; }
.toolbar-search input {
    width: 100%; height: 42px; border: 1px solid var(--line); border-radius: 8px;
    padding: 0 0.85rem; background: #fff;
}
.toolbar-sort label {
    display: block; font-size: 0.72rem; font-weight: 650; color: var(--muted);
    margin-bottom: 0.25rem;
}
.toolbar-sort select {
    height: 42px; border: 1px solid var(--line); border-radius: 8px;
    padding: 0 0.75rem; background: #fff; min-width: 160px;
}
.shop-empty {
    text-align: center; padding: 3rem 1.5rem; background: #fff;
    border: 1px dashed var(--line); border-radius: 12px;
}
.shop-empty strong { display: block; font-size: 1.1rem; margin-bottom: 0.4rem; }
.shop-empty p { color: var(--muted); margin: 0 0 1.25rem; }
.pager {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin-top: 2rem; font-size: 0.9rem;
}
.pager a {
    padding: 0.55rem 0.95rem; border: 1px solid var(--line); border-radius: 8px;
    background: #fff; font-weight: 600;
}
.pager a:hover { border-color: #bbb; }

.footer {
    background:
        radial-gradient(ellipse at 85% 0%, rgba(212,175,55,0.1), transparent 40%),
        #0a0a0a;
    color: rgba(255,255,255,0.58);
    padding: 3.25rem 0 calc(1.5rem + var(--safe-b));
    font-size: 0.875rem;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
    display: grid;
    gap: 2.25rem;
    margin-bottom: 2rem;
}
@media (min-width: 800px) {
    .footer-top { grid-template-columns: 1.55fr repeat(4, 1fr); gap: 1.75rem; }
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    color: #fff;
}
.footer-logo img {
    width: 36px; height: 36px; object-fit: contain;
    background: #141414; border-radius: 9px; padding: 5px;
}
.footer-logo span {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em;
}
.footer-brand p {
    margin: 0;
    max-width: 16rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.48);
}
.footer-contact {
    display: grid;
    gap: 0.45rem;
    margin-top: 1.15rem;
}
.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.72);
    font-weight: 550;
    width: fit-content;
}
.footer-contact a svg { width: 15px; height: 15px; color: var(--gold-hi); flex-shrink: 0; }
.footer-contact a:hover { color: var(--gold-hi); }
.footer-col h4 {
    margin: 0 0 0.95rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.footer-col ul {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 0.55rem;
}
.footer-col a {
    color: rgba(255,255,255,0.62);
    transition: color 0.15s, padding-left 0.2s;
}
.footer-col a:hover {
    color: var(--gold-hi);
    padding-left: 2px;
}
.footer-bottom {
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.32);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.footer-credit {
    color: rgba(255,255,255,0.42);
}
.footer-credit a {
    color: var(--gold-hi);
    text-decoration: none;
    font-weight: 600;
}
.footer-credit a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.pay-icons {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.pay-badge img {
    display: block;
    height: 32px;
    width: auto;
    max-width: 120px;
}
.pay-badge--secure {
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.45);
}
.pay-badge--secure img {
    max-width: 132px;
}

.hero {
    position: relative;
    min-height: min(72vh, 600px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: var(--black);
    overflow: hidden;
}
.hero > .wrap {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 2rem));
    margin-inline: auto;
}
.hero-media {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 78% 12%, rgba(212,175,55,0.32), transparent 46%),
        radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.05), transparent 42%),
        linear-gradient(155deg, #1c1c1c 0%, #0c0c0c 48%, #050505 100%);
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}
.hero-orb-a {
    width: min(48vw, 420px); height: min(48vw, 420px);
    top: -12%; right: -6%;
    background: rgba(212,175,55,0.22);
}
.hero-orb-b {
    width: min(36vw, 280px); height: min(36vw, 280px);
    bottom: -8%; left: 8%;
    background: rgba(255,255,255,0.06);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 40% 60%, #000 20%, transparent 72%);
    opacity: 0.7;
}
.hero-inner {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0 3.25rem;
    max-width: 38rem;
}
.hero-kicker {
    margin: 0 0 1rem; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-hi);
    display: inline-flex; align-items: center; gap: 0.55rem;
}
.hero-kicker-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold-hi);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.22);
    animation: hero-pulse 2.2s ease-in-out infinite;
}
@keyframes hero-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(212,175,55,0.18); }
    50% { box-shadow: 0 0 0 7px rgba(212,175,55,0.08); }
}
.hero h1 {
    margin: 0; font-size: clamp(2.5rem, 6.8vw, 4.25rem);
    letter-spacing: -0.045em; line-height: 0.96;
}
.hero h1 em { font-style: normal; color: var(--gold-hi); }
.hero-lead {
    margin: 1.15rem 0 0; color: rgba(255,255,255,0.68); font-size: 1.06rem; max-width: 30rem;
    line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.7rem; }
.hero-chips {
    list-style: none; margin: 1.85rem 0 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 0.45rem;
}
.hero-chips li {
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}

.benefits {
    padding: 1.35rem 0 1.5rem;
    background:
        linear-gradient(180deg, #f6f6f7 0%, #fff 100%);
    border-bottom: 1px solid rgba(17,17,17,0.06);
    margin-top: -1px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}
@media (min-width: 640px) {
    .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.85rem;
    }
}
.benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem 1.15rem;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.07);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(17,17,17,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.benefit:hover {
    transform: translateY(-3px);
    border-color: rgba(212,175,55,0.35);
    box-shadow: 0 12px 28px rgba(17,17,17,0.07);
}
.benefit-ico {
    width: 44px; height: 44px; flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #111, #0a0a0a);
    color: var(--gold-hi);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.22), 0 6px 14px rgba(0,0,0,0.12);
}
.benefit-ico svg { width: 20px; height: 20px; }
.benefit-body { min-width: 0; padding-top: 0.1rem; }
.benefit-body strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.22rem;
}
.benefit-body span {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
}
.benefit-body a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 550;
}
.benefit-body a:hover { color: var(--gold); }

.section-head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.5rem;
}
.section-head h2 { margin: 0; font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
.section-head p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.92rem; }
.link-more {
    font-size: 0.85rem; font-weight: 650; color: var(--ink);
    border-bottom: 1px solid #d4d4d8; padding-bottom: 1px; white-space: nowrap;
}
.link-more:hover { color: var(--gold); border-color: var(--gold); }

.shop-panel {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06), transparent 50%),
        #fff;
    border-block: 1px solid var(--line);
}
.shop-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.shop-more {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
}
.shop-more .btn {
    min-width: 180px;
}
.shop-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    padding: 0.3rem;
    background: var(--page);
    border: 1px solid var(--line);
    border-radius: 999px;
}
.shop-tabs .tab {
    flex-shrink: 0;
    height: 38px;
    padding: 0 1.05rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 650;
    color: #52525b;
    border: 0;
    background: transparent;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.shop-tabs .tab:hover { color: var(--ink); }
.shop-tabs .tab.is-active {
    background: var(--black);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.shop-panel .p-grid { gap: 1rem; }
@media (min-width: 720px) {
    .shop-panel .p-grid { gap: 1.15rem; }
}

.product--shop {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.28s var(--ease), border-color 0.2s, box-shadow 0.28s var(--ease);
}
.product--shop:hover {
    transform: translateY(-3px);
    border-color: #d4d4d8;
    box-shadow: 0 14px 36px rgba(0,0,0,0.07);
}
.product--shop .product-hit {
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}
.product--shop .product-media {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background:
        radial-gradient(120% 80% at 50% 0%, #fafafa 0%, #f0f0f2 55%, #e8e8eb 100%);
    display: grid;
    place-items: center;
    padding: 0.85rem;
    overflow: hidden;
}
.product--shop .product-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.35s var(--ease);
}
.product--shop:hover .product-media img {
    transform: scale(1.05);
}
.product--shop .product-ph {
    width: 36%;
    color: #a1a1aa;
    opacity: 0.65;
}
.product--shop .product-body {
    padding: 0.85rem 0.95rem 0.15rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    background: #fff;
    border-top: 0;
}
.product--shop .product-brand {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.28rem;
}
.product--shop .product-body h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 650;
    letter-spacing: -0.015em;
    line-height: 1.32;
    min-height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product--shop .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.4rem;
    font-size: 0.7rem;
    color: var(--muted);
}
.product--shop .product-meta span {
    padding: 0.12rem 0.4rem;
    border-radius: 5px;
    background: var(--page);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-foot {
    margin-top: auto;
    padding: 0.55rem 0.95rem 0.9rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product--shop .price-row {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.product--shop .price {
    font-size: 1.08rem;
    line-height: 1.1;
}
.product--shop .product-actions--bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.35rem;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
}
.product--shop .product-actions--bar .wish {
    position: static;
    opacity: 1;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1px solid var(--line);
    background: #fff;
}
.product--shop .product-actions--bar .wish:hover {
    border-color: #c4c4c8;
    color: #b91c1c;
}
.product--shop .btn-add {
    height: 38px;
    border-radius: 9px;
    font-size: 0.78rem;
}
.product--shop .btn-quick {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: #52525b;
    background: #fff;
}
.product--shop .btn-quick svg { width: 16px; height: 16px; }
.product--shop .btn-quick:hover { border-color: #bbb; color: var(--ink); }
.product--shop .pill-new {
    background: var(--black);
    color: var(--gold-hi);
}
.shop-panel .shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--page);
    border: 1px dashed var(--line);
    border-radius: 16px;
}
.shop-panel .shop-empty strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.shop-panel .shop-empty p {
    color: var(--muted);
    margin: 0 0 1.25rem;
}

.product-hit { color: inherit; display: block; }
.product-actions--bar {
    display: grid; grid-template-columns: auto 1fr auto; gap: 0.35rem; align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
}
.product-actions--bar .wish {
    position: static; opacity: 1; width: 40px; height: 40px;
}
.btn-quick {
    width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--line);
    display: grid; place-items: center; color: #52525b;
}
.btn-quick:hover { border-color: #bbb; }
.btn-quick svg { width: 16px; height: 16px; }
.pill-new { background: #166534; color: #fff; }
.price-old {
    font-size: 0.82rem; color: #a1a1aa; text-decoration: line-through;
}
.stars { color: var(--gold); letter-spacing: 0.05em; font-size: 0.72rem; }

.brands {
    padding: 3rem 0;
    background: #fff;
    border-block: 1px solid var(--line);
}
.brands-head { margin-bottom: 1.35rem; }
.brands-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.brands-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.brands-head p {
    margin: 0.4rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}
.brands-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.45rem;
    scrollbar-width: thin;
}
.brands-track::-webkit-scrollbar { height: 6px; }
.brands-track::-webkit-scrollbar-thumb {
    background: #d4d4d8;
    border-radius: 999px;
}
.brand-tile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 min(70vw, 200px);
    scroll-snap-align: start;
    min-height: 72px;
    padding: 0.9rem 1rem;
    background: var(--page);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: transform 0.25s var(--ease), border-color 0.2s, box-shadow 0.25s var(--ease), background 0.2s;
}
@media (min-width: 640px) {
    .brand-tile { flex-basis: 200px; }
}
.brand-tile:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: #d4d4d8;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}
.brand-tile-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--black);
    color: var(--gold-hi);
    font-family: "Instrument Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.brand-tile-name {
    font-family: "Instrument Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: -0.015em;
    color: var(--ink);
}

/* Teslimat & güvence — adım kartları */
.trust-section {
    background:
        radial-gradient(ellipse at 10% 0%, rgba(212,175,55,0.08), transparent 42%),
        var(--page);
}
.trust-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}
@media (min-width: 700px) {
    .trust-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (min-width: 1100px) {
    .trust-steps { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}
.trust-step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 190px;
    padding: 1.35rem 1.25rem 1.4rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.28s var(--ease), border-color 0.2s, box-shadow 0.28s var(--ease);
}
.trust-step::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold-hi), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}
.trust-step:hover {
    transform: translateY(-4px);
    border-color: #d4d4d8;
    box-shadow: 0 14px 36px rgba(0,0,0,0.06);
}
.trust-step:hover::before { opacity: 1; }
.trust-step-num {
    position: absolute;
    right: 0.9rem;
    top: 0.75rem;
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: rgba(10,10,10,0.06);
    line-height: 1;
    pointer-events: none;
}
.trust-step-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: var(--gold-hi);
    margin-bottom: 0.25rem;
}
.trust-step-ico svg { width: 20px; height: 20px; }
.trust-step strong {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.trust-step > span:last-child {
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--muted);
}
.trust-step a {
    color: var(--ink);
    font-weight: 650;
    border-bottom: 1px solid rgba(212,175,55,0.55);
}
.trust-step a:hover { color: var(--gold); border-color: var(--gold); }

.newsletter {
    background: var(--page);
    color: #fff;
    padding: 0 0 2rem;
    margin: 0;
}
.nl-card {
    position: relative;
    display: grid;
    gap: 1.75rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 90% 10%, rgba(212,175,55,0.22), transparent 45%),
        linear-gradient(145deg, #1a1a1a 0%, #0c0c0c 55%, #080808 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}
@media (min-width: 860px) {
    .nl-card {
        grid-template-columns: 1.15fr 1fr;
        align-items: center;
        gap: 2.5rem;
        padding: 2.35rem 2.25rem;
    }
}
.nl-kicker {
    margin: 0 0 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-hi);
}
.nl-card h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.nl-card h2 em { font-style: normal; color: var(--gold-hi); }
.nl-lead {
    margin: 0.75rem 0 0;
    max-width: 28rem;
    color: rgba(255,255,255,0.58);
    font-size: 0.95rem;
    line-height: 1.5;
}
.nl-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}
.nl-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: stretch;
}
.nl-row input {
    flex: 1;
    min-width: 180px;
    height: 48px;
    border-radius: 11px;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0 1rem;
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
    transition: border-color 0.15s, background 0.15s;
}
.nl-row input::placeholder { color: rgba(255,255,255,0.35); }
.nl-row input:focus {
    border-color: rgba(212,175,55,0.55);
    background: rgba(255,255,255,0.09);
}
.nl-row button {
    height: 48px;
    padding: 0 1.35rem;
    border-radius: 11px;
    background: var(--gold-hi);
    color: var(--black);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.15s, transform 0.15s;
}
.nl-row button:hover {
    background: #f0d45a;
    transform: translateY(-1px);
}
.nl-note {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.45;
}
.nl-note a {
    color: rgba(255,255,255,0.72);
    border-bottom: 1px solid rgba(212,175,55,0.45);
}
.nl-note a:hover { color: var(--gold-hi); }

/* Newsletter ile footer bitişik */
main .newsletter + *,
body > .footer {
    margin-top: 0;
}
body > main {
    margin-bottom: 0;
}

.drawer, .cart {
    position: fixed; inset: 0; z-index: 60;
    pointer-events: none; visibility: hidden;
}
.drawer.is-open, .cart.is-open { pointer-events: auto; visibility: visible; }
.drawer-bg, .cart-bg {
    position: absolute; inset: 0; background: rgba(0,0,0,0.45);
    opacity: 0; transition: opacity 0.25s;
}
.drawer.is-open .drawer-bg, .cart.is-open .cart-bg { opacity: 1; }
.drawer-panel {
    position: absolute; top: 0; left: 0; width: min(320px, 88vw); height: 100%;
    background: #fff; padding: calc(1.1rem + var(--safe-t)) 1.2rem calc(1.2rem + var(--safe-b));
    transform: translateX(-100%); transition: transform 0.3s var(--ease);
    overflow-y: auto; display: flex; flex-direction: column; gap: 1.25rem;
}
.drawer.is-open .drawer-panel { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-close {
    width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--line);
    display: grid; place-items: center;
}
.drawer-panel nav { display: grid; }
.drawer-panel nav a {
    padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-weight: 550;
}
.cart { z-index: 70; }
.cart-panel {
    position: absolute; top: 0; right: 0; width: min(380px, 94vw); height: 100%;
    background: #fff; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.3s var(--ease);
}
.cart.is-open .cart-panel { transform: none; }
.cart-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: calc(1rem + var(--safe-t)) 1.15rem 1rem; border-bottom: 1px solid var(--line);
}
.cart-head h3 { margin: 0; font-size: 1.05rem; }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.15rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); font-size: 0.9rem; }
.cart-item {
    display: grid; grid-template-columns: 64px 1fr auto; gap: 0.75rem;
    padding: 0.85rem 0; border-bottom: 1px solid var(--line);
}
.cart-item .thumb {
    width: 64px; height: 64px; border-radius: 8px; background: #f0f0f1;
    display: grid; place-items: center; color: #a1a1aa;
}
.cart-item strong { display: block; font-size: 0.85rem; line-height: 1.3; margin-bottom: 0.25rem; }
.cart-item .meta { font-size: 0.78rem; color: var(--muted); }
.cart-item .line-price { font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.qty {
    display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.45rem;
    border: 1px solid var(--line); border-radius: 7px; overflow: hidden;
}
.qty button { width: 28px; height: 28px; display: grid; place-items: center; font-weight: 700; color: #52525b; }
.qty span { min-width: 1.2rem; text-align: center; font-size: 0.85rem; font-weight: 600; }
.cart-foot {
    padding: 1rem 1.15rem calc(1.15rem + var(--safe-b));
    border-top: 1px solid var(--line); display: grid; gap: 0.75rem;
}
.cart-total { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.9rem; }
.cart-total strong { font-family: "Instrument Sans", sans-serif; font-size: 1.2rem; }

.toast {
    position: fixed; left: 50%; bottom: calc(1.25rem + var(--safe-b));
    transform: translateX(-50%) translateY(120%); z-index: 80;
    background: var(--black); color: #fff; padding: 0.75rem 1.1rem;
    border-radius: 10px; font-size: 0.85rem; font-weight: 550;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25); transition: transform 0.3s var(--ease);
    max-width: calc(100% - 2rem);
}
.toast.is-show { transform: translateX(-50%) translateY(0); }

/* —— Müşteri hesabı (musteri.php) —— */
.account-page { padding-bottom: 3rem; }
.account-hero {
    background:
        radial-gradient(ellipse at 80% 0%, rgba(212,175,55,0.18), transparent 50%),
        linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
    color: #fff;
    padding: 2.75rem 0 2.4rem;
}
.account-kicker {
    margin: 0 0 0.65rem;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold-hi);
}
.account-hero h1 {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    letter-spacing: -0.035em;
    line-height: 1.1;
}
.account-lead {
    margin: 0.7rem 0 0;
    color: rgba(255,255,255,0.62);
    font-size: 0.98rem;
    max-width: 32rem;
}
.account-shell { margin-top: -1.1rem; }
.account-tabs {
    display: flex; flex-wrap: wrap; gap: 0.35rem;
    padding: 0.55rem;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.07);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(17,17,17,0.06);
    margin-bottom: 1.25rem;
}
.account-tab {
    appearance: none; border: 0; background: transparent;
    padding: 0.65rem 1rem; border-radius: 11px;
    font-size: 0.86rem; font-weight: 600; color: #52525b;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.account-tab:hover { background: #f4f4f5; color: var(--ink); }
.account-tab.is-active {
    background: var(--black); color: #fff;
}
.account-tab-out {
    margin-left: auto;
    color: #b91c1c;
}
.account-tab-out:hover { background: #fef2f2; color: #991b1b; }
.account-panels { min-height: 280px; }
.account-panel[hidden] { display: none !important; }
.account-card {
    background: #fff;
    border: 1px solid rgba(17,17,17,0.07);
    border-radius: 18px;
    padding: 1.35rem 1.4rem 1.5rem;
    box-shadow: 0 1px 2px rgba(17,17,17,0.03);
}
.account-card-head { margin-bottom: 1.15rem; }
.account-card-head.row-between {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.account-card-head h2 {
    margin: 0 0 0.3rem;
    font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em;
}
.account-card-head p {
    margin: 0; font-size: 0.86rem; color: var(--muted);
}
.account-login-card { max-width: 420px; margin-inline: auto; }
.account-form { display: grid; gap: 0.85rem; }
.af-field { display: grid; gap: 0.35rem; }
.af-field span {
    font-size: 0.75rem; font-weight: 650;
    letter-spacing: 0.04em; text-transform: uppercase; color: #71717a;
}
.af-field input,
.af-field textarea {
    width: 100%;
    border: 1px solid rgba(17,17,17,0.1);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font: inherit; font-size: 0.95rem;
    background: #fafafa;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.af-field input:focus,
.af-field textarea:focus {
    outline: none; background: #fff;
    border-color: rgba(212,175,55,0.55);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.14);
}
.af-field input:disabled {
    opacity: 0.7; cursor: not-allowed; background: #f0f0f1;
}
.af-check {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.86rem; color: #52525b; cursor: pointer;
}
.af-hint {
    margin: 0; font-size: 0.8rem; color: var(--muted); line-height: 1.45;
}
.af-hint a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.account-msg {
    margin: 0; padding: 0.7rem 0.85rem; border-radius: 10px;
    font-size: 0.86rem; font-weight: 550;
}
.account-msg.is-ok { background: #ecfdf5; color: #065f46; }
.account-msg.is-err { background: #fef2f2; color: #991b1b; }
.account-gate {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border: 1px dashed rgba(17,17,17,0.12);
    border-radius: 18px;
}
.account-gate strong { display: block; font-size: 1.05rem; margin-bottom: 0.4rem; }
.account-gate p { margin: 0 0 1.15rem; color: var(--muted); font-size: 0.92rem; }
.account-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
@media (min-width: 800px) {
    .account-stats { grid-template-columns: repeat(4, 1fr); }
}
.account-stat {
    background: #fff;
    border: 1px solid rgba(17,17,17,0.07);
    border-radius: 16px;
    padding: 1.05rem 1.1rem;
}
.account-stat-label {
    display: block; font-size: 0.72rem; font-weight: 650;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 0.35rem;
}
.account-stat strong {
    font-size: 1.55rem; letter-spacing: -0.03em;
}
.account-grid-2 {
    display: grid; gap: 1rem;
}
@media (min-width: 900px) {
    .account-grid-2 { grid-template-columns: 1fr 1fr; }
}
.account-table-wrap { overflow-x: auto; }
.account-table {
    width: 100%; border-collapse: collapse; font-size: 0.88rem;
}
.account-table th {
    text-align: left; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
    padding: 0.55rem 0.4rem; border-bottom: 1px solid var(--line);
}
.account-table td {
    padding: 0.85rem 0.4rem; border-bottom: 1px solid rgba(17,17,17,0.05);
    vertical-align: middle;
}
.muted-cell { color: var(--muted); text-align: center; padding: 1.5rem !important; }
.status-pill {
    display: inline-flex; padding: 0.2rem 0.55rem; border-radius: 999px;
    font-size: 0.72rem; font-weight: 650;
    background: #f4f4f5; color: #3f3f46;
}
.account-empty {
    text-align: center; padding: 2.25rem 1rem 1.5rem;
}
.account-empty-ico {
    width: 56px; height: 56px; margin: 0 auto 1rem;
    display: grid; place-items: center; border-radius: 16px;
    background: linear-gradient(145deg, #111, #0a0a0a);
    color: var(--gold-hi);
}
.account-empty-ico svg { width: 24px; height: 24px; }
.account-empty strong { display: block; font-size: 1.05rem; margin-bottom: 0.35rem; }
.account-empty p { margin: 0 0 1.15rem; color: var(--muted); font-size: 0.9rem; }

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