:root {
    --bg: #f6f4fb;
    --bg-soft: #fbfafe;
    --surface: #ffffff;
    --surface-2: #f3f1fa;
    --text: #1f2430;
    --muted: #6c7488;
    --line: #e6e2f0;
    --primary: #7c4dff;
    --primary-2: #a855f7;
    --accent: #ff5ea8;
    --success: #18a36f;
    --warning: #f59e0b;
    --danger: #dc2626;
    --info: #2563eb;
    --shadow-sm: 0 10px 24px rgba(31, 36, 48, 0.06);
    --shadow-md: 0 20px 40px rgba(31, 36, 48, 0.08);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(180deg, #fbfafe 0%, #f5f3fa 100%);
    color: var(--text);
}

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

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

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

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
    padding-bottom: 48px;
}

.topbar {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 14px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(230, 226, 240, 0.8);
}

.header-main {
    min-height: 88px;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
}

.brand,
.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand strong,
.admin-brand strong {
    display: block;
    font-size: 18px;
}

.brand small,
.admin-brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    box-shadow: var(--shadow-sm);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.header-search input {
    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
    padding: 8px 12px;
    color: var(--text);
}

.header-search button {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-actions a {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text) !important;
}

.cart-pill span {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.header-nav {
    border-top: 1px solid rgba(230, 226, 240, 0.7);
}

.nav-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.main-nav,
.nav-extras {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav > a,
.nav-dropdown > button,
.nav-extras a {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    cursor: pointer;
    padding: 18px 0;
}

.main-nav > a:hover,
.nav-dropdown > button:hover,
.nav-extras a:hover,
.header-actions a:hover,
.site-footer a:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 640px;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow-md);
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
    display: grid;
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-title {
    font-weight: 800;
    color: var(--text);
}

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 14px;
    place-items: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

.section {
    padding: 28px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-head h2,
.page-hero h1,
.admin-topbar h1,
.content-card h1,
.auth-card h1 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.section-head p,
.page-hero p,
.admin-topbar p,
.content-card p,
.auth-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) 360px;
    gap: 24px;
    padding-top: 24px;
}

.hero-slider {
    overflow: hidden;
    position: relative;
}

.hero-slide {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40%;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.12), rgba(255, 94, 168, 0.1));
}

.hero-copy {
    padding: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.auth-card .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.08);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
}

.hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    max-width: 620px;
}

.hero-actions,
.toolbar,
.inline-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.hero-stat,
.stat-card,
.kpi-card {
    padding: 18px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid rgba(230, 226, 240, 0.9);
    box-shadow: var(--shadow-sm);
}

.hero-stat strong,
.stat-card strong,
.kpi-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
}

.hero-media {
    position: relative;
    min-height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.9), rgba(255,255,255,0.4)), #f8f6ff;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-side {
    display: grid;
    gap: 18px;
}

.mini-feature {
    padding: 24px;
}

.mini-feature h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.mini-feature p {
    color: var(--muted);
    margin: 0 0 18px;
}

.mini-feature-list {
    display: grid;
    gap: 12px;
}

.mini-feature-list span,
.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.mini-feature-list span::before,
.check-list li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(24, 163, 111, 0.12);
    color: var(--success);
    font-weight: 800;
    flex-shrink: 0;
}

.badge,
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.badge.sale {
    background: rgba(255, 94, 168, 0.14);
    color: var(--accent);
}

.badge.featured {
    background: rgba(124, 77, 255, 0.1);
    color: var(--primary);
}

.badge.new {
    background: rgba(37, 99, 235, 0.12);
    color: var(--info);
}

.status-badge.success {
    background: rgba(24, 163, 111, 0.12);
    color: var(--success);
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.12);
    color: var(--warning);
}

.status-badge.info {
    background: rgba(37, 99, 235, 0.12);
    color: var(--info);
}

.status-badge.danger {
    background: rgba(220, 38, 38, 0.12);
    color: var(--danger);
}

.status-badge.neutral {
    background: rgba(108, 116, 136, 0.12);
    color: var(--muted);
}

.btn,
button.btn,
a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    padding: 13px 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn:hover,
button.btn:hover,
a.btn:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--surface-2);
    color: var(--text) !important;
}

.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text) !important;
}

.btn-outline {
    background: transparent;
    color: var(--text) !important;
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.category-grid,
.product-grid,
.feature-grid,
.stat-grid,
.info-grid,
.footer-grid,
.auth-grid,
.checkout-layout,
.account-layout,
.overview-grid,
.promo-grid {
    display: grid;
    gap: 20px;
}

.category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
    overflow: hidden;
    position: relative;
}

.category-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card:hover img,
.product-card:hover .product-media img {
    transform: scale(1.04);
}

.category-card-body {
    padding: 18px;
}

.category-card h3,
.product-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.category-card p,
.product-card p,
.muted {
    color: var(--muted);
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--bg-soft);
    overflow: hidden;
}

.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 1;
}

.product-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
}

.icon-button {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(230, 226, 240, 0.9);
    background: rgba(255,255,255,0.95);
    cursor: pointer;
    color: var(--text);
}

.icon-button.active {
    color: var(--accent);
    border-color: rgba(255, 94, 168, 0.4);
}

.product-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-row strong {
    font-size: 22px;
}

.price-row del {
    color: var(--muted);
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: auto;
}

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

.feature-card {
    padding: 24px;
}

.feature-card h3 {
    margin: 0 0 8px;
}

.page-hero {
    padding: 34px 0 12px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--muted);
}

.filters-card,
.summary-card,
.content-card,
.auth-card,
.table-card,
.admin-panel,
.form-card {
    padding: 24px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
}

.filter-group {
    display: grid;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 16px;
}

.filter-group:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.field,
.field textarea,
.field select,
.field input,
.input,
select.input,
textarea.input {
    width: 100%;
}

.field {
    display: grid;
    gap: 8px;
}

.field label,
.fieldset legend,
.form-card h3,
.summary-card h3,
.table-card h3,
.content-card h2,
.auth-card h2 {
    font-weight: 800;
}

.field input,
.field select,
.field textarea,
.input {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.input:focus {
    border-color: rgba(124, 77, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.12);
}

.field-grid,
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field-grid .full,
.form-grid .full {
    grid-column: 1 / -1;
}

.fieldset {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
}

.radio-grid,
.check-grid {
    display: grid;
    gap: 12px;
}

.radio-card,
.check-card {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    background: var(--surface);
}

.quantity-control input {
    width: 52px;
    text-align: center;
    border: 0;
    background: transparent;
}

.quantity-control button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: var(--surface-2);
    cursor: pointer;
}

.table-responsive {
    overflow-x: auto;
}

.data-table,
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td,
.admin-table th,
.admin-table td {
    padding: 16px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.data-table th,
.admin-table th {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-table tr:hover td,
.admin-table tr:hover td {
    background: rgba(124, 77, 255, 0.03);
}

.cart-layout,
.checkout-layout {
    grid-template-columns: minmax(0, 1.4fr) 360px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-item-media {
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-soft);
    aspect-ratio: 1 / 1;
}

.cart-item-main {
    display: grid;
    gap: 14px;
}

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.summary-list {
    display: grid;
    gap: 14px;
}

.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
}

.summary-line.total {
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
}

.auth-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
    padding: 40px 0 20px;
    align-items: stretch;
}

.auth-promo {
    padding: 34px;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.14), rgba(255, 94, 168, 0.12));
}

.auth-promo h2 {
    margin: 18px 0 10px;
    font-size: clamp(28px, 3vw, 42px);
}

.auth-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.account-layout {
    grid-template-columns: 280px minmax(0, 1fr);
}

.account-sidebar {
    padding: 22px;
    height: fit-content;
    position: sticky;
    top: 112px;
}

.account-sidebar-head {
    display: grid;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.account-nav {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.account-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 700;
}

.account-nav a.active,
.account-nav a:hover {
    background: rgba(124, 77, 255, 0.08);
    color: var(--primary);
}

.overview-grid,
.stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card p,
.kpi-card p {
    margin: 0;
    color: var(--muted);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 28px;
}

.product-gallery {
    display: grid;
    gap: 14px;
}

.product-gallery-main {
    border-radius: 26px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    aspect-ratio: 1 / 1;
}

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

.product-thumb-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.product-thumb {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    cursor: pointer;
    background: var(--surface);
}

.product-summary {
    display: grid;
    gap: 20px;
    padding: 28px;
}

.product-summary .meta-row,
.detail-list {
    display: grid;
    gap: 10px;
}

.detail-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.detail-list div:last-child {
    border-bottom: 0;
}

.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.tabs button {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
}

.tabs button.active {
    background: rgba(124, 77, 255, 0.08);
    color: var(--primary);
    border-color: rgba(124, 77, 255, 0.2);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.timeline,
.tracking-steps {
    display: grid;
    gap: 12px;
}

.timeline-item,
.tracking-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.timeline-bullet,
.tracking-step-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.1);
    color: var(--primary);
    font-weight: 800;
}

.timeline-item strong,
.tracking-step strong {
    display: block;
    margin-bottom: 4px;
}

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

.promo-card {
    padding: 28px;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.12), rgba(255, 94, 168, 0.12));
}

.empty-state {
    text-align: center;
    padding: 40px 26px;
}

.empty-state h3 {
    margin: 0 0 10px;
}

.empty-state p {
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 18px;
}

.alert,
.flash {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-weight: 600;
}

.alert-success,
.flash.success {
    background: rgba(24, 163, 111, 0.12);
    color: var(--success);
}

.alert-error,
.flash.error {
    background: rgba(220, 38, 38, 0.12);
    color: var(--danger);
}

.alert-info,
.flash.info {
    background: rgba(37, 99, 235, 0.12);
    color: var(--info);
}

.site-footer {
    padding: 48px 0 24px;
    background: #171a24;
    color: rgba(255,255,255,0.92);
    margin-top: 48px;
}

.footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    margin-bottom: 22px;
}

.site-footer h4,
.site-footer h5 {
    margin: 0 0 14px;
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,0.72);
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.list-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.note-box {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--info);
}

.order-number {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* Admin */
.admin-body {
    background: #eef1f8;
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    padding: 24px 18px;
    background: #141824;
    color: rgba(255, 255, 255, 0.86);
    display: grid;
    gap: 22px;
}

.admin-menu {
    display: grid;
    gap: 6px;
}

.admin-menu a {
    padding: 14px 16px;
    border-radius: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
}

.admin-menu a.active,
.admin-menu a:hover {
    background: rgba(124, 77, 255, 0.18);
    color: #fff;
}

.admin-sidebar-footer {
    margin-top: auto;
    display: grid;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.admin-sidebar-footer span {
    font-weight: 800;
}

.admin-main {
    min-width: 0;
}

.admin-topbar {
    padding: 28px 32px 18px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.admin-content {
    padding: 0 32px 32px;
}

.admin-panel + .admin-panel,
.table-card + .table-card,
.content-card + .content-card {
    margin-top: 22px;
}

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

.admin-grid .wide,
.settings-grid .wide {
    grid-column: span 2;
}

.admin-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    gap: 22px;
}

.admin-topbar-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

.admin-thumb,
.table-thumb {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    object-fit: cover;
    background: var(--surface-2);
    border: 1px solid var(--line);
}

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

.text-danger {
    color: var(--danger);
}

.text-success {
    color: var(--success);
}

.text-info {
    color: var(--info);
}

.text-muted {
    color: var(--muted);
}

@media (max-width: 1180px) {
    .header-main {
        grid-template-columns: 1fr auto auto;
    }

    .header-search {
        grid-column: 1 / -1;
        order: 3;
    }

    .hero-grid,
    .catalog-layout,
    .cart-layout,
    .checkout-layout,
    .account-layout,
    .product-detail-grid,
    .admin-hero {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .product-grid,
    .overview-grid,
    .stat-grid,
    .feature-grid,
    .footer-grid,
    .promo-grid,
    .admin-grid,
    .settings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 280px;
    }

    .account-sidebar {
        position: static;
    }
}

@media (max-width: 920px) {
    .mobile-toggle {
        display: inline-grid;
    }

    .header-main {
        grid-template-columns: 1fr auto auto;
    }

    .header-actions {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .header-nav.open {
        display: block;
    }

    .nav-inner,
    .main-nav,
    .nav-extras {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .main-nav > a,
    .nav-dropdown > button,
    .nav-extras a {
        width: 100%;
        padding: 12px 0;
    }

    .mega-menu {
        position: static;
        min-width: 100%;
        display: grid;
        margin-top: 8px;
    }

    .auth-layout,
    .hero-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .field-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .topbar-inner,
    .section-head,
    .cart-item-row,
    .table-toolbar,
    .admin-topbar,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-grid,
    .product-grid,
    .overview-grid,
    .stat-grid,
    .feature-grid,
    .footer-grid,
    .promo-grid,
    .admin-grid,
    .settings-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .summary-card,
    .content-card,
    .table-card,
    .auth-card,
    .auth-promo,
    .admin-panel,
    .filters-card,
    .product-summary {
        padding: 20px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .product-thumb-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .data-table th,
    .data-table td,
    .admin-table th,
    .admin-table td {
        white-space: nowrap;
    }
}

/* ===== v3 mobile-first storefront refresh ===== */
body.menu-open {
    overflow: hidden;
}

svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-main {
    padding-bottom: 48px;
}

.topbar-marquee {
    background: #0f1118;
    color: rgba(255,255,255,0.92);
    overflow: hidden;
    min-height: 34px;
    display: flex;
    align-items: center;
}

.topbar-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    min-width: 200%;
    animation: topbar-marquee 18s linear infinite;
    font-size: 12px;
    font-weight: 600;
}

.topbar-track span {
    padding-right: 24px;
}

@keyframes topbar-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.site-header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);
}

.header-main {
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
}

.brand {
    min-width: 0;
}

.brand-copy {
    min-width: 0;
}

.brand strong,
.admin-brand strong {
    font-size: 16px;
    line-height: 1.1;
}

.brand small,
.admin-brand small {
    font-size: 12px;
    line-height: 1.35;
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
}

.header-search-row {
    padding-bottom: 14px;
}

.header-search {
    gap: 10px;
    padding: 8px;
    min-height: 64px;
}

.header-search input {
    padding: 0 12px;
    font-size: 16px;
}

.header-search button {
    min-width: 112px;
    min-height: 48px;
    padding: 12px 22px;
    font-size: 16px;
}

.desktop-actions {
    gap: 14px;
}

.mobile-utility {
    display: none;
    align-items: center;
    gap: 10px;
}

.utility-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--surface);
    display: inline-grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    color: var(--text);
    position: relative;
}

.utility-cart span,
.mobile-bottom-nav-item em {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #db1f2f;
    color: #fff;
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
}

.mobile-toggle {
    width: 52px;
    height: 52px;
    display: inline-grid;
    gap: 5px;
    border-radius: 18px;
}

.mobile-toggle span {
    width: 22px;
    margin: 0 auto;
}

.nav-inner {
    min-height: 52px;
}

.main-nav > a,
.nav-dropdown > button,
.nav-extras a {
    padding: 14px 0;
}

.mega-menu {
    border-radius: 26px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.08);
}

.eyebrow.dark {
    background: rgba(15, 17, 24, 0.08);
    color: var(--text);
}

.section-head-compact {
    align-items: center;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-hero-section {
    padding-top: 22px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) 320px;
    gap: 20px;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 42%;
    transition: opacity 0.35s ease;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.14), rgba(255, 94, 168, 0.12));
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-slide-copy {
    padding: 42px 42px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.hero-slide-copy h1 {
    margin: 0;
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 0.98;
}

.hero-slide-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    max-width: 580px;
}

.hero-slide-media {
    min-height: 100%;
}

.hero-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-chip-list,
.trust-list,
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chip-list span,
.trust-list span,
.footer-badges span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(230, 226, 240, 0.9);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.hero-dots {
    position: absolute;
    left: 42px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(31, 36, 48, 0.2);
    cursor: pointer;
}

.hero-dots button.active {
    width: 26px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.hero-side-stack {
    display: grid;
    gap: 18px;
}

.trust-card,
.quick-login-card,
.discovery-card,
.footer-info-card,
.product-shelf-shell {
    padding: 24px;
}

.trust-card h3,
.quick-login-card h3,
.discovery-card h3 {
    margin: 12px 0 10px;
    font-size: 26px;
    line-height: 1.12;
}

.trust-card p,
.quick-login-card p,
.discovery-card p,
.footer-info-card p {
    margin: 0;
    color: var(--muted);
}

.quick-login-card .inline-actions,
.discovery-card .inline-actions {
    margin-top: 18px;
}

.product-shelf-shell {
    overflow: hidden;
    padding: 16px;
}

.product-shelf {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.product-shelf::-webkit-scrollbar {
    display: none;
}

.product-shelf-track {
    display: flex;
    gap: 14px;
    min-width: max-content;
}

.shelf-card {
    width: 214px;
    flex: 0 0 214px;
    overflow: hidden;
    scroll-snap-align: start;
}

.shelf-card-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--bg-soft);
    overflow: hidden;
}

.shelf-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shelf-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.shelf-card-body {
    padding: 14px;
    display: grid;
    gap: 10px;
}

.shelf-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 700;
}

.shelf-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

.shelf-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.shelf-price-row strong {
    font-size: 20px;
}

.shelf-price-row del {
    color: var(--muted);
    font-size: 13px;
}

.shelf-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.btn-compact {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
}

.shelf-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.home-category-grid,
.discovery-grid,
.footer-info-grid {
    display: grid;
    gap: 18px;
}

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

.home-category-card {
    overflow: hidden;
}

.home-category-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-soft);
}

.home-category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-category-body {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.home-category-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.home-category-top h3 {
    margin: 4px 0 0;
    font-size: 22px;
}

.home-category-count {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-transform: uppercase;
}

.home-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-category-links a,
.chip-link {
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--text);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
}

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

.discovery-card-accent {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(255, 94, 168, 0.14));
}

.home-product-grid {
    gap: 18px;
}

.footer-info-band {
    margin-top: 56px;
}

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

.footer-info-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.footer-info-card strong,
.footer-info-card strong a {
    display: block;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.site-footer {
    margin-top: 28px;
    padding-bottom: 28px;
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 40;
}

.mobile-drawer[hidden] {
    display: none !important;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 17, 24, 0.42);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(92vw, 420px);
    height: 100%;
    background: #fff;
    box-shadow: -12px 0 28px rgba(15, 17, 24, 0.18);
    padding: 20px 18px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.24s ease;
    display: grid;
    gap: 16px;
}

.mobile-drawer.open .mobile-drawer-backdrop {
    opacity: 1;
}

.mobile-drawer.open .mobile-drawer-panel {
    transform: translateX(0);
}

.mobile-drawer-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.mobile-drawer-head h2 {
    margin: 10px 0 6px;
    font-size: 28px;
}

.mobile-drawer-head p {
    margin: 0;
    color: var(--muted);
}

.drawer-close {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: var(--text);
}

.mobile-auth-card {
    display: grid;
    gap: 14px;
}

.mobile-auth-card strong {
    font-size: 18px;
}

.mobile-auth-card p {
    margin: 6px 0 0;
    color: var(--muted);
}

.mobile-auth-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-menu-search {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 18px;
    background: var(--surface-2);
}

.mobile-menu-search input {
    flex: 1;
    border: 0;
    background: transparent;
    outline: none;
    padding: 0 10px;
}

.mobile-menu-search button {
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
}

.mobile-menu-links {
    display: grid;
    gap: 8px;
}

.mobile-menu-links a {
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--surface-2);
    font-weight: 700;
}

.mobile-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.mobile-section-head h3 {
    margin: 0;
    font-size: 22px;
}

.mobile-section-head a {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

.mobile-category-group {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 10px;
}

.mobile-category-trigger {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.accordion-icon {
    width: 14px;
    height: 14px;
    position: relative;
    flex: 0 0 14px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transform: translateY(-50%);
}

.accordion-icon::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.2s ease;
}

.mobile-category-group.open .accordion-icon::after {
    transform: translateY(-50%) rotate(0deg);
}

.mobile-category-panel {
    display: none;
    padding: 0 16px 16px;
    gap: 10px;
}

.mobile-category-group.open .mobile-category-panel {
    display: grid;
}

.mobile-category-link {
    padding: 10px 12px;
    border-radius: 14px;
    background: var(--surface-2);
    font-size: 14px;
    color: var(--text);
}

.mobile-category-link-main {
    background: rgba(124, 77, 255, 0.08);
    color: var(--primary);
    font-weight: 700;
}

.mobile-menu-contact {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.mobile-menu-contact span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.mobile-menu-contact a,
.mobile-menu-contact strong {
    font-size: 16px;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(230, 226, 240, 0.95);
    box-shadow: 0 -12px 30px rgba(31, 36, 48, 0.08);
    justify-content: space-between;
    gap: 6px;
}

.mobile-bottom-nav-item {
    flex: 1 1 0;
    min-width: 0;
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 8px 4px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    position: relative;
}

.mobile-bottom-nav-item.active,
.mobile-bottom-nav-item:hover {
    color: var(--primary);
}

.mobile-bottom-nav-item svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1180px) {
    .hero-layout,
    .footer-info-grid,
    .discovery-grid {
        grid-template-columns: 1fr;
    }

    .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-side-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .desktop-actions {
        display: none;
    }

    .mobile-utility,
    .mobile-bottom-nav {
        display: flex;
    }

    .header-main {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .header-nav {
        display: none;
    }

    .site-main {
        padding-bottom: 98px;
    }

    .hero-layout,
    .hero-side-stack {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        min-height: auto;
    }

    .hero-slide,
    .hero-slide.is-active {
        position: relative;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-slide:not(.is-active) {
        display: none;
    }

    .hero-slide-copy {
        padding: 24px 22px 18px;
    }

    .hero-slide-copy h1 {
        font-size: clamp(30px, 10vw, 44px);
    }

    .hero-slide-copy p {
        font-size: 16px;
    }

    .hero-slide-media {
        min-height: 240px;
    }

    .hero-dots {
        left: 22px;
        bottom: 16px;
    }

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

    .product-grid {
        gap: 14px;
    }

    .product-card p {
        font-size: 14px;
        line-height: 1.45;
    }
}

@media (max-width: 680px) {
    .brand strong {
        font-size: 15px;
    }

    .brand small {
        font-size: 11px;
    }

    .brand-mark {
        width: 50px;
        height: 50px;
    }

    .header-main {
        min-height: 76px;
    }

    .header-search-row {
        padding-bottom: 10px;
    }

    .header-search {
        min-height: 58px;
    }

    .header-search button {
        min-width: 98px;
        min-height: 44px;
        padding: 10px 18px;
    }

    .section {
        padding: 22px 0;
    }

    .section-head h2,
    .page-hero h1,
    .admin-topbar h1,
    .content-card h1,
    .auth-card h1 {
        font-size: 24px;
    }

    .hero-chip-list span,
    .trust-list span,
    .footer-badges span,
    .home-category-links a,
    .chip-link {
        font-size: 12px;
    }

    .home-category-grid,
    .discovery-grid,
    .footer-info-grid,
    .feature-grid,
    .promo-grid,
    .overview-grid,
    .stat-grid,
    .admin-grid,
    .settings-grid,
    .hero-side-stack {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-body {
        padding: 14px;
        gap: 10px;
    }

    .product-card h3 {
        font-size: 16px;
    }

    .product-card p {
        display: none;
    }

    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .price-row strong {
        font-size: 18px;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .shelf-card {
        width: 168px;
        flex-basis: 168px;
    }

    .shelf-card h3 {
        font-size: 15px;
    }

    .shelf-price-row strong {
        font-size: 18px;
    }

    .trust-card,
    .quick-login-card,
    .discovery-card,
    .footer-info-card,
    .product-shelf-shell {
        padding: 18px;
    }

    .trust-card h3,
    .quick-login-card h3,
    .discovery-card h3 {
        font-size: 22px;
    }

    .mobile-drawer-panel {
        width: 100%;
        max-width: 100%;
        border-top-left-radius: 22px;
        border-bottom-left-radius: 0;
    }

    .mobile-bottom-nav-item span {
        white-space: nowrap;
    }
}
