:root {
    --bg: #0c0a0c;
    --surface: #151116;
    --surface-2: #1f1820;
    --text: #f8f2f7;
    --muted: #d2bcc8;
    --gold: #d4af6a;
    --gold-2: #b7893f;
    --rose: #d985a2;
    --rose-2: #f3d2de;
    --border: rgba(255,255,255,.09);
    --success: #3dbb84;
    --danger: #d95c78;
    --shadow: 0 24px 60px rgba(0,0,0,.28);
    --radius: 20px;
    --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(212,175,106,.14), transparent 32%),
        radial-gradient(circle at top right, rgba(217,133,162,.12), transparent 24%),
        linear-gradient(180deg, #100c10 0%, #0b090c 100%);
    min-height: 100vh;
}
body.cart-open {
    overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select {
    font: inherit;
}
.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}
.section {
    padding: 28px 0 12px;
}
.section-light {
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 20px;
}
.topbar {
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.025);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    color: var(--muted);
    font-size: .77rem;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(12,10,12,.82);
    border-bottom: 1px solid var(--border);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: .08em;
    color: #20140a;
    background: linear-gradient(135deg, #f6deb1, var(--gold));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 10px 30px rgba(212,175,106,.28);
}
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .22em; font-size: .7rem; margin-top: 2px; }
.site-nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    background: rgba(20,16,22,.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-link {
    display: none;
    color: var(--muted);
}
.site-nav.open { display: flex; }
.site-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--muted);
    transition: .2s ease;
}
.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
    background: rgba(212,175,106,.12);
}
.mobile-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--text);
    border-radius: 12px;
}
.cart-link {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212,175,106,.35);
    background: linear-gradient(180deg, rgba(212,175,106,.16), rgba(255,255,255,.02));
}
.cart-badge {
    position: absolute;
    right: -5px;
    top: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), #ffb1c6);
    color: #250d18;
    font-size: .74rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid #120d12;
}
.menu-categories-bar {
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.02);
}
.menu-categories-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}
.menu-category-pill {
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    color: var(--muted);
}
.menu-category-pill:hover {
    color: #20140a;
    background: linear-gradient(135deg, #f0d49a, var(--gold));
}
.hero-slider {
    padding: 22px 0 10px;
}
.editorial-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
.editorial-card {
    min-height: 220px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
}
.editorial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.68));
}
.editorial-content {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 1;
    display: grid;
    gap: 8px;
}
.editorial-content strong {
    font-size: 1.35rem;
}
.editorial-content span:last-child {
    color: var(--rose-2);
}
.hero-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.hero-card {
    position: relative;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    background-color: #191219;
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.08);
}
.hero-card-main { min-height: 420px; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,7,11,.72), rgba(10,7,11,.36) 45%, rgba(212,175,106,.12));
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 540px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}
.hero-content h1,
.section-heading h1,
.section-heading h2,
.product-layout h1 {
    margin: 0 0 12px;
    line-height: 1.08;
}
.hero-content h1 { font-size: clamp(2rem, 7vw, 3.9rem); }
.hero-content p,
.section-heading p,
.product-card p,
.lead,
.desc-box,
.meta-grid,
.category-card-content small {
    color: var(--muted);
}
.section-heading {
    margin-bottom: 18px;
}
.section-heading h1,
.section-heading h2 { font-size: clamp(1.6rem, 4.2vw, 2.5rem); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    padding: 12px 18px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    color: #1f1307;
    background: linear-gradient(135deg, #f0d49a, var(--gold));
}
.btn-secondary {
    color: var(--text);
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
}
.btn-danger {
    color: #fff;
    background: linear-gradient(135deg, #d55e78, #a93154);
}
.flash {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
}
.flash.success { background: rgba(61,187,132,.12); color: #c8f0df; }
.flash.error { background: rgba(217,92,120,.12); color: #ffd8e1; }
.category-grid,
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.category-card,
.product-card {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.category-card {
    min-height: 240px;
    position: relative;
    background-color: #1a151b;
    background-size: cover;
    background-position: center;
}
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.64));
}
.category-card-content {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.category-card-content strong { font-size: 1.2rem; }
.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #140f15;
}
.product-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}
.product-card h3 { margin: 0; font-size: 1.08rem; }
.product-actions,
.price-stack {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.price-stack strong,
.product-actions strong {
    font-size: 1.15rem;
    color: #f8e1a6;
}
.old-price {
    text-decoration: line-through;
    color: rgba(255,255,255,.55);
}
.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    color: var(--muted);
}
.chip.active,
.chip:hover {
    color: #221508;
    background: linear-gradient(135deg, #f0d49a, var(--gold));
}
.product-layout {
    display: grid;
    gap: 22px;
    align-items: start;
}
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #171118;
}
.thumbs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.thumbs img {
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--border);
}
.meta-grid {
    display: grid;
    gap: 10px;
    margin: 16px 0;
    grid-template-columns: 1fr;
}
.meta-grid span,
.desc-box,
.cart-box,
.cart-summary {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}
.buy-form {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: end;
}
.buy-form label {
    display: grid;
    gap: 8px;
}
.buy-form input,
.cart-box input,
.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
}
.cart-layout {
    display: grid;
    gap: 18px;
}
.cart-box,
.cart-list,
.summary-box,
.empty-box {
    display: grid;
    gap: 14px;
}
.cart-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.cart-item:last-child { border-bottom: 0; padding-bottom: 0; }
.cart-item img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 14px;
}
.cart-summary strong,
.summary-box strong { font-size: 1.25rem; }
.summary-box,
.empty-box {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
}
.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
}
.summary-row.total {
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--text);
}
.btn-link {
    background: transparent;
    color: var(--rose-2);
    padding: 0;
}
.site-footer {
    margin-top: 34px;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,.02);
}
.footer-grid {
    display: grid;
    gap: 16px;
    padding: 28px 0 40px;
}
.footer-grid div {
    display: grid;
    gap: 8px;
}
.footer-grid h3,
.footer-grid strong { margin: 0; }
.empty-state {
    padding: 24px;
    border-radius: 20px;
    border: 1px dashed rgba(212,175,106,.35);
    color: var(--muted);
    background: rgba(255,255,255,.025);
}
.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
    z-index: 45;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100vh;
    background: linear-gradient(180deg, #130f14, #1a141b);
    border-left: 1px solid var(--border);
    box-shadow: -18px 0 50px rgba(0,0,0,.28);
    transform: translateX(100%);
    transition: .22s ease;
    z-index: 50;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
body.cart-open .cart-drawer-backdrop {
    opacity: 1;
    visibility: visible;
}
body.cart-open .cart-drawer {
    transform: translateX(0);
}
.cart-drawer-head,
.cart-drawer-footer {
    padding: 18px;
    border-bottom: 1px solid var(--border);
}
.cart-drawer-footer {
    border-bottom: 0;
    border-top: 1px solid var(--border);
}
.cart-drawer-body {
    overflow-y: auto;
    padding: 18px;
}
.drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--text);
    font-size: 1.5rem;
}
.drawer-item {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.drawer-item img {
    width: 78px;
    height: 92px;
    object-fit: cover;
    border-radius: 14px;
}
.drawer-item div {
    display: grid;
    gap: 4px;
}
.drawer-item span,
.drawer-item small,
.drawer-empty {
    color: var(--muted);
}
.drawer-item em,
.drawer-total strong {
    color: #f5dc9f;
    font-style: normal;
    font-weight: 700;
}
.drawer-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
}
@media (min-width: 768px) {
    .site-nav {
        position: static;
        inset: auto;
        display: flex;
        flex-direction: row;
        background: transparent;
        padding: 0;
        border: 0;
        box-shadow: none;
        align-items: center;
        gap: 2px;
    }
    .header-link { display: inline-flex; }
    .mobile-toggle { display: none; }
    .hero-track {
        grid-template-columns: 1.45fr .95fr;
    }
    .hero-track .hero-card:not(.hero-card-main) {
        min-height: 202px;
    }
    .editorial-grid { grid-template-columns: repeat(3, 1fr); }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .meta-grid { grid-template-columns: repeat(3, 1fr); }
    .product-layout { grid-template-columns: 1.02fr .98fr; }
    .cart-layout { grid-template-columns: 1.3fr .7fr; }
    .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
}
@media (min-width: 1080px) {
    .nav-wrap { gap: 24px; }
    .product-grid { grid-template-columns: repeat(4, 1fr); }
    .section { padding-top: 36px; }
}
@media (max-width: 767px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    color: var(--text);
    cursor: pointer;
}
.theme-toggle-label {
    font-size: .82rem;
    font-weight: 600;
}
.drawer-subtitle {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .92rem;
}
.hero-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}
.hero-slides {
    position: relative;
    min-height: 540px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease;
    min-height: 540px;
    border-radius: 30px;
    overflow: hidden;
    background-color: #191219;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255,255,255,.08);
}
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,10,12,.70), rgba(12,10,12,.12));
}
.hero-content {
    max-width: 620px;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}
.hero-controls {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}
.hero-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(10,7,11,.28);
    backdrop-filter: blur(10px);
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.45);
    cursor: pointer;
}
.hero-dot.is-active {
    width: 28px;
    background: linear-gradient(135deg, #f0d49a, var(--gold));
}
body[data-theme="light"] {
    color: #2d2417;
    background:
        radial-gradient(circle at top left, rgba(212,175,106,.18), transparent 26%),
        linear-gradient(180deg, #fffdfa 0%, #f7f1e8 100%);
}
body[data-theme="light"] .topbar,
body[data-theme="light"] .menu-categories-bar,
body[data-theme="light"] .site-footer {
    background: rgba(255,255,255,.88);
}
body[data-theme="light"] .site-header {
    background: rgba(255,252,247,.92);
}
body[data-theme="light"] .site-nav {
    background: rgba(255,255,255,.98);
}
body[data-theme="light"] .site-nav a,
body[data-theme="light"] .header-link,
body[data-theme="light"] .menu-category-pill,
body[data-theme="light"] .topbar-inner,
body[data-theme="light"] .brand small,
body[data-theme="light"] .hero-content p,
body[data-theme="light"] .section-heading p,
body[data-theme="light"] .product-card p,
body[data-theme="light"] .lead,
body[data-theme="light"] .desc-box,
body[data-theme="light"] .meta-grid,
body[data-theme="light"] .category-card-content small,
body[data-theme="light"] .drawer-subtitle,
body[data-theme="light"] .drawer-item span,
body[data-theme="light"] .drawer-item small,
body[data-theme="light"] .drawer-empty,
body[data-theme="light"] .summary-row {
    color: #7a6a52;
}
body[data-theme="light"] .site-nav a:hover,
body[data-theme="light"] .site-nav a.active,
body[data-theme="light"] .menu-category-pill:hover,
body[data-theme="light"] .chip.active,
body[data-theme="light"] .chip:hover {
    color: #3b2d16;
}
body[data-theme="light"] .category-card,
body[data-theme="light"] .product-card,
body[data-theme="light"] .meta-grid span,
body[data-theme="light"] .desc-box,
body[data-theme="light"] .cart-box,
body[data-theme="light"] .cart-summary,
body[data-theme="light"] .summary-box,
body[data-theme="light"] .empty-box,
body[data-theme="light"] .theme-toggle,
body[data-theme="light"] .cart-drawer,
body[data-theme="light"] .hero-dots,
body[data-theme="light"] .flash,
body[data-theme="light"] .editorial-card,
body[data-theme="light"] .site-nav,
body[data-theme="light"] .menu-category-pill,
body[data-theme="light"] .mobile-toggle,
body[data-theme="light"] .drawer-close,
body[data-theme="light"] .buy-form input,
body[data-theme="light"] .cart-box input,
body[data-theme="light"] .admin-form input,
body[data-theme="light"] .admin-form textarea,
body[data-theme="light"] .admin-form select {
    background: rgba(255,255,255,.82);
    color: #2d2417;
}
body[data-theme="light"] .category-card,
body[data-theme="light"] .product-card,
body[data-theme="light"] .meta-grid span,
body[data-theme="light"] .desc-box,
body[data-theme="light"] .cart-box,
body[data-theme="light"] .cart-summary,
body[data-theme="light"] .summary-box,
body[data-theme="light"] .empty-box,
body[data-theme="light"] .theme-toggle,
body[data-theme="light"] .cart-drawer,
body[data-theme="light"] .flash,
body[data-theme="light"] .editorial-card,
body[data-theme="light"] .site-nav,
body[data-theme="light"] .menu-category-pill,
body[data-theme="light"] .mobile-toggle,
body[data-theme="light"] .drawer-close,
body[data-theme="light"] .buy-form input,
body[data-theme="light"] .cart-box input,
body[data-theme="light"] .admin-form input,
body[data-theme="light"] .admin-form textarea,
body[data-theme="light"] .admin-form select,
body[data-theme="light"] .cart-item,
body[data-theme="light"] .drawer-item,
body[data-theme="light"] .summary-row.total,
body[data-theme="light"] .cart-drawer-head,
body[data-theme="light"] .cart-drawer-footer {
    border-color: rgba(122,106,82,.16);
}
body[data-theme="light"] .section-light {
    background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(247,241,232,.88));
}
body[data-theme="light"] .cart-link {
    background: linear-gradient(180deg, rgba(212,175,106,.24), rgba(255,255,255,.85));
}
body[data-theme="light"] .cart-badge {
    border-color: #fffdfa;
}
body[data-theme="light"] .old-price {
    color: rgba(45,36,23,.45);
}
body[data-theme="light"] .price-stack strong,
body[data-theme="light"] .product-actions strong,
body[data-theme="light"] .drawer-item em,
body[data-theme="light"] .drawer-total strong,
body[data-theme="light"] .eyebrow {
    color: #9d7331;
}
body[data-theme="light"] .hero-slide::after,
body[data-theme="light"] .editorial-overlay,
body[data-theme="light"] .category-card-overlay {
    background: linear-gradient(180deg, rgba(43,32,18,.06), rgba(43,32,18,.55));
}
body[data-theme="light"] .hero-content,
body[data-theme="light"] .hero-content h1,
body[data-theme="light"] .editorial-content,
body[data-theme="light"] .editorial-content strong,
body[data-theme="light"] .category-card-content,
body[data-theme="light"] .category-card-content strong {
    color: #fffdfa;
}
body[data-theme="light"] .cart-drawer-backdrop {
    background: rgba(45,36,23,.2);
}
@media (max-width: 767px) {
    .theme-toggle-label {
        display: none;
    }
    .hero-slides,
    .hero-slide {
        min-height: 430px;
    }
    .hero-controls {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    .hero-arrow {
        width: 42px;
        height: 42px;
    }
}

.form-section {
    padding-top: 34px;
}
.card-surface {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
}
.form-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}
.form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.checkout-form label,
.customer-summary,
.checkout-column {
    display: grid;
    gap: 8px;
}
.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 16px;
}
.checkout-layout {
    display: grid;
    gap: 18px;
}
.checkout-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.checkout-block-head a,
.customer-summary span,
.payment-option small,
.integration-alert,
.footer-clean p,
.footer-meta {
    color: var(--muted);
}
.checkout-items {
    display: grid;
    gap: 14px;
}
.checkout-item {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.checkout-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.checkout-item img {
    width: 76px;
    height: 88px;
    object-fit: cover;
    border-radius: 14px;
}
.payment-option {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    margin-bottom: 12px;
}
.payment-option.disabled {
    opacity: .55;
}
.integration-alert {
    padding: 14px 16px;
    border: 1px dashed rgba(217,92,120,.35);
    border-radius: 14px;
    background: rgba(217,92,120,.08);
}
.status-card {
    display: grid;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}
.status-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.status-grid div {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
}
.footer-clean {
    display: grid;
    gap: 16px;
    padding: 24px 0 34px;
}
.footer-clean h3,
.footer-clean p {
    margin: 0;
}
.footer-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.social-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
}
.social-link svg {
    width: 20px;
    height: 20px;
}
.drawer-footer-actions {
    display: grid;
    gap: 10px;
}
@media (min-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
    }
    .footer-clean {
        grid-template-columns: 1.2fr .9fr auto;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .form-grid-2,
    .form-grid-3,
    .form-grid-4,
    .status-grid {
        grid-template-columns: 1fr;
    }
    .checkout-item {
        grid-template-columns: 64px 1fr;
    }
    .checkout-item > strong {
        grid-column: 2;
    }
}
body[data-theme="light"] .card-surface,
body[data-theme="light"] .payment-option,
body[data-theme="light"] .status-grid div,
body[data-theme="light"] .social-link {
    background: rgba(255,255,255,.88);
    color: #2d2417;
}
body[data-theme="light"] .checkout-block-head a,
body[data-theme="light"] .customer-summary span,
body[data-theme="light"] .payment-option small,
body[data-theme="light"] .integration-alert,
body[data-theme="light"] .footer-clean p,
body[data-theme="light"] .footer-meta {
    color: #7a6a52;
}

.inline-form {
    display: inline-flex;
    margin: 0;
}
.header-action-btn {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    color: var(--text);
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
}
.account-shell {
    width: min(760px, 100%);
    margin: 0 auto;
}
.account-shell-small {
    width: min(540px, 100%);
}
.account-hero {
    max-width: 760px;
}
.account-card,
.order-card,
.status-card,
.checkout-form {
    display: grid;
    gap: 18px;
}
.account-summary-grid,
.order-meta-grid,
.timeline-grid {
    display: grid;
    gap: 14px;
}
.account-summary-grid {
    margin-bottom: 18px;
}
.order-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.order-card-head h2 {
    margin: 4px 0 8px;
}
.order-card-actions {
    display: grid;
    gap: 10px;
    justify-items: end;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid var(--border);
}
.status-warning {
    background: rgba(212,175,106,.14);
    color: #f0d49a;
}
.status-info {
    background: rgba(73,161,255,.16);
    color: #d2e8ff;
}
.status-success {
    background: rgba(61,187,132,.14);
    color: #d8f5e9;
}
.status-danger {
    background: rgba(217,92,120,.16);
    color: #ffd8e1;
}
.timeline-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.timeline-step {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    color: var(--muted);
}
.timeline-step.is-done {
    border-color: rgba(212,175,106,.35);
    color: var(--text);
}
.timeline-step.is-current {
    background: linear-gradient(135deg, rgba(212,175,106,.18), rgba(217,133,162,.12));
}
.order-meta-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.order-meta-grid div,
.status-grid div {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    display: grid;
    gap: 6px;
}
.order-items-list {
    display: grid;
    gap: 12px;
}
.order-item-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
}
.order-item-row img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 14px;
}
.account-orders {
    display: grid;
    gap: 18px;
}
.status-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.compact .order-item-row,
.order-items-list.compact .order-item-row {
    grid-template-columns: 1fr auto;
}
body[data-theme="light"] .header-action-btn {
    color: #3b2d16;
    background: rgba(255,255,255,.88);
}
body[data-theme="light"] .status-pill,
body[data-theme="light"] .timeline-step,
body[data-theme="light"] .order-meta-grid div,
body[data-theme="light"] .status-grid div,
body[data-theme="light"] .order-item-row {
    background: rgba(255,255,255,.9);
}
@media (min-width: 768px) {
    .account-summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .order-item-row {
        grid-template-columns: 1fr;
        justify-items: start;
    }
    .order-card-actions {
        justify-items: start;
    }
}
