:root {
    --bg: #f7f6f2;          /* sıcak kırık beyaz */
    --bg-2: #fbfaf7;        /* hafif yüzey */
    --surface: #ffffff;     /* kartlar */
    --line: #e7e3da;        /* yumuşak hairline */
    --text: #2b2a25;        /* kömür */
    --muted: #8c877d;       /* ikincil */
    --accent: #5f7257;      /* derin adaçayı */
    --accent-2: #4c5d45;    /* hover */
    --accent-soft: #eef1ea; /* yumuşak sage zemin */
    --danger: #b5524a;
    --radius: 6px;
    --shadow: 0 10px 30px rgba(43,42,37,.08);
    --maxw: 1240px;
}

* { box-sizing: border-box; }
html { font-size: 16px; overflow-x: hidden; overflow-x: clip; }

body {
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand, .serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: .3px;
    line-height: 1.12;
    margin: 0 0 .5em;
    color: var(--text);
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
.muted { color: var(--muted); }
img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247,246,242,.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-top { text-align: center; font-size: .72rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent-2); background: var(--accent-soft); padding: 8px 12px; }
.header-main { max-width: var(--maxw); margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; gap: 28px; }
.brand { font-size: 1.95rem; letter-spacing: 6px; color: var(--text); margin: 0; font-weight: 600; }
.brand:hover { color: var(--accent); }
.main-nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.main-nav a { font-size: .8rem; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text); position: relative; padding: 4px 0; font-weight: 500; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px; background: var(--accent); transition: width .28s ease; }
.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.action-link { font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.cart-link { font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.cart-badge { background: var(--accent); color: #fff; border-radius: 999px; min-width: 20px; height: 20px; display: inline-grid; place-items: center; font-size: .72rem; font-weight: 600; padding: 0 5px; }
.cart-badge.empty { background: #e4e0d6; color: var(--muted); }
.link-btn { background: none; border: none; color: var(--text); cursor: pointer; font: inherit; font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; padding: 0; font-weight: 500; }
.link-btn:hover { color: var(--accent); }
.inline-form { display: inline; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.3rem; cursor: pointer; }
.search-form { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); overflow: hidden; }
.search-form input { border: none; background: none; padding: 8px 14px; font: inherit; font-size: .85rem; color: var(--text); width: 150px; outline: none; }
.search-form button { border: none; background: none; cursor: pointer; padding: 8px 12px 8px 4px; color: var(--muted); font-size: 1.1rem; }
.search-form:focus-within { border-color: var(--accent); }
.search-form:focus-within button { color: var(--accent); }
.account-bar { display: flex; align-items: center; gap: 18px; }
.search-in-nav, .nav-account, .nav-close { display: none; }
.nav-overlay { position: fixed; inset: 0; background: rgba(30,32,28,.42); opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 45; }
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

/* ---------- Layout helpers ---------- */
main { min-height: 60vh; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 24px; max-width: var(--maxw); margin: 0 auto; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 32px; }
.section-head h2 { font-size: 2.2rem; }
.eyebrow { font-size: .72rem; letter-spacing: 2.6px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; border: 1px solid var(--accent); background: var(--accent); color: #fff; padding: 14px 32px; font-size: .78rem; letter-spacing: 1.6px; text-transform: uppercase; cursor: pointer; transition: all .2s ease; border-radius: var(--radius); font-family: inherit; font-weight: 500; }
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 72vh; display: grid; place-items: center; text-align: center; padding: 90px 24px; background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 70%); border-bottom: 1px solid var(--line); }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); margin: 12px 0 20px; }
.hero p { max-width: 540px; margin: 0 auto 32px; color: var(--muted); font-size: 1.08rem; }

/* Split hero (metin + görsel) */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; border-bottom: 1px solid var(--line); }
.hero-split .hero-text { display: flex; flex-direction: column; justify-content: center; padding: 60px clamp(28px, 6vw, 96px); background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg) 80%); }
.hero-split .hero-text h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); margin: 12px 0 18px; }
.hero-split .hero-text p { color: var(--muted); max-width: 440px; margin-bottom: 30px; font-size: 1.06rem; }
.hero-split .hero-text .btn { align-self: flex-start; }
.hero-split .hero-image { position: relative; overflow: hidden; background: var(--bg-2); }
.hero-split .hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Category strip ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.cat-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); display: flex; align-items: end; box-shadow: var(--shadow); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(30,32,28,.66) 100%); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-label { position: relative; z-index: 1; padding: 24px; width: 100%; }
.cat-card h3 { font-size: 1.7rem; margin: 0; color: #fff; }
.cat-card span { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.85); }

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 36px 24px; }
.product-card { display: block; }
.product-card .thumb { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 15px; transition: box-shadow .25s ease, transform .25s ease; }
.badge-new { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--accent); color: #fff; font-size: .64rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; font-weight: 600; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .thumb { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .p-name { font-size: 1.02rem; font-weight: 500; margin: 0 0 4px; font-family: 'Inter', sans-serif; color: var(--text); }
.product-card .p-price { color: var(--text); font-size: .95rem; letter-spacing: .3px; }
.product-card .p-cat { font-size: .7rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; font-weight: 600; }

/* ---------- Product detail ---------- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px 24px; max-width: var(--maxw); margin: 0 auto; }
.pd-image { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-2); aspect-ratio: 3/4; box-shadow: var(--shadow); }
.pd-image img { width: 100%; height: 100%; object-fit: cover; }
.pd-info h1 { font-size: 2.8rem; }
.pd-price { color: var(--accent-2); font-size: 1.7rem; margin: 14px 0 24px; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.pd-desc { color: var(--muted); margin-bottom: 30px; }
.pd-meta { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 20px; font-size: .85rem; color: var(--muted); }
.pd-meta div { margin-bottom: 4px; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.qty-input { width: 74px; background: var(--surface); border: 1px solid var(--line); color: var(--text); padding: 12px; border-radius: var(--radius); font: inherit; text-align: center; }
.qty-input:focus { outline: none; border-color: var(--accent); }

/* ---------- Forms ---------- */
.form-card { max-width: 440px; margin: 64px auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.form-card h1 { font-size: 2.1rem; text-align: center; margin-bottom: 6px; }
.form-card .sub { text-align: center; color: var(--muted); margin-bottom: 30px; font-size: .92rem; }
.field { margin-bottom: 17px; }
.field label { display: block; font-size: .76rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input { width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--text); padding: 13px 14px; border-radius: var(--radius); font: inherit; }
.field input:focus { outline: none; border-color: var(--accent); background: #fff; }
.form-foot { text-align: center; margin-top: 20px; font-size: .9rem; color: var(--muted); }
.alert { padding: 13px 16px; border-radius: var(--radius); margin-bottom: 20px; font-size: .9rem; }
.alert-error { background: #fbeceb; border: 1px solid var(--danger); color: #9a3f38; }
.alert-ok { background: var(--accent-soft); border: 1px solid var(--accent); color: var(--accent-2); }

/* ---------- Cart / table ---------- */
.cart-wrap { max-width: 920px; margin: 52px auto; padding: 0 24px; }
.cart-row { display: grid; grid-template-columns: 84px 1fr auto auto auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-row img { width: 84px; height: 110px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.cart-row .ci-name { font-size: 1.05rem; font-weight: 500; }
.cart-summary { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.cart-total { font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; }
.cart-total b { color: var(--accent-2); }
.empty-state { text-align: center; padding: 90px 24px; color: var(--muted); }
.empty-state h2 { color: var(--text); font-size: 2rem; }

/* ---------- Orders ---------- */
.order-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 18px; background: var(--surface); box-shadow: var(--shadow); }
.order-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 14px; }
.badge { font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: var(--accent-soft); border: 1px solid var(--accent); color: var(--accent-2); font-weight: 600; }
.badge.cancelled { background: #fbeceb; border-color: var(--danger); color: #9a3f38; }

.page-head { text-align: center; padding: 64px 24px 12px; }
.page-head h1 { font-size: 2.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--accent-soft); border-top: 1px solid var(--line); margin-top: 40px; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { font-size: 1.05rem; letter-spacing: .5px; margin-bottom: 14px; }
.footer-grid a { display: block; color: var(--muted); font-size: .9rem; padding: 4px 0; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand { font-size: 1.7rem; letter-spacing: 5px; margin-bottom: 10px; }
.footer-bottom { text-align: center; padding: 20px; border-top: 1px solid var(--line); font-size: .82rem; }

/* ---------- Variant chips ---------- */
.variant-group { margin-bottom: 20px; }
.variant-label { display: block; font-size: .76rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.chips { display: flex; gap: 9px; flex-wrap: wrap; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { display: inline-block; padding: 9px 17px; border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; transition: all .18s ease; background: var(--surface); }
.chip span:hover { border-color: var(--accent); }
.chip input:checked + span { border-color: var(--accent); background: var(--accent); color: #fff; }

/* ---------- Mini cart drawer ---------- */
.mc-overlay { position: fixed; inset: 0; background: rgba(30,32,28,.42); opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 60; }
body.mc-open .mc-overlay { opacity: 1; visibility: visible; }
.mini-cart { position: fixed; top: 0; right: 0; height: 100%; width: 390px; max-width: 90vw; background: #fff; border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: 61; display: flex; flex-direction: column; box-shadow: -16px 0 50px rgba(0,0,0,.14); }
body.mc-open .mini-cart { transform: translateX(0); }
.mc-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.mc-head span { font-weight: 600; color: var(--accent-2); letter-spacing: .4px; }
.mc-items { flex: 1; overflow-y: auto; padding: 6px 24px; }
.mc-item { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); animation: mcIn .3s ease; }
.mc-item img { width: 60px; height: 78px; object-fit: cover; border-radius: 4px; border: 1px solid var(--line); }
.mc-item-name { font-weight: 500; font-size: .95rem; }
.mc-item-variant { font-size: .78rem; color: var(--accent); margin: 3px 0; }
.mc-item-meta { font-size: .85rem; color: var(--muted); }
.mc-foot { padding: 20px 24px; border-top: 1px solid var(--line); background: var(--bg-2); }
.mc-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; }
.mc-total-row b { color: var(--accent-2); }
@keyframes mcIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Admin shell (dashboard) ---------- */
.admin-body { background: var(--bg); }
.admin-shell { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }

.admin-sidebar { background: #1d211c; color: #cfd2cb; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; }
.as-brand { padding: 26px 24px 22px; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; letter-spacing: 5px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.as-brand span { display: block; font-family: 'Inter', sans-serif; font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold, #b9c4ad); opacity: .65; margin-top: 4px; }
.as-nav { padding: 16px 12px; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.as-nav a { display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: 8px; font-size: .9rem; color: #b6bbb1; transition: all .18s ease; }
.as-nav a::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .45; }
.as-nav a:hover { background: rgba(255,255,255,.05); color: #fff; }
.as-nav a.on { background: var(--accent); color: #fff; }
.as-nav a.on::before { opacity: 1; }
.as-foot { padding: 14px 16px 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: 10px; }
.as-foot a { font-size: .82rem; color: #9aa093; }
.as-foot a:hover { color: #fff; }
.as-logout { background: none; border: 1px solid rgba(255,255,255,.18); color: #cfd2cb; padding: 9px; border-radius: 8px; cursor: pointer; font: inherit; font-size: .82rem; transition: all .18s ease; }
.as-logout:hover { border-color: var(--danger); color: var(--danger); }

.admin-main { display: flex; flex-direction: column; min-width: 0; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; padding: 20px 32px; background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5; }
.admin-topbar h1 { font-size: 1.5rem; margin: 0; }
.at-user { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.at-user::before { content: ""; width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent); }
.admin-content { padding: 32px; max-width: 1080px; width: 100%; }
.admin-intro { color: var(--muted); margin: -8px 0 26px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 30px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px 24px; box-shadow: var(--shadow); border-left: 3px solid var(--accent); }
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--text); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.admin-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.admin-section-title { font-size: 1.15rem; margin: 4px 0 16px; }

.admin-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.admin-table th { text-align: left; font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); padding: 14px 16px; background: var(--bg-2); border-bottom: 1px solid var(--line); font-weight: 600; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .92rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr { transition: background .15s ease; }
.admin-table tbody tr:hover { background: var(--accent-soft); }
.admin-thumb { width: 44px; height: 56px; object-fit: cover; border-radius: 5px; border: 1px solid var(--line); }
.admin-row-actions { display: flex; gap: 14px; align-items: center; }
.admin-row-actions a { color: var(--accent); font-size: .85rem; }
.link-btn.danger { color: var(--danger); }
.pill { display: inline-block; font-size: .68rem; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.pill.on { background: var(--accent-soft); color: var(--accent-2); }
.pill.off { background: #f0eee9; color: var(--muted); }

.admin-form-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; align-items: start; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 26px; box-shadow: var(--shadow); }
.admin-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.admin-card .field { margin-bottom: 15px; }
.admin-card label { display: block; font-size: .74rem; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.admin-card input, .admin-card textarea, .admin-card select { width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--text); padding: 11px 13px; border-radius: 7px; font: inherit; }
.admin-card input:focus, .admin-card textarea:focus, .admin-card select:focus { outline: none; border-color: var(--accent); background: #fff; }
.admin-card .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-card .checkbox { display: flex; align-items: center; gap: 10px; margin: 6px 0 18px; text-transform: none; letter-spacing: 0; color: var(--text); font-size: .92rem; }
.admin-card .checkbox input { width: auto; }
.admin-image-preview { aspect-ratio: 4/5; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-bottom: 16px; background: var(--bg-2); }
.admin-image-preview img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
    .pd { grid-template-columns: 1fr; gap: 28px; }
    .hero-split { grid-template-columns: 1fr; min-height: auto; }
    .hero-split .hero-image { order: -1; min-height: 54vh; }
    .hero-split .hero-text { padding: 44px 28px; text-align: center; align-items: center; }
    .hero-split .hero-text .btn { align-self: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .main-nav { position: fixed; inset: 0 0 0 auto; width: 82%; max-width: 340px; background: var(--surface); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 64px 28px 28px; transform: translateX(100%); transition: transform .3s ease; border-left: 1px solid var(--line); box-shadow: var(--shadow); z-index: 55; overflow-y: auto; gap: 16px; }
    body.nav-open .main-nav { transform: translateX(0); }
    .main-nav > a { font-size: 1rem; }
    .nav-toggle { display: block; order: -1; }
    .header-main { gap: 12px; }
    .brand { font-size: 1.45rem; flex: 1; }
    .search-bar, .account-bar { display: none; }
    .search-in-nav { display: flex; width: 100%; margin-top: 4px; }
    .search-in-nav input { width: 100%; }
    .nav-account { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 8px; padding-top: 18px; border-top: 1px solid var(--line); width: 100%; }
    .nav-account a, .nav-account .link-btn { font-size: .98rem; letter-spacing: .3px; text-transform: none; }
    .nav-close { display: block; position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 1.4rem; color: var(--text); cursor: pointer; line-height: 1; }
    .section-head h2 { font-size: 1.7rem; }
    .cart-row { grid-template-columns: 64px 1fr auto; }
    .cart-row img { width: 64px; height: 84px; }
    .admin-form-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .admin-card .row-2 { grid-template-columns: 1fr; }
    .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; height: auto; flex-direction: row; align-items: center; flex-wrap: wrap; }
    .as-brand { border-bottom: none; padding: 16px 18px; font-size: 1.3rem; }
    .as-nav { flex-direction: row; flex-wrap: wrap; flex: 1; padding: 10px; }
    .as-nav a::before { display: none; }
    .as-foot { flex-direction: row; border-top: none; padding: 10px 18px; }
    .admin-content { padding: 20px; }
    .admin-topbar { padding: 16px 20px; }
}
