:root {
    --bg: #0c0e12;
    --panel: #15181e;
    --panel-soft: rgba(21, 24, 30, .72);
    --line: rgba(39, 44, 53, .65);
    --text: #e7ebef;
    --muted: #7b899d;
    --cyan: #00d4ff;
    --cyan-soft: rgba(0, 212, 255, .16);
    --danger: #ff5a78;
    --radius: 12px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% -10%, rgba(0, 212, 255, .16), transparent 32rem),
        linear-gradient(180deg, #0c0e12 0%, #10131a 52%, #0c0e12 100%);
    color: var(--text);
    font-family: Inter, system-ui, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(25, 29, 36, .82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.brand img,
.footer-brand img {
    width: 42px;
    height: 42px;
}

.brand span,
h1,
h2,
h3 {
    font-family: Orbitron, Inter, sans-serif;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn,
.cart-link,
.nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: background .2s ease;
}

.icon-btn:hover,
.cart-link:hover,
.nav-toggle:hover {
    background: var(--panel);
}

.icon-btn svg,
.cart-link svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.cart-link {
    position: relative;
}

.cart-link span {
    position: absolute;
    top: 3px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 99px;
    background: var(--cyan);
    color: var(--bg);
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.nav-toggle {
    display: none;
    align-content: center;
    gap: 3px;
    padding: 0;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.flash {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 14px 16px;
    border: 1px solid rgba(0, 212, 255, .35);
    border-radius: var(--radius);
    background: var(--cyan-soft);
    color: var(--text);
}

.site-flash {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    width: min(420px, calc(100% - 32px));
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-color: rgba(0, 212, 255, .62);
    background: rgba(9, 13, 19, .97);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35), 0 0 24px rgba(0, 212, 255, .16);
}

.site-flash a {
    flex: 0 0 auto;
    color: var(--cyan);
    font-weight: 900;
    text-decoration: none;
}

.hero {
    min-height: calc(100vh - 140px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    align-items: center;
    gap: 48px;
    padding: 72px 0 46px;
}

.language-pills {
    display: inline-flex;
    overflow: hidden;
    border-radius: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.language-pills a,
.language-pills button {
    border: 0;
    padding: 7px 12px;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.language-pills .selected {
    background: var(--cyan);
    color: var(--bg);
}

.nav-language {
    flex: 0 0 auto;
}

.nav-language a {
    padding: 6px 9px;
}

.eyebrow {
    margin: 22px 0 0;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1 {
    margin: 20px 0 0;
    font-size: clamp(44px, 7vw, 74px);
    line-height: .95;
}

h2 {
    margin: 0 0 28px;
    font-size: clamp(28px, 4vw, 42px);
}

.hero-text {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 26px;
    border-radius: 10px;
    border: 1px solid var(--line);
    font-family: Orbitron, Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 212, 255, .55);
}

.btn.primary {
    border-color: transparent;
    background: var(--cyan);
    color: var(--bg);
}

.btn.danger {
    border-color: transparent;
    background: var(--danger);
    color: #ffffff;
}

.btn.ghost {
    background: transparent;
    color: var(--text);
}

.btn.small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
}

.hero-logo {
    position: relative;
    display: grid;
    place-items: center;
    min-height: min(500px, 78vw);
}

.hero-logo::before,
.about-logo::before {
    content: "";
    position: absolute;
    width: min(430px, 82vw);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, .18);
    box-shadow: 0 0 70px rgba(0, 212, 255, .2), inset 0 0 80px rgba(0, 212, 255, .06);
}

.hero-logo img {
    position: relative;
    width: min(430px, 78vw);
    filter: drop-shadow(0 0 36px rgba(0, 212, 255, .24));
}

.print-logo {
    --print-clip: 100%;
    --print-y: 0%;
    --print-glow: 0;
    --print-opacity: .28;
    --print-head-opacity: .12;
    isolation: isolate;
    overflow: hidden;
}

.print-logo img {
    clip-path: inset(var(--print-clip) 0 0 0);
    opacity: var(--print-opacity);
    transition: filter .2s ease;
    z-index: 2;
}

.print-logo.is-printed img {
    filter: drop-shadow(0 0 42px rgba(0, 212, 255, .32));
}

.print-logo-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: .88;
}

.print-head {
    position: absolute;
    left: 50%;
    top: var(--print-y);
    z-index: 3;
    width: min(460px, 82vw);
    height: 10px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent, rgba(0, 212, 255, .2) 10%, rgba(255, 255, 255, .9) 50%, rgba(0, 212, 255, .2) 90%, transparent),
        linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(0, 212, 255, .2));
    box-shadow: 0 0 24px rgba(0, 212, 255, .55), 0 0 58px rgba(0, 212, 255, .24);
    opacity: var(--print-head-opacity);
    pointer-events: none;
}

.print-head::before,
.print-head::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(0, 212, 255, .7);
}

.print-head::before {
    left: 50%;
    transform: translate(-52px, -50%) rotate(45deg);
}

.print-head::after {
    left: 50%;
    transform: translate(36px, -50%) rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
    .print-logo {
        --print-clip: 0%;
        --print-y: 100%;
        --print-glow: 1;
        --print-opacity: 1;
        --print-head-opacity: 0;
    }

    .print-logo-canvas,
    .print-head {
        display: none;
    }
}

.section {
    padding: 38px 0 76px;
}

.category-grid,
.product-grid,
.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-card,
.product-card,
.about-card,
.cart-panel,
.checkout-form,
.order-summary,
.admin-card,
.admin-login {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-soft);
}

.category-card {
    min-height: 168px;
    padding: 24px;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, .45);
    box-shadow: 0 0 28px rgba(0, 212, 255, .11);
}

.category-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    border: 2px solid var(--cyan);
    border-radius: 9px;
    transform: rotate(45deg);
}

.category-card h3,
.product-card h3 {
    margin: 0 0 10px;
}

.category-card p,
.product-card p,
.footer p,
.about-card p,
.order-summary p,
.admin-card p {
    color: var(--muted);
    line-height: 1.65;
}

.page-heading {
    padding: 76px 0 26px;
    text-align: center;
}

.page-heading.compact {
    padding-bottom: 36px;
}

.product-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters a,
.sort-form select {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel);
    color: var(--muted);
    padding: 0 14px;
}

.filters a {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

.filters .selected {
    background: var(--cyan);
    color: var(--bg);
    border-color: transparent;
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 78px;
}

.product-card {
    overflow: hidden;
}

.product-media {
    min-height: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(0, 212, 255, .13), rgba(255, 255, 255, .02));
}

.product-gallery {
    width: 100%;
    align-content: start;
    place-items: stretch;
    gap: 0;
}

.product-media:not(.product-gallery) {
    aspect-ratio: 3 / 2;
}

.product-image-open {
    width: 100%;
    aspect-ratio: 3 / 2;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-image-open img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(145deg, rgba(0, 212, 255, .08), rgba(255, 255, 255, .03));
}

.product-thumbs {
    width: 100%;
    min-width: 0;
    display: flex;
    gap: 6px;
    padding: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    border-top: 1px solid var(--line);
    background: rgba(9, 11, 15, .78);
}

.product-thumbs button {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    scroll-snap-align: start;
}

.product-thumbs button.active,
.product-thumbs button:hover {
    border-color: rgba(0, 212, 255, .8);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, .18);
}

.product-thumbs button:focus-visible,
.product-image-open:focus-visible,
.product-lightbox-close:focus-visible,
.product-lightbox-nav:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

.product-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(4, 7, 11, .88);
}

.product-lightbox img {
    max-width: min(100%, 1100px);
    max-height: min(82vh, 760px);
    object-fit: contain;
    border: 1px solid rgba(0, 212, 255, .28);
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: rgba(12, 14, 18, .9);
}

.product-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(12, 14, 18, .92);
    color: var(--cyan);
    font-weight: 800;
    cursor: pointer;
}

.product-lightbox-nav {
    position: fixed;
    top: 50%;
    width: 46px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 212, 255, .34);
    border-radius: 10px;
    background: rgba(12, 14, 18, .92);
    color: var(--cyan);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}

.product-lightbox-nav.previous {
    left: 18px;
}

.product-lightbox-nav.next {
    right: 18px;
}

.product-lightbox-counter {
    position: fixed;
    left: 50%;
    bottom: 18px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(12, 14, 18, .92);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    transform: translateX(-50%);
}

.lightbox-open {
    overflow: hidden;
}

.confirm-dialog {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(4, 7, 11, .78);
    backdrop-filter: blur(10px);
}

.confirm-dialog-panel {
    width: min(100%, 420px);
    padding: 24px;
    border: 1px solid rgba(255, 90, 120, .26);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(255, 90, 120, .08), transparent 45%),
        var(--panel);
    box-shadow: var(--shadow);
}

.confirm-dialog-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 90, 120, .42);
    border-radius: 10px;
    background: rgba(255, 90, 120, .1);
    color: var(--danger);
    font-family: Orbitron, Inter, sans-serif;
    font-weight: 800;
}

.confirm-dialog:not(.is-destructive) .confirm-dialog-panel {
    border-color: var(--line);
    background: var(--panel);
}

.confirm-dialog:not(.is-destructive) .confirm-dialog-icon {
    border-color: var(--cyan);
    background: var(--cyan-soft);
    color: var(--cyan);
}

.confirm-dialog-panel h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.confirm-dialog-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.confirm-dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.confirm-open {
    overflow: hidden;
}

.placeholder-logo {
    width: 150px;
    opacity: .75;
    filter: drop-shadow(0 0 24px rgba(0, 212, 255, .22));
}

.product-body {
    padding: 20px;
}

.product-category {
    margin: 0 0 8px;
    color: var(--cyan) !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-footer,
.cart-actions,
.cart-total,
.order-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-footer strong,
.cart-total strong,
.order-summary strong {
    color: var(--cyan);
}

.product-footer form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-footer select {
    width: 132px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
}

.color-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 14px 0 4px;
}

.color-chips span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.color-chips i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .42);
    background: var(--swatch, #00d4ff);
    box-shadow: 0 0 10px color-mix(in srgb, var(--swatch, #00d4ff) 48%, transparent);
}

.empty-state,
.empty-cart {
    grid-column: 1 / -1;
    min-height: 260px;
    display: grid;
    place-items: center;
    gap: 18px;
    text-align: center;
    color: var(--muted);
}

.about-section {
    min-height: calc(100vh - 240px);
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 42px;
    align-items: center;
    padding: 76px 0;
}

.about-card {
    padding: clamp(28px, 5vw, 54px);
}

.about-card p:not(.eyebrow) {
    font-size: 18px;
}

.about-logo {
    position: relative;
    display: grid;
    place-items: center;
}

.about-logo img {
    position: relative;
    width: min(320px, 70vw);
}

.cart-panel {
    max-width: 860px;
    margin: 0 auto 82px;
    padding: 24px;
}

.cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px 110px 42px;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item-info {
    min-width: 0;
}

.cart-row span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
}

.admin-warning {
    color: #ffd166 !important;
    font-weight: 800;
}

.cart-qty {
    gap: 5px;
}

.cart-qty span {
    margin: 0;
    font-size: 12px;
}

.cart-remove {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 90, 120, .38);
    border-radius: 999px;
    background: rgba(255, 90, 120, .08);
    color: var(--danger);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.cart-remove:hover,
.cart-remove:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 90, 120, .78);
    background: rgba(255, 90, 120, .16);
    outline: none;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(12, 14, 18, .88);
    color: var(--text);
    padding: 12px 13px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.bot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.turnstile-wrap {
    min-height: 70px;
    display: flex;
    align-items: center;
}

.checkout-error {
    min-height: 20px;
    margin: 0;
    color: var(--danger);
    font-weight: 700;
}

.checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(5, 7, 10, .78);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.checkout-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.checkout-overlay-panel {
    width: min(100%, 420px);
    padding: 34px 28px;
    display: grid;
    justify-items: center;
    gap: 16px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, .32);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(21, 24, 30, .98), rgba(12, 14, 18, .98));
    box-shadow: 0 22px 80px rgba(0, 0, 0, .45), 0 0 36px rgba(0, 212, 255, .16);
}

.checkout-overlay-panel img {
    width: 82px;
    filter: drop-shadow(0 0 18px rgba(0, 212, 255, .3));
}

.checkout-overlay-panel h2 {
    margin: 0;
    font-size: 24px;
}

.checkout-overlay-panel p {
    margin: 0;
    color: var(--muted);
}

.checkout-spinner {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .16);
    border-top-color: var(--cyan);
    animation: checkout-spin .8s linear infinite;
}

@keyframes checkout-spin {
    to {
        transform: rotate(360deg);
    }
}

.cart-total {
    padding: 20px 0;
    font-size: 18px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 24px;
    padding: 76px 0;
}

.checkout-form,
.order-summary {
    padding: 28px;
}

.checkout-form {
    display: grid;
    gap: 18px;
}

.checkout-address-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px;
    gap: 14px;
}

.checkout-address-grid label:nth-child(3),
.checkout-address-grid label:nth-child(4) {
    grid-column: span 1;
}

.order-summary {
    align-self: start;
}

.order-summary div {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    gap: 12px;
    flex-wrap: wrap;
}

.order-summary div > span {
    flex: 1 1 120px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.order-summary div > strong {
    flex: 0 0 auto;
    margin-left: auto;
    white-space: nowrap;
}

@media (min-width: 760px) {
    .checkout-grid > .checkout-form {
        grid-column: 1;
        grid-row: 1;
    }

    .checkout-grid > .order-summary {
        grid-column: 2;
        grid-row: 1;
    }
}

.order-summary .grand {
    font-size: 18px;
}

.footer {
    border-top: 1px solid var(--line);
    background: rgba(21, 24, 30, .52);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.5fr .6fr .8fr;
    gap: 34px;
}

.footer a {
    display: block;
    margin: 10px 0;
    color: var(--muted);
}

.footer a:hover {
    color: var(--cyan);
}

.footer-legal {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
}

.footer-legal a {
    margin: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-page {
    width: min(840px, calc(100% - 40px));
    margin: 0 auto;
    padding: 48px 0 72px;
    overflow-wrap: anywhere;
    line-height: 1.75;
}

.legal-heading h1 {
    margin: 8px 0 18px;
    font-size: 32px;
    line-height: 1.3;
}

.legal-download,
.checkout-terms a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-download {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.legal-contents {
    margin: 24px 0 32px;
    padding: 16px 0;
    border-block: 1px solid var(--line);
}

.legal-contents summary {
    cursor: pointer;
    font-weight: 600;
    padding: 8px 0;
}

.legal-contents nav {
    display: grid;
    gap: 6px;
    padding: 12px 0;
}

.legal-contents a {
    padding: 7px 0;
    color: var(--cyan);
}

.legal-copy h2,
.legal-copy h3 {
    font-family: Inter, system-ui, sans-serif;
    line-height: 1.45;
    scroll-margin-top: 100px;
}

.legal-copy h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.legal-copy h3 {
    font-size: 18px;
    margin: 28px 0 10px;
}

.legal-copy p,
.legal-copy ul {
    margin: 0 0 18px;
}

.legal-copy ul {
    padding-left: 24px;
}

.legal-copy li {
    margin: 6px 0;
}

.checkout-form .checkout-terms {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    padding: 12px 0;
    color: var(--text);
    cursor: pointer;
}

.checkout-form .checkout-terms input {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin: 2px 0 0;
    padding: 0;
    accent-color: var(--cyan);
}

.checkout-terms span {
    min-width: 0;
}

@media (max-width: 520px) {
    .legal-page { padding-top: 28px; }
    .legal-heading h1 { font-size: 26px; }
    .legal-copy h2 { font-size: 21px; }
}

@media print {
    body:has(.legal-page) { background: #fff; color: #111; }
    body:has(.legal-page) .site-header,
    body:has(.legal-page) .footer,
    body:has(.legal-page) .site-flash,
    .legal-contents,
    .legal-download { display: none; }
    .legal-page { width: 100%; padding: 0; font-size: 11pt; }
    .legal-page .eyebrow { color: #111; }
    .legal-copy h2,
    .legal-copy h3 { break-after: avoid; }
}

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 32px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.admin-main {
    padding: 32px 0 80px;
}

.admin-login {
    max-width: 430px;
    margin: 9vh auto;
    padding: 32px;
    display: grid;
    gap: 18px;
    text-align: center;
}

.admin-login img {
    width: 96px;
    margin: 0 auto;
}

.admin-login form,
.admin-form {
    display: grid;
    gap: 14px;
    text-align: left;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 14, 18, .45);
}

.admin-tabs a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 9px;
    color: var(--muted);
    font-family: Orbitron, Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.admin-tabs a.active,
.admin-tabs a:hover {
    background: var(--cyan);
    color: var(--bg);
}

.admin-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .42fr);
    gap: 18px;
    align-items: start;
}

.admin-grid {
    grid-template-columns: 1.35fr .85fr .85fr;
    align-items: start;
}

.admin-card {
    padding: 22px;
    margin-bottom: 18px;
}

.admin-card h2 {
    margin-bottom: 18px;
    font-size: 22px;
}

.admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.admin-card-head h2 {
    margin: 0;
}

.admin-card-head form {
    margin: 0;
}

.admin-card-meta {
    color: var(--muted);
    font-size: 14px;
}

.admin-add-product {
    gap: 8px;
    padding: 0 18px;
}

.admin-add-product svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.admin-table {
    display: grid;
    gap: 10px;
}

.admin-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(12, 14, 18, .45);
}

.product-admin-row.is-hidden-product {
    border-color: rgba(255, 90, 120, .42);
    background: linear-gradient(90deg, rgba(255, 90, 120, .16), rgba(12, 14, 18, .55));
    box-shadow: inset 4px 0 0 rgba(255, 90, 120, .82);
}

.product-admin-row.is-hidden-product .admin-thumb {
    opacity: .48;
    filter: grayscale(.85);
}

.admin-row span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-left: 3px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.admin-status-badge.is-live {
    border: 1px solid rgba(40, 214, 137, .42);
    background: rgba(40, 214, 137, .12);
    color: #70f0b4;
}

.admin-status-badge.is-offline {
    border: 1px solid rgba(255, 90, 120, .55);
    background: rgba(255, 90, 120, .14);
    color: #ff8fa3;
}

.admin-product-summary {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-thumb {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(0, 212, 255, .08);
}

.admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-thumb img[src*="jm3d-logo"] {
    width: 38px;
    height: 38px;
    object-fit: contain;
    opacity: .72;
}

.admin-row-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-row-actions form {
    margin: 0;
}

.order-admin-row {
    align-items: stretch;
}

.order-admin-details {
    min-width: 0;
}

.order-admin-actions {
    flex: 0 0 min(100%, 430px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.order-admin-actions > form:not(.payment-request-form) {
    margin: 0;
}

.payment-request-form {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 10px;
    align-items: end;
}

.payment-request-form label {
    grid-column: 1 / 2;
}

.payment-request-form button {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
}

.payment-request-modal-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-request-modal-form label,
.payment-request-modal-form button,
.payment-request-modal-form .wide,
.payment-order-summary {
    grid-column: 1 / -1;
}

.admin-icon-button {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(12, 14, 18, .72);
    color: var(--cyan);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.admin-icon-button:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 212, 255, .55);
    background: rgba(0, 212, 255, .12);
}

.admin-icon-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.admin-icon-button.danger {
    color: var(--danger);
}

.admin-icon-button.success {
    color: #70f0b4;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-left: 3px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.order-status-badge.is-pending {
    border: 1px solid rgba(255, 209, 102, .42);
    background: rgba(255, 209, 102, .12);
    color: #ffd166;
}

.order-status-badge.is-requested {
    border: 1px solid rgba(0, 212, 255, .42);
    background: rgba(0, 212, 255, .12);
    color: var(--cyan);
}

.order-status-badge.is-paid {
    border: 1px solid rgba(40, 214, 137, .42);
    background: rgba(40, 214, 137, .12);
    color: #70f0b4;
}

.admin-modal-shell {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: start center;
    padding: 28px 16px;
    overflow: auto;
}

.admin-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 10, .78);
    backdrop-filter: blur(12px);
}

.admin-modal-panel {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    padding: 24px;
    border: 1px solid rgba(0, 212, 255, .28);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(21, 24, 30, .98), rgba(12, 14, 18, .98));
    box-shadow: 0 24px 90px rgba(0, 0, 0, .5), 0 0 34px rgba(0, 212, 255, .12);
}

.admin-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.admin-modal-head .eyebrow {
    margin-top: 0;
}

.admin-modal-head h2 {
    margin-bottom: 0;
}

.admin-product-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
}

.admin-category-modal-panel,
.admin-payment-modal-panel {
    width: min(760px, 100%);
}

.admin-category-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
}

.admin-settings-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
}

.admin-product-form .wide,
.admin-category-form .wide,
.admin-settings-form .wide {
    grid-column: 1 / -1;
}

.product-active-check {
    min-height: 47px;
    align-content: center;
}

.settings-check {
    min-height: 47px;
    align-content: center;
}

.admin-help {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.admin-color-fieldset {
    margin: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(12, 14, 18, .45);
}

.admin-color-fieldset.is-disabled {
    display: none;
}

.admin-color-fieldset legend {
    padding: 0 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.admin-color-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.admin-color-choice {
    min-width: 0;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(21, 24, 30, .62);
    color: var(--text);
}

.admin-color-choice input {
    width: auto;
}

.admin-color-choice span {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-color-choice i {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: var(--swatch, var(--cyan));
}

.admin-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.admin-current-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.admin-current-image {
    display: grid;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(12, 14, 18, .45);
}

.admin-current-image.is-removing {
    opacity: .58;
    border-color: rgba(255, 90, 120, .55);
    background: rgba(255, 90, 120, .08);
}

.admin-current-image.is-main,
.admin-upload-preview-tile.is-main {
    border-color: rgba(0, 212, 255, .78);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, .16);
}

.admin-current-image img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border: 0;
    border-radius: 10px;
}

.admin-main-image-choice,
.admin-current-image span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.admin-main-image-choice input {
    width: auto;
}

.admin-image-remove {
    min-height: 36px;
    border: 1px solid rgba(255, 90, 120, .32);
    border-radius: 9px;
    background: rgba(255, 90, 120, .08);
    color: var(--danger);
    cursor: pointer;
    font-weight: 700;
}

.admin-current-image.is-removing .admin-image-remove {
    border-color: rgba(0, 212, 255, .36);
    background: rgba(0, 212, 255, .1);
    color: var(--cyan);
}

.admin-upload-preview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.admin-upload-preview:empty {
    display: none;
}

.admin-upload-preview img[hidden],
.admin-upload-preview-message[hidden] {
    display: none;
}

.admin-upload-preview-error {
    color: var(--danger);
    overflow-wrap: anywhere;
}

.admin-upload-preview-tile {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(0, 212, 255, .24);
    border-radius: 10px;
    background: rgba(0, 212, 255, .07);
}

.admin-upload-preview-tile img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.admin-upload-preview-tile span {
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-upload-preview-message {
    grid-column: 1 / -1;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(255, 90, 120, .28);
    border-radius: 10px;
    background: rgba(255, 90, 120, .08);
    color: var(--text);
    font-size: 13px;
}

.admin-advanced-image-paths {
    color: var(--muted);
}

.admin-advanced-image-paths summary {
    cursor: pointer;
    font-weight: 700;
}

.admin-advanced-image-paths label {
    margin-top: 10px;
}

.admin-payment-settings {
    margin-bottom: 18px;
}

.audit-log-row {
    align-items: flex-start;
}

.audit-log-type {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(0, 212, 255, .25);
    border-radius: 999px;
    color: var(--cyan);
    font-family: Orbitron, Inter, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
}

.settings-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.danger-link {
    border: 0;
    background: transparent;
    color: var(--danger);
    cursor: pointer;
}

.check {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.check input {
    width: auto;
}

@media (max-width: 920px) {
    .nav-toggle {
        display: inline-grid;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(21, 24, 30, .96);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 11px 12px;
    }

    .hero,
    .about-section,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-address-grid {
        grid-template-columns: 1fr;
    }

    .admin-icon-button {
        width: 44px;
        height: 44px;
    }

    .cart-remove {
        width: 44px;
        height: 44px;
    }

    .hero {
        min-height: auto;
        padding-top: 46px;
        text-align: center;
    }

    .hero-actions,
    .product-toolbar,
    .cart-actions {
        justify-content: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .category-grid,
    .product-grid,
    .admin-grid,
    .admin-split,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-color-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 760px) and (max-width: 920px) {
    .checkout-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .nav-shell {
        width: min(100% - 20px, 1180px);
        gap: 8px;
    }

    .brand span {
        font-size: 15px;
    }

    .nav-actions {
        gap: 2px;
    }

    .nav-language a {
        padding: 5px 7px;
        font-size: 11px;
    }

    .site-flash {
        right: 10px;
        left: 10px;
        bottom: 10px;
        width: auto;
        max-width: none;
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 13px 14px;
        border-radius: 12px;
        background: #081018;
        box-shadow: 0 16px 48px rgba(0, 0, 0, .58), 0 0 0 1px rgba(0, 212, 255, .16);
    }

    .site-flash a {
        display: inline-flex;
        justify-content: center;
        min-height: 38px;
        align-items: center;
        border: 1px solid rgba(0, 212, 255, .48);
        border-radius: 10px;
        background: rgba(0, 212, 255, .12);
    }

    h1 {
        font-size: 42px;
    }

    .page-heading.compact h1 {
        font-size: 32px;
    }

    .page-heading {
        padding: 34px 0 16px;
    }

    .page-heading.compact {
        padding-bottom: 18px;
    }

    .category-grid,
    .product-grid,
    .admin-grid,
    .admin-split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .product-lightbox {
        padding: 16px;
    }

    .product-lightbox-nav {
        width: 40px;
        height: 52px;
    }

    .product-lightbox-nav.previous {
        left: 10px;
    }

    .product-lightbox-nav.next {
        right: 10px;
    }

    .confirm-dialog-actions {
        flex-direction: column-reverse;
    }

    .product-footer,
    .product-footer form {
        align-items: stretch;
        flex-direction: column;
    }

    .product-footer select {
        width: 100%;
    }

    .sort-form {
        align-items: stretch;
        flex-direction: column;
    }

    .filters a {
        flex: 1 1 auto;
        justify-content: center;
    }

    .cart-row {
        position: relative;
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 10px 12px;
        padding: 0 0 16px;
    }

    .cart-panel {
        width: 100%;
        margin-bottom: 46px;
        padding: 16px;
        border-radius: 16px;
        background: rgba(12, 14, 18, .96);
        border-color: rgba(255, 255, 255, .12);
    }

    .cart-item-info {
        padding-right: 10px;
    }

    .cart-item-info strong {
        display: block;
        overflow-wrap: anywhere;
        font-size: 18px;
        line-height: 1.25;
    }

    .cart-row .cart-qty,
    .cart-line-total {
        grid-column: 1 / -1;
    }

    .cart-qty {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 96px;
        align-items: end;
        gap: 8px;
    }

    .cart-qty input {
        min-height: 44px;
        font-size: 16px;
        text-align: center;
    }

    .cart-line-total {
        padding-top: 2px;
        font-size: 18px;
        text-align: right;
    }

    .cart-remove {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        justify-self: end;
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .cart-total {
        padding: 16px 0 18px;
        font-size: 17px;
    }

    .cart-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cart-actions .btn {
        min-height: 52px;
        padding-inline: 10px;
        white-space: normal;
        line-height: 1.2;
    }

    .cart-actions .primary {
        order: -1;
    }

    .cart-actions .cart-secondary-action {
        min-height: 42px;
        border-color: transparent;
        background: transparent;
        color: var(--muted);
    }

    .admin-header,
    .admin-row,
    .order-admin-row {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-card {
        padding: 16px;
        border-radius: 16px;
    }

    .admin-card-head {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-add-product {
        justify-content: center;
        min-height: 46px;
    }

    .admin-product-summary {
        align-items: flex-start;
    }

    .product-admin-row {
        position: relative;
        padding-right: 64px;
    }

    .product-admin-row .admin-row-actions {
        position: absolute;
        top: 12px;
        right: 12px;
        flex-direction: column;
        gap: 8px;
    }

    .order-admin-actions,
    .payment-request-form {
        flex: 1 1 auto;
        width: 100%;
    }

    .order-admin-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .audit-log-row {
        gap: 12px;
    }

    .audit-log-row > div {
        min-width: 0;
    }

    .audit-log-row strong,
    .audit-log-row span {
        overflow-wrap: anywhere;
    }

    .audit-log-type {
        width: fit-content;
        max-width: 100%;
        white-space: normal;
    }

    .order-admin-actions > form:not(.payment-request-form) {
        display: flex;
        justify-content: flex-end;
    }

    .payment-request-form {
        grid-template-columns: 1fr;
    }

    .payment-request-form label,
    .payment-request-form button {
        grid-column: auto;
        grid-row: auto;
    }

    .payment-request-form button {
        width: 42px;
        justify-self: end;
    }

    .admin-modal-shell {
        place-items: start center;
        padding: 8px;
    }

    .admin-modal-panel {
        width: 100%;
        max-height: calc(100dvh - 16px);
        overflow: auto;
        padding: 16px;
        border-radius: 16px;
    }

    .admin-modal-head {
        position: sticky;
        top: -16px;
        z-index: 2;
        align-items: center;
        margin: -16px -16px 16px;
        padding: 16px;
        border-bottom: 1px solid var(--line);
        background: rgba(17, 20, 26, .98);
    }

    .admin-product-form,
    .admin-category-form,
    .admin-settings-form,
    .admin-color-grid {
        grid-template-columns: 1fr;
    }

    .admin-modal-actions {
        position: sticky;
        bottom: -16px;
        z-index: 2;
        flex-direction: column-reverse;
        margin: 0 -16px -16px;
        padding: 14px 16px 16px;
        border-top: 1px solid var(--line);
        background: rgba(17, 20, 26, .98);
    }

    .admin-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
    }

    .admin-tabs a {
        flex: 0 0 auto;
        min-width: 128px;
        justify-content: center;
        scroll-snap-align: start;
    }

    .admin-current-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-upload-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-row-actions {
        justify-content: flex-end;
    }

    .cart-actions .btn,
    .admin-modal-actions .btn,
    .checkout-form .btn,
    .empty-cart .btn {
        width: 100%;
    }
}
