/* VENUS — styled after the Uniqlo Redesign (Figma community file) */

:root {
    --gold:      #b8934a;   /* brand gold (accents, buttons) */
    --gold-deep: #9a7a35;   /* gold text on white for contrast */
    --gold-soft: #f4ecd8;
    --danger:    #c0392b;   /* semantic red: errors + delete only */
    --ink:      #111111;
    --muted:    #8a8a8a;
    --line:     #ececec;
    --panel:    #f3f3f3;
    --bg:       #ffffff;
    --star:     #f5b301;
    --wrap:     1240px;
    --font:     "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Logo (gold VENUS brand mark) ---------- */
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__img { height: 46px; width: auto; display: block; }
.brand__img--sm { height: 34px; }
.brand-full { display: block; }
.brand-full__img { height: 118px; width: auto; display: block; margin: 0 auto 6px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.site-header__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-search {
    position: relative;
    flex: 1;
    max-width: 440px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--panel);
    border-radius: 999px;
    padding: 9px 16px;
}
.header-search input {
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 14px;
    width: 100%;
    outline: none;
}
.header-search__icon { color: var(--muted); flex: none; }
.header-icons { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.icon-btn { font-size: 20px; line-height: 1; color: var(--ink); }
.btn--add { margin-left: 0; }

/* ---------- Nav tabs (WOMEN / MEN / ALL) ---------- */
.subnav { border-bottom: 1px solid var(--line); background: #fff; }
.subnav__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
}
.subnav a {
    padding: 13px 2px;
    color: var(--muted);
    border-bottom: 2px solid transparent;
}
.subnav a:hover { color: var(--ink); }
.subnav a.is-active { color: var(--ink); border-bottom-color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.btn:hover { background: var(--panel); }
.btn--red { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--red:hover { background: #9a7a35; border-color: #9a7a35; }
.btn--outline-red { background: #fff; color: var(--gold-deep); border-color: var(--gold); }
.btn--outline-red:hover { background: var(--gold-soft); }
.btn--block { width: 100%; }

/* ---------- Promo banner ---------- */
.promo {
    max-width: var(--wrap);
    margin: 20px auto 8px;
    padding: 0 20px;
}
.promo__card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(105deg, #2a2622 0%, #5c4a2e 55%, #b8934a 100%);
    color: #fff;
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: 168px;
}
.promo__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .9; }
.promo__title { font-size: clamp(24px, 4vw, 38px); font-weight: 800; line-height: 1.05; margin: 0; max-width: 18ch; }
.promo__cta { background: #fff; color: var(--ink); padding: 11px 22px; border-radius: 999px; font-size: 13px; font-weight: 800; }
.promo__mark {
    position: absolute;
    right: -10px;
    bottom: -30px;
    font-size: 220px;
    line-height: 1;
    opacity: .18;
    user-select: none;
}

/* ---------- Section headers ---------- */
.section-head {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 26px 20px 12px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.section-head h2 { font-size: 19px; font-weight: 800; margin: 0; }
.section-head .see-more { font-size: 12px; font-weight: 700; color: var(--gold-deep); }

/* ---------- Layout wrap ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px 80px; }

/* ---------- Toolbar (filter + sort) ---------- */
.toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab {
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
}
.tab.is-active { background: var(--gold); color: #fff; border-color: var(--gold); }
.toolbar__controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.search {
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    font-family: inherit;
    min-width: 200px;
    background: var(--panel);
}
.sort { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.sort select {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
}
.result-count { color: var(--muted); font-size: 13px; margin: 16px 0 20px; }

/* ---------- Product grid ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 18px;
}
.card { display: block; position: relative; }
.card__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
    background: var(--panel);
    overflow: hidden;
    border-radius: 12px;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__swatch {
    width: 62px; height: 62px; border-radius: 50%;
    background: var(--swatch);
    box-shadow: 0 0 0 1px rgba(0,0,0,.06) inset;
}
.card__cat {
    position: absolute; bottom: 12px; left: 12px;
    font-size: 11px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--muted);
}
.card__fav {
    position: absolute; top: 10px; right: 10px;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--ink);
}
.card__tag {
    position: absolute; top: 10px; left: 10px;
    background: var(--gold); color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: .04em;
    padding: 4px 9px; border-radius: 999px;
}
.card__meta { display: block; padding: 12px 2px 0; }
.card__dept { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.card__name { display: block; font-size: 14px; margin: 4px 0 6px; color: var(--ink); }
.card__prices { display: flex; align-items: baseline; gap: 8px; }
.card__price { font-size: 15px; font-weight: 800; }
.card__price.is-sale { color: var(--gold-deep); }
.card__price--old { font-size: 13px; color: var(--muted); text-decoration: line-through; font-weight: 500; }
.card:hover .card__name { text-decoration: underline; }

.rating { font-size: 12px; color: var(--muted); font-weight: 600; }
.rating__star { color: var(--star); }
.card__rating { display: block; margin-top: 6px; }

/* ---------- Featured collections ---------- */
.collections {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.collection {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    color: #fff;
    background: #ddd center 15% / cover no-repeat;
}
.collection::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,.55));
    transition: background .2s;
}
.collection:hover::after { background: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,.6)); }
.collection span {
    position: relative; z-index: 1;
    font-weight: 800; font-size: 17px; letter-spacing: .01em;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.collection span::after { content: " \2192"; opacity: 0; transition: opacity .2s; }
.collection:hover span::after { opacity: 1; }

/* ---------- Empty state ---------- */
.empty { text-align: center; padding: 80px 20px; color: var(--muted); display: grid; gap: 18px; justify-items: center; }

/* ---------- Product detail (Figma layout) ---------- */
.back { display: inline-block; margin: 20px 0; font-size: 13px; font-weight: 700; }
.back:hover { color: var(--gold-deep); }
.product__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product__img {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 3 / 4; background: var(--panel); overflow: hidden; border-radius: 16px;
}
.product__img img { width: 100%; height: 100%; object-fit: cover; }
.product__swatch { width: 120px; height: 120px; border-radius: 50%; background: var(--swatch); box-shadow: 0 0 0 1px rgba(0,0,0,.06) inset; }
.product__cat { position: absolute; bottom: 16px; left: 16px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.product__dept { font-size: 13px; color: var(--muted); font-weight: 600; margin: 2px 0 4px; }
.product__info h1 { font-size: 28px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 10px; }
.product__price { font-size: 30px; font-weight: 800; color: var(--gold-deep); margin: 0 0 6px; display: flex; align-items: baseline; gap: 12px; }
.product__price .old { font-size: 18px; color: var(--muted); text-decoration: line-through; font-weight: 500; }
.product__rating { margin: 0 0 24px; font-size: 14px; }
.product__rating .rating__star { font-size: 15px; }

.variant-head { display: flex; align-items: baseline; justify-content: space-between; margin: 0 0 12px; }
.variant-head strong { font-size: 15px; }
.variant-head span { font-size: 12px; color: var(--muted); }
.variant-head .see-all { color: var(--gold-deep); font-weight: 700; }
.sizes { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.size {
    min-width: 54px; text-align: center;
    padding: 11px 6px; border: 1px solid var(--line); border-radius: 10px;
    font-size: 14px; font-weight: 700; background: #fff; cursor: pointer;
}
.size.is-active, .size:hover { border-color: var(--gold); color: var(--gold-deep); }
.swatches { display: flex; gap: 10px; margin: 0 0 26px; }
.swatch-dot { width: 26px; height: 26px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(0,0,0,.12) inset; cursor: pointer; }
.swatch-dot.is-active { outline: 2px solid var(--gold); outline-offset: 2px; }
.product__desc h3 { font-size: 15px; margin: 0 0 8px; }
.product__desc p { color: #555; font-size: 14px; margin: 0 0 28px; }

.buybar { display: flex; gap: 12px; }
.buybar .btn { flex: 1; text-align: center; padding: 15px; }
.note { color: var(--muted); font-size: 12px; margin-top: 14px; text-align: center; }

/* ---------- Add form ---------- */
.form-page { max-width: 640px; }
.form-title { font-size: 28px; font-weight: 800; margin: 8px 0 6px; }
.form-lead { color: var(--muted); margin: 0 0 28px; }
.product-form { display: grid; gap: 20px; }
.field { display: grid; gap: 7px; }
.field > span { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.field > span small { color: var(--muted); font-weight: 400; letter-spacing: 0; text-transform: none; }
.field input, .field select {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    background: #fff;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.err { color: var(--danger); font-size: 12px; font-style: normal; }
.form-actions { display: flex; gap: 12px; margin-top: 8px; }
.form-note {
    color: var(--muted);
    font-size: 13px;
    margin: -8px 0 0;
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; }
.site-footer__inner {
    max-width: var(--wrap); margin: 0 auto; padding: 40px 20px;
    display: flex; align-items: center; gap: 20px;
}
.site-footer p { color: var(--muted); font-size: 13px; margin: 0; }

/* ---------- Buttons: small + danger ---------- */
.btn--sm { padding: 7px 12px; font-size: 12px; border-radius: 6px; }
.btn--danger { color: var(--danger); border-color: var(--danger); }
.btn--danger:hover { background: var(--danger); color: #fff; }

/* ---------- Admin: login ---------- */
.admin-login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--panel);
    padding: 24px;
}
.login-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 34px 30px;
    display: grid;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.06);
}
.login-card .logo { margin: 0 auto 4px; }
.login-card h1 { font-size: 22px; font-weight: 800; text-align: center; margin: 0; }
.login-sub { text-align: center; color: var(--muted); font-size: 14px; margin: -8px 0 4px; }
.login-error {
    background: #fbeaea; color: var(--danger);
    border-radius: 8px; padding: 10px 12px; font-size: 13px; font-weight: 600; margin: 0;
}
.login-hint { text-align: center; font-size: 12px; color: var(--muted); margin: 0; }
.login-back { text-align: center; font-size: 13px; color: var(--muted); }

/* ---------- Admin: chrome ---------- */
.admin-topbar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; }
.admin-topbar__inner {
    max-width: 1160px; margin: 0 auto; padding: 12px 20px;
    display: flex; align-items: center; gap: 18px;
}
.admin-badge {
    font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    background: var(--ink); color: #fff; padding: 3px 9px; border-radius: 999px;
}
.admin-nav { display: flex; gap: 20px; font-size: 14px; font-weight: 600; }
.admin-nav a { color: var(--muted); }
.admin-nav a:hover { color: var(--ink); }
.admin-user { margin-left: auto; display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--muted); }
.admin-user .btn { background: #fff; color: var(--ink); border-color: var(--line); }
.admin-user .btn:hover { background: var(--panel); }

.admin-wrap { max-width: 1160px; margin: 0 auto; padding: 28px 20px 80px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.admin-head h1 { font-size: 24px; font-weight: 800; margin: 0; }
.admin-sub { color: var(--muted); font-size: 13px; font-weight: 500; margin: 4px 0 0; }
.admin-notice {
    background: #e9f7ec; color: #1c7a34; border: 1px solid #bfe6c8;
    border-radius: 8px; padding: 11px 14px; font-size: 14px; font-weight: 600; margin: 0 0 18px;
}
.is-hidden { display: none !important; }
.admin-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 18px;
}
.admin-import-label {
    position: relative;
    overflow: hidden;
}
.admin-import-label input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

/* ---------- Admin: table ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 720px; background: #fff; }
.admin-table th {
    text-align: left; font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
    color: var(--muted); padding: 12px 14px; border-bottom: 1px solid var(--line); background: #fafafa;
}
.admin-table td { padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table .td-name { font-weight: 700; }
.ta-r { text-align: right; }
.ta-num { font-variant-numeric: tabular-nums; }
.thumb-cell { width: 56px; }
.thumb { width: 42px; height: 56px; object-fit: cover; border-radius: 6px; display: block; }
.thumb--swatch { border: 1px solid var(--line); }
.price-sale { color: var(--gold-deep); font-weight: 700; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 12px; margin-left: 6px; }
.row-actions { white-space: nowrap; display: flex; gap: 8px; justify-content: flex-end; }

/* ---------- Admin: cards / forms ---------- */
.admin-card {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 26px; max-width: 680px;
}
.confirm-card { display: grid; gap: 8px; }
.confirm-card p { margin: 0; }

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
    .collections { grid-template-columns: repeat(2, 1fr); }
    .product__layout { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 620px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .collections { grid-template-columns: repeat(2, 1fr); }
    .site-header__inner { flex-wrap: wrap; gap: 12px; }
    .header-search { order: 3; max-width: none; flex-basis: 100%; }
    .toolbar { flex-direction: column; align-items: stretch; }
    .field-row { grid-template-columns: 1fr; }
}

/* ---------- Cart ---------- */
.cart-link { position: relative; text-decoration: none; }
.cart-badge {
    position: absolute; top: -6px; right: -8px;
    background: var(--gold); color: #fff;
    font-size: 10px; font-weight: 800; line-height: 1;
    min-width: 16px; height: 16px; padding: 0 4px;
    border-radius: 999px; display: flex; align-items: center; justify-content: center;
}
.cart-page { max-width: 900px; }
.cart-title { font-size: 26px; font-weight: 800; margin: 24px 0 20px; }
.cart-list { display: grid; gap: 14px; margin-bottom: 24px; }
.cart-row {
    display: grid; grid-template-columns: 64px 1fr auto auto; gap: 16px;
    align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px;
}
.cart-row img { width: 64px; height: 82px; object-fit: cover; border-radius: 8px; }
.cart-row .c-name { font-weight: 700; }
.cart-row .c-meta { color: var(--muted); font-size: 13px; }
.cart-row .c-price { font-weight: 700; font-variant-numeric: tabular-nums; }
.cart-summary {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 2px solid var(--ink); padding-top: 18px; gap: 16px; flex-wrap: wrap;
}
.cart-total { font-size: 20px; font-weight: 800; }
.cart-actions { display: flex; gap: 12px; }
.order-ok {
    text-align: center; max-width: 520px; margin: 40px auto; padding: 40px 24px;
    border: 1px solid var(--line); border-radius: 16px;
}
.order-ok .tick {
    width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: #fff;
    font-size: 32px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}

/* ---------- Live Interactivity / AJAX Styles ---------- */
.cart-badge.is-empty { display: none; }

.qty-group { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 6px; background: #fff; cursor: pointer; font-weight: bold; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; transition: border-color 0.15s, background 0.15s; }
.qty-btn:hover { border-color: var(--ink); background: #f9f9f9; }
.qty-val { font-weight: 700; min-width: 22px; text-align: center; font-variant-numeric: tabular-nums; }

.toast {
    position: fixed; top: 24px; right: 24px; z-index: 9999; background: #fff; border: 1px solid var(--line);
    box-shadow: 0 12px 36px rgba(0,0,0,0.18); border-radius: 14px; padding: 16px;
    transform: translateY(-20px) scale(0.96); opacity: 0; pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s; max-width: 360px; width: 100%;
}
.toast.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.toast__inner { display: flex; align-items: center; gap: 14px; }
.toast__img { width: 48px; height: 62px; object-fit: cover; border-radius: 6px; }
.toast__swatch { width: 48px; height: 62px; border-radius: 6px; border: 1px solid var(--line); }
.toast__text { flex: 1; display: flex; flex-direction: column; font-size: 13px; line-height: 1.3; }
.toast__text strong { color: #111; font-weight: 800; font-size: 14px; margin-bottom: 2px; }
.toast__text span { font-weight: 700; color: #333; }
.toast__text small { color: var(--muted); margin-top: 4px; }
.toast__btn { white-space: nowrap; padding: 6px 12px; font-size: 12px; }

.search-suggest {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid var(--line);
    border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); margin-top: 6px; z-index: 1000;
    display: none; overflow: hidden; max-height: 380px; overflow-y: auto;
}
.search-suggest.is-open { display: block; }
.search-suggest__item {
    display: flex; align-items: center; gap: 12px; padding: 10px 14px; text-decoration: none; color: var(--ink);
    border-bottom: 1px solid var(--line); transition: background 0.15s;
}
.search-suggest__item:last-child { border-bottom: none; }
.search-suggest__item:hover { background: #f8f8f8; }
.search-suggest__item img { width: 38px; height: 48px; object-fit: cover; border-radius: 4px; }
.suggest-swatch { width: 38px; height: 48px; border-radius: 4px; border: 1px solid var(--line); display: inline-block; }
.s-info { flex: 1; display: flex; flex-direction: column; font-size: 13px; }
.s-name { font-weight: 700; }
.s-cat { color: var(--muted); font-size: 11px; margin-top: 2px; }
.s-prices { font-size: 13px; font-weight: 700; text-align: right; }
.search-suggest__empty { padding: 18px; text-align: center; color: var(--muted); font-size: 13px; font-weight: 500; }

@media (max-width: 620px) {
    .cart-row { grid-template-columns: 64px 1fr; }
    .cart-row .c-price,
    .cart-row .js-remove { grid-column: 2; justify-self: start; }
    .cart-actions { width: 100%; }
    .cart-actions .btn { flex: 1; text-align: center; }
    .admin-topbar__inner { flex-wrap: wrap; }
    .admin-user { margin-left: 0; width: 100%; justify-content: space-between; }
}
