/* Anne's Classic Hair — storefront + app UI (served as static CSS; use with Tailwind CDN for utilities). */

:root {
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

[x-cloak] {
    display: none !important;
}

body {
    margin: 0;
    background-color: #f1f5f9;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.shell {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 80rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .shell {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .shell {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.surface-card {
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 14px 34px -18px rgba(15, 23, 42, 0.18);
}

.panel-card {
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.18);
}

.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #1d4ed8;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.primary-action:hover {
    background-color: #1e40af;
}

.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.secondary-action:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.field-input {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #0f172a;
    outline: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.field-input::placeholder {
    color: #94a3b8;
}

.field-input:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.table-shell {
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 16px 40px -26px rgba(15, 23, 42, 0.18);
}

.market-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.market-chip:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.market-section {
    border-radius: 28px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 14px 34px -18px rgba(15, 23, 42, 0.14);
}

@media (min-width: 640px) {
    .market-section {
        padding: 2rem;
    }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-gradient {
    background: linear-gradient(125deg, #1d4ed8 0%, #5b21b6 45%, #312e81 100%);
}

/* Homepage hero */
.fashion-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: min(85vh, 52rem);
    min-height: min(85dvh, 52rem);
    background-color: #0a0a0a;
    overflow: hidden;
}

.fashion-hero__slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease-in-out;
    will-change: opacity;
}

.fashion-hero__slide--on {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}

.fashion-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.fashion-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.45) 42%,
        rgba(0, 0, 0, 0.15) 100%
    );
    pointer-events: none;
}

.fashion-hero__caption {
    position: relative;
    z-index: 10;
    display: flex;
    min-height: min(85vh, 52rem);
    min-height: min(85dvh, 52rem);
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 6.5rem;
    padding-bottom: 7rem;
}

@media (min-width: 640px) {
    .fashion-hero__caption {
        padding-bottom: 6.5rem;
    }
}

.fashion-hero__tag {
    display: inline-block;
    width: fit-content;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.35rem 0.85rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.fashion-hero h1.fashion-hero__title {
    margin-top: 1rem;
    margin-bottom: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #ffffff;
}

.fashion-hero__price {
    margin-top: 0.75rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.2rem, 1.5vw + 0.75rem, 1.5rem);
    font-weight: 600;
    color: #ffb700;
}

.fashion-hero__lead {
    margin-top: 1rem;
    max-width: 36rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(200, 220, 255, 0.92);
}

.fashion-hero__actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.fashion-hero__btn {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0 1.85rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease,
        border-color 0.2s ease;
}

.fashion-hero__btn--primary {
    border: 2px solid #ff3b3b;
    background-color: #ff3b3b;
    color: #ffffff;
}

.fashion-hero__btn--primary:hover {
    background-color: #cc1f1f;
    border-color: #cc1f1f;
    transform: translateY(-1px);
}

.fashion-hero__btn--ghost {
    border: 2px solid rgba(255, 255, 255, 0.45);
    background-color: transparent;
    color: #ffffff;
}

.fashion-hero__btn--ghost:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.fashion-hero__nav {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    pointer-events: none;
}

@media (min-width: 640px) {
    .fashion-hero__nav {
        display: flex;
    }
}

.fashion-hero__nav-btn {
    pointer-events: auto;
    display: inline-flex;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.fashion-hero__nav-btn:hover {
    background: rgba(0, 0, 0, 0.55);
}

.fashion-hero__nav-m {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .fashion-hero__nav-m {
        display: none;
    }
}

.fashion-hero__dots {
    position: absolute;
    bottom: 5.5rem;
    left: 50%;
    z-index: 20;
    display: flex;
    transform: translateX(-50%);
    gap: 0.45rem;
}

@media (min-width: 640px) {
    .fashion-hero__dots {
        bottom: 2rem;
    }
}

.fashion-hero__dot {
    height: 0.4rem;
    border-radius: 9999px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.35);
    transition:
        width 0.25s ease,
        background-color 0.2s ease;
}

.fashion-hero__dot--active {
    width: 2rem;
    background: #ff3b3b;
}

.fashion-hero__dot:not(.fashion-hero__dot--active) {
    width: 0.45rem;
}

@media (max-width: 639px) {
    .fashion-hero {
        min-height: min(42dvh, 20rem);
        min-height: min(42vh, 20rem);
    }

    .fashion-hero__slide {
        overflow: hidden;
    }

    .fashion-hero__caption {
        min-height: 0;
        padding-top: 2.75rem;
        padding-bottom: 5.25rem;
        justify-content: flex-end;
    }

    .fashion-hero__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: scale(1.12);
        transform-origin: center center;
    }

    .fashion-hero h1.fashion-hero__title {
        font-size: clamp(1.35rem, 5.5vw + 0.65rem, 2rem);
        margin-top: 0.65rem;
    }

    .fashion-hero__lead {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-top: 0.65rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .fashion-hero__actions {
        margin-top: 1.1rem;
        gap: 0.55rem;
    }

    .fashion-hero__btn {
        min-height: 2.65rem;
        padding: 0 1.25rem;
        font-size: 0.7rem;
    }

    .fashion-hero__dots {
        bottom: 4.75rem;
    }

    .fashion-hero__nav-m {
        bottom: 1rem;
    }
}

/* Categories */
.shop-categories {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
    background: linear-gradient(180deg, #f0f0f2 0%, #f7f7f8 40%, #f0f0f2 100%);
}

@media (min-width: 768px) {
    .shop-categories {
        padding-top: 3.75rem;
        padding-bottom: 4.5rem;
    }
}

.shop-categories__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-bottom: 1.75rem;
}

.shop-categories__kicker {
    margin: 0 0 0.35rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #888888;
}

.shop-categories__title {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #111111;
}

.shop-categories__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.shop-categories__view-all:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.shop-categories__empty {
    margin: 0;
    padding: 2rem 1.25rem;
    text-align: center;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.9375rem;
    color: #666666;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
}

.shop-categories__grid {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .shop-categories__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.875rem;
    }
}

@media (min-width: 640px) {
    .shop-categories__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 900px) {
    .shop-categories__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .shop-categories__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 1280px) {
    .shop-categories__grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
}

.shop-categories__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1.15rem 0.65rem 1rem;
    min-height: 100%;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 14px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.shop-categories__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    border-color: #ff3b3b;
}

.shop-categories__media {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 9999px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

@media (min-width: 640px) {
    .shop-categories__media {
        width: 4.75rem;
        height: 4.75rem;
    }
}

.shop-categories__card:hover .shop-categories__media {
    background: #ffecec;
}

.shop-categories__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.shop-categories__letter {
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ff3b3b;
    line-height: 1;
}

.shop-categories__name {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.25;
    color: #111111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

@media (min-width: 640px) {
    .shop-categories__name {
        font-size: 0.8125rem;
    }
}

.shop-categories__meta {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #888888;
}

/* Most popular — mirrors sample.html "Today's Best Deals" (section-head + products-grid + product-card) */
.popular-deals {
    padding-top: 2.25rem;
    padding-bottom: 3rem;
    background: #ffffff;
}

@media (min-width: 768px) {
    .popular-deals {
        padding-top: 2.75rem;
        padding-bottom: 3.5rem;
    }
}

.popular-deals__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.popular-deals__title {
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f0f0f;
    margin: 0;
}

.popular-deals__view-all {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
    white-space: nowrap;
}

.popular-deals__view-all:hover {
    text-decoration: underline;
}

.popular-deals__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 640px) {
    .popular-deals__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .popular-deals__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1rem;
    }
}

.popular-deals__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.popular-deals__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.popular-deals__card-top {
    display: block;
    text-decoration: none;
    color: inherit;
}

.popular-deals__imgwrap {
    background: #f5f5f5;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.popular-deals__imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.popular-deals__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: #ff3b3b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    font-family: Inter, system-ui, sans-serif;
}

.popular-deals__wish {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0f0f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    pointer-events: none;
}

.popular-deals__card:hover .popular-deals__wish {
    transform: scale(1.08);
}

.popular-deals__info {
    padding: 14px;
}

.popular-deals__name {
    font-family: Inter, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #0f0f0f;
    line-height: 1.4;
    margin: 0 0 8px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-deals__name:hover {
    color: #ff3b3b;
}

.popular-deals__stars {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 4px;
    margin-bottom: 8px;
}

.popular-deals__star {
    font-size: 13px;
    line-height: 1;
}

.popular-deals__star--on {
    color: #ffb700;
}

.popular-deals__star--off {
    color: #ddd;
}

.popular-deals__count {
    font-size: 11px;
    color: #888888;
    margin-left: 2px;
}

.popular-deals__price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.popular-deals__price-now {
    font-size: 15px;
    font-weight: 700;
    color: #0f0f0f;
    font-family: Inter, system-ui, sans-serif;
}

.popular-deals__cart-form {
    margin: 0;
    padding: 0;
}

.popular-deals__add-cart {
    width: 100%;
    background: #0f0f0f;
    color: #fff;
    border: none;
    padding: 10px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 10px;
    border-radius: 8px;
}

.popular-deals__add-cart:hover:not(:disabled) {
    background: #ff3b3b;
}

.popular-deals__add-cart:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Featured spotlight — one wide split panel or two large tiles (distinct from popular-deals grid) */
.product-spotlight {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #faf7f7 55%, #ffffff 100%);
}

@media (min-width: 768px) {
    .product-spotlight {
        padding-top: 3rem;
        padding-bottom: 3.25rem;
    }
}

.product-spotlight__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.product-spotlight__kicker {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff3b3b;
    margin: 0 0 0.35rem;
}

.product-spotlight__title {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f0f0f;
    margin: 0;
}

.product-spotlight__view {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
    white-space: nowrap;
}

.product-spotlight__view:hover {
    text-decoration: underline;
}

.product-spotlight__grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* —— Single product: horizontal split —— */
.product-spotlight--single .product-spotlight__card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ece8e8;
    box-shadow: 0 18px 48px -28px rgba(15, 15, 15, 0.22);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.product-spotlight--single .product-spotlight__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px -24px rgba(15, 15, 15, 0.28);
}

@media (min-width: 900px) {
    .product-spotlight--single .product-spotlight__card {
        flex-direction: row;
        align-items: stretch;
        min-height: 22rem;
    }

    .product-spotlight--single .product-spotlight__media {
        flex: 1 1 46%;
        max-width: none;
        min-height: 100%;
    }

    .product-spotlight--single .product-spotlight__body {
        flex: 1 1 54%;
        padding: 2.25rem 2.5rem;
        justify-content: center;
    }
}

.product-spotlight--single .product-spotlight__media {
    position: relative;
    display: block;
    min-height: 16rem;
    background: #f0f0f0;
}

.product-spotlight--single .product-spotlight__media img {
    width: 100%;
    height: 100%;
    min-height: 16rem;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 900px) {
    .product-spotlight--single .product-spotlight__media img {
        position: absolute;
        inset: 0;
        min-height: 100%;
    }
}

.product-spotlight--single .product-spotlight__body {
    padding: 1.5rem 1.35rem 1.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.product-spotlight--single .product-spotlight__name {
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.product-spotlight--single .product-spotlight__desc {
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: 36rem;
}

/* —— Two products: two columns of vertical cards —— */
.product-spotlight--duo .product-spotlight__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .product-spotlight--duo .product-spotlight__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

.product-spotlight--duo .product-spotlight__card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ece8e8;
    box-shadow: 0 14px 36px -22px rgba(15, 15, 15, 0.2);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.product-spotlight--duo .product-spotlight__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px -20px rgba(15, 15, 15, 0.24);
}

.product-spotlight--duo .product-spotlight__card--2 {
    background: linear-gradient(180deg, #fffefd 0%, #fff 38%);
    border-color: #f3e6e6;
}

.product-spotlight--duo .product-spotlight__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
}

.product-spotlight--duo .product-spotlight__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-spotlight--duo .product-spotlight__body {
    padding: 1.25rem 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.product-spotlight--duo .product-spotlight__name {
    font-size: 1.05rem;
}

.product-spotlight--duo .product-spotlight__desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    flex: 1;
}

/* Shared typography & actions */
.product-spotlight__eyebrow {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888888;
    margin: 0;
}

.product-spotlight__name {
    font-family: Inter, system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.product-spotlight__name a {
    color: #0f0f0f;
    text-decoration: none;
}

.product-spotlight__name a:hover {
    color: #ff3b3b;
}

.product-spotlight__desc {
    font-family: Inter, system-ui, sans-serif;
    color: #555555;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-spotlight--single .product-spotlight__desc {
    -webkit-line-clamp: 6;
}

.product-spotlight__price {
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f0f0f;
    margin: 0.35rem 0 0;
}

.product-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.75rem;
    margin-top: 0.85rem;
}

.product-spotlight__cart {
    margin: 0;
    padding: 0;
    display: inline;
}

.product-spotlight__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.55rem 1.15rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.product-spotlight__btn--ghost {
    background: transparent;
    border-color: #0f0f0f;
    color: #0f0f0f;
}

.product-spotlight__btn--ghost:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
}

.product-spotlight__btn--primary {
    background: #0f0f0f;
    color: #fff;
    border-color: #0f0f0f;
}

.product-spotlight__btn--primary:hover:not(:disabled) {
    background: #ff3b3b;
    border-color: #ff3b3b;
}

.product-spotlight__btn--primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Home: store story sections (after spotlight) */
.store-pillars {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
    background: #f4f6f8;
}

@media (min-width: 768px) {
    .store-pillars {
        padding-top: 3.25rem;
        padding-bottom: 3.5rem;
    }
}

.store-pillars__head {
    max-width: 40rem;
    margin-bottom: 2rem;
}

.store-pillars__kicker {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff3b3b;
    margin: 0 0 0.4rem;
}

.store-pillars__title {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f0f0f;
    margin: 0 0 0.75rem;
}

.store-pillars__lead {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.store-pillars__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .store-pillars__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.store-pillars__card {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 1.35rem 1.25rem 1.4rem;
    box-shadow: 0 10px 30px -22px rgba(15, 23, 42, 0.15);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.store-pillars__card:hover {
    transform: translateY(-2px);
    border-color: #fecaca;
}

.store-pillars__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: #fff0f0;
    color: #ff3b3b;
    margin-bottom: 1rem;
}

.store-pillars__card-title {
    font-family: Inter, system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.store-pillars__card-text {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #555555;
    margin: 0;
}

.store-care {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
    background: #ffffff;
    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #eef0f3;
}

@media (min-width: 768px) {
    .store-care {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }
}

.store-care__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .store-care__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.75fr);
        gap: 2.5rem;
        align-items: center;
    }
}

.store-care__kicker {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff3b3b;
    margin: 0 0 0.4rem;
}

.store-care__title {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f0f0f;
    margin: 0 0 0.85rem;
}

.store-care__lead {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
    margin: 0 0 1.1rem;
}

.store-care__bullets {
    margin: 0 0 1.25rem;
    padding-left: 1.15rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #374151;
}

.store-care__bullets li {
    margin-bottom: 0.45rem;
}

.store-care__bullets li:last-child {
    margin-bottom: 0;
}

.store-care__link {
    display: inline-flex;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff3b3b;
    text-decoration: none;
}

.store-care__link:hover {
    text-decoration: underline;
}

.store-care__aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.store-care__stat {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border: 1px solid #fde2e2;
    border-radius: 16px;
    padding: 1.35rem 1.25rem;
}

.store-care__stat-value {
    display: block;
    font-family: Inter, system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ff3b3b;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.store-care__stat-label {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #6b7280;
}

.store-care__quote {
    margin: 0;
    padding: 1.35rem 1.25rem;
    background: #0f0f0f;
    color: #f3f4f6;
    border-radius: 16px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.store-care__quote p {
    margin: 0 0 0.75rem;
    font-style: italic;
}

.store-care__quote footer {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fca5a5;
}

.store-trust {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
}

@media (min-width: 768px) {
    .store-trust {
        padding-top: 3.25rem;
        padding-bottom: 3.5rem;
    }
}

.store-trust__inner {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.store-trust__kicker {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fca5a5;
    margin: 0 0 0.4rem;
}

.store-trust__title {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 0.65rem;
}

.store-trust__lead {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
    max-width: 42rem;
}

.store-trust__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .store-trust__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.15rem;
    }
}

.store-trust__item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.store-trust__item-title {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
}

.store-trust__item-text {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #cbd5e1;
}

.store-trust__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.75rem;
    margin-top: 0.25rem;
}

.store-trust__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.6rem 1.35rem;
    background: #ff3b3b;
    color: #fff;
    border: 2px solid #ff3b3b;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.store-trust__btn:hover {
    background: #fff;
    border-color: #fff;
    color: #0f172a;
}

.store-trust__btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.store-trust__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

/* Storefront footer */
.site-footer {
    margin-top: 0;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 2.5rem;
    }
}

.site-footer__brand-name {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.site-footer__brand-text {
    margin: 0;
    max-width: 22rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.site-footer__heading {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f172a;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__list a {
    color: #475569;
    text-decoration: none;
}

.site-footer__list a:hover {
    color: #0f172a;
    text-decoration: underline;
}

.site-footer__note {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
}

.site-footer__momo {
    margin: 0.35rem 0 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #0f172a;
}

.site-footer__bottom {
    border-top: 1px solid #e2e8f0;
    background: #f1f5f9;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.site-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .site-footer__bottom-inner {
        flex-direction: row;
        align-items: center;
    }
}

.site-footer__logout {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: 0.875rem;
    color: #475569;
    cursor: pointer;
    text-align: left;
}

.site-footer__logout:hover {
    color: #0f172a;
    text-decoration: underline;
}

/* Logo (store header, guest, dashboard nav) */
.store-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
}

.store-brand__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(145deg, #fff0f0 0%, #ffffff 55%, #fff7ed 100%);
    border: 1px solid #fecaca;
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.store-brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    line-height: 1.15;
}

.store-brand__eyebrow {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.store-brand__name {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.store-brand--inverse .store-brand__mark {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    box-shadow: none;
}

.store-brand--inverse .store-brand__eyebrow {
    color: #fecaca;
}

.store-brand--inverse .store-brand__name {
    color: #ffffff;
}

/* Storefront navbar */
.store-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid #e8e0e0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(15, 15, 15, 0.04);
    font-family: Inter, system-ui, sans-serif;
}

.store-header__inner {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

@media (min-width: 768px) {
    .store-header__inner {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.store-header__top {
    display: flex;
    align-items: center;
    gap: 0.75rem 1rem;
}

.store-header__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.store-header__brand:hover .store-brand__name {
    color: #ff3b3b;
}

.store-header__brand:hover .store-brand__mark {
    border-color: #ff3b3b;
}

.store-header__search--desktop {
    display: none;
    flex: 1;
    min-width: 0;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .store-header__search--desktop {
        display: block;
    }
}

.store-header__search-wrap {
    position: relative;
}

.store-header__field {
    width: 100%;
    border: 1px solid #e8e0e0;
    border-radius: 9999px;
    background: #f8f6f6;
    padding: 0.65rem 3rem 0.65rem 1rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    color: #0f172a;
    outline: none;
    transition:
        border-color 0.15s ease,
        background-color 0.15s ease,
        box-shadow 0.15s ease;
}

.store-header__field::placeholder {
    color: #94a3b8;
}

.store-header__field:hover {
    border-color: #ddd5d5;
    background: #fff;
}

.store-header__field:focus {
    border-color: #ff3b3b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.12);
}

.store-header__search-btn {
    position: absolute;
    right: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 9999px;
    background: #ff3b3b;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease;
}

.store-header__search-btn:hover {
    background: #e62e2e;
}

.store-header__search-btn--square {
    position: static;
    transform: none;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
}

.store-header__search--mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .store-header__search--mobile {
        display: none;
    }
}

.store-header__field--mobile {
    flex: 1;
    min-width: 0;
}

.store-header__quick {
    display: none;
    align-items: center;
    gap: 1.1rem;
    margin-left: auto;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .store-header__quick {
        display: flex;
    }
}

.store-header__cart {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
}

.store-header__cart:hover {
    color: #ff3b3b;
}

.store-header__cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #faf7f7;
    color: #334155;
    transition:
        border-color 0.15s ease,
        background 0.15s ease;
}

.store-header__cart:hover .store-header__cart-icon {
    border-color: #fecaca;
    background: #fff5f5;
    color: #ff3b3b;
}

.store-header__cart-badge {
    position: absolute;
    right: -0.15rem;
    top: -0.15rem;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #ff3b3b;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
}

.store-header__cart-label {
    font-weight: 500;
}

.store-header__link {
    font-weight: 500;
    color: #334155;
    text-decoration: none;
}

.store-header__link:hover {
    color: #ff3b3b;
}

.store-header__link--muted {
    color: #64748b;
    max-width: 8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-header__link--active {
    color: #ff3b3b;
    font-weight: 700;
}

.store-header__trailing-mobile {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: auto;
}

@media (min-width: 1024px) {
    .store-header__trailing-mobile {
        display: none;
    }
}

.store-header__cart-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #fff;
    color: #334155;
    text-decoration: none;
    transition:
        border-color 0.15s ease,
        background 0.15s ease,
        color 0.15s ease;
}

.store-header__cart-icon-btn:hover {
    border-color: #fecaca;
    background: #fff5f5;
    color: #ff3b3b;
}

.store-header__cart-icon-btn-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-header__cart-badge--floating {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    background: #ff3b3b;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.1rem;
    text-align: center;
}

.store-header__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        background 0.15s ease;
}

.store-header__menu-toggle:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
}

@media (min-width: 768px) {
    .store-header__menu-toggle {
        display: none;
    }
}

.store-header__icon {
    width: 1rem;
    height: 1rem;
}

.store-header__icon--lg {
    width: 1.25rem;
    height: 1.25rem;
}

.store-header__bar {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid #f1eaea;
}

@media (min-width: 768px) {
    .store-header__bar {
        display: flex;
    }
}

.store-header__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.15rem;
}

.store-header__nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    padding: 0.2rem 0;
    border-bottom: 2px solid transparent;
    transition:
        color 0.15s ease,
        border-color 0.15s ease;
}

.store-header__nav-link:hover {
    color: #0f172a;
}

.store-header__nav-link--active {
    color: #0f172a;
    font-weight: 600;
    border-bottom-color: #ff3b3b;
}

.store-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    background: #ff3b3b;
    color: #fff;
    border: 1px solid #ff3b3b;
    transition:
        background 0.15s ease,
        border-color 0.15s ease;
    white-space: nowrap;
}

.store-header__cta:hover {
    background: #e62e2e;
    border-color: #e62e2e;
}

html.store-nav-open {
    overflow: hidden;
}

/* Full-screen slide menu (mobile / small tablet) */
.store-menu-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    justify-content: flex-end;
}

.store-menu-drawer[x-cloak] {
    display: none !important;
}

.store-menu-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.store-menu-drawer--open .store-menu-drawer__backdrop {
    opacity: 1;
}

.store-menu-drawer__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(20rem, 88vw);
    height: 100%;
    max-height: 100dvh;
    background: #fff;
    box-shadow: -12px 0 40px rgba(15, 15, 15, 0.18);
    transform: translateX(100%);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.store-menu-drawer--open .store-menu-drawer__panel {
    transform: translateX(0);
}

@media (min-width: 768px) {
    .store-menu-drawer {
        display: none !important;
    }
}

.store-menu-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #ece8e8;
}

.store-menu-drawer__title {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.store-menu-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 9999px;
    background: #f8f6f6;
    color: #334155;
    cursor: pointer;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.store-menu-drawer__close:hover {
    background: #fff0f0;
    color: #ff3b3b;
}

.store-menu-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 1rem 1.25rem;
    overflow-y: auto;
    flex: 1;
}

.store-menu-drawer__link {
    display: block;
    padding: 0.75rem 0.65rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.store-menu-drawer__link:hover {
    background: #fff5f5;
    color: #ff3b3b;
}

.store-menu-drawer__link--accent {
    color: #ff3b3b;
}

.store-menu-drawer__meta {
    font-weight: 500;
    color: #64748b;
}

.store-menu-drawer__form {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f1eaea;
}

.store-menu-drawer__logout {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.75rem 0.65rem;
    border: 0;
    border-radius: 12px;
    background: none;
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #b91c1c;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
}

.store-menu-drawer__logout:hover {
    background: #fef2f2;
}

/* Bottom tab navigation (mobile app style) */
.store-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: none;
    align-items: stretch;
    padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #e8e0e0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 -8px 32px rgba(15, 15, 15, 0.08);
    font-family: Inter, system-ui, sans-serif;
}

@media (max-width: 1023px) {
    .store-bottom-nav {
        display: grid;
    }

    .store-bottom-nav--guest {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .store-bottom-nav--auth {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .store-main {
        padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }

    .site-footer {
        padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
    }
}

.store-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-width: 0;
    padding: 0.35rem 0.2rem;
    border-radius: 12px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #64748b;
    text-decoration: none;
    text-align: center;
    transition:
        color 0.15s ease,
        background 0.15s ease;
}

.store-bottom-nav__item:hover {
    color: #0f172a;
    background: rgba(255, 59, 59, 0.06);
}

.store-bottom-nav__item--active {
    color: #ff3b3b;
    background: rgba(255, 59, 59, 0.08);
}

.store-bottom-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.store-bottom-nav__icon--cart {
    position: relative;
}

.store-bottom-nav__badge {
    position: absolute;
    top: -0.35rem;
    right: -0.35rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.2rem;
    border-radius: 9999px;
    background: #ff3b3b;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
}

.store-bottom-nav__label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Products index — layout + filters (cards reuse .popular-deals__*) */
.products-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: #f1f5f9;
    font-family: Inter, system-ui, sans-serif;
}

@media (min-width: 768px) {
    .products-page {
        padding-top: 2.5rem;
        padding-bottom: 3.5rem;
    }
}

.products-page__shell {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .products-page__shell {
        gap: 1.75rem;
    }
}

.products-page__panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #ffffff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

@media (min-width: 900px) {
    .products-page__panel {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
        padding: 1.75rem 1.75rem 1.85rem;
    }
}

.products-page__intro {
    max-width: 32rem;
}

.products-page__kicker {
    margin: 0 0 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.products-page__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f0f0f;
}

.products-page__lead {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
}

.products-page__filters {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
}

@media (min-width: 640px) {
    .products-page__filters {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        max-width: 36rem;
    }
}

@media (min-width: 900px) {
    .products-page__filters {
        flex: 0 0 auto;
        width: auto;
        min-width: min(100%, 28rem);
    }
}

.products-page__field,
.products-page__select {
    width: 100%;
    border: 1px solid #e8e0e0;
    border-radius: 9999px;
    background: #f8f6f6;
    padding: 0.65rem 1rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    color: #0f172a;
    outline: none;
    transition:
        border-color 0.15s ease,
        background-color 0.15s ease,
        box-shadow 0.15s ease;
}

@media (min-width: 640px) {
    .products-page__field {
        flex: 1;
        min-width: 12rem;
    }

    .products-page__select {
        width: auto;
        min-width: 11rem;
    }
}

.products-page__field::placeholder {
    color: #94a3b8;
}

.products-page__field:hover,
.products-page__select:hover {
    border-color: #ddd5d5;
    background: #fff;
}

.products-page__field:focus,
.products-page__select:focus {
    border-color: #ff3b3b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.12);
}

.products-page__apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 9999px;
    padding: 0.65rem 1.25rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: #ff3b3b;
    color: #fff;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.products-page__apply:hover {
    background: #e62e2e;
}

.products-page__chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.65rem;
    padding-top: 0.25rem;
}

.products-page__chips-label {
    display: none;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

@media (min-width: 640px) {
    .products-page__chips-label {
        display: inline;
        margin-right: 0.25rem;
    }
}

.products-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #faf7f7;
    padding: 0.45rem 0.95rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition:
        border-color 0.15s ease,
        background 0.15s ease,
        color 0.15s ease;
}

.products-chip:hover {
    border-color: #fecaca;
    color: #ff3b3b;
    background: #fff;
}

.products-chip--active {
    border-color: #ff3b3b;
    background: #fff0f0;
    color: #c41e1e;
}

.products-page__toolbar {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.25rem;
}

.products-page__results-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f0f0f;
}

.products-page__count {
    font-size: 0.875rem;
    color: #64748b;
}

.products-page__grid {
    margin-top: 0.25rem;
}

.products-page__empty {
    grid-column: 1 / -1;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 36px -26px rgba(15, 15, 15, 0.12);
}

.products-page__empty-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.products-page__empty-text {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: #64748b;
}

.products-page__empty-btn {
    display: inline-flex;
    margin-top: 1.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.6rem 1.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    background: #ff3b3b;
    color: #fff;
    border: 1px solid #ff3b3b;
    transition: background 0.15s ease;
}

.products-page__empty-btn:hover {
    background: #e62e2e;
    border-color: #e62e2e;
}

.products-page__pagination,
.orders-page__pagination {
    margin-top: 2rem;
    font-family: Inter, system-ui, sans-serif;
}

.products-page__pagination nav,
.orders-page__pagination nav {
    width: 100%;
}

.products-page__pagination a,
.orders-page__pagination a {
    text-decoration: none;
}

.products-page__pagination nav a.inline-flex,
.products-page__pagination nav span.inline-flex,
.orders-page__pagination nav a.inline-flex,
.orders-page__pagination nav span.inline-flex {
    border-color: #e8e0e0 !important;
    color: #334155 !important;
    background: #fff !important;
}

.products-page__pagination nav a.inline-flex:hover,
.orders-page__pagination nav a.inline-flex:hover {
    background: #fff5f5 !important;
    border-color: #fecaca !important;
    color: #ff3b3b !important;
}

.products-page__pagination nav span[aria-current='page'] span,
.orders-page__pagination nav span[aria-current='page'] span {
    background: #ff3b3b !important;
    border-color: #ff3b3b !important;
    color: #fff !important;
}

.products-page__pagination .text-gray-700,
.products-page__pagination .text-gray-500,
.products-page__pagination .text-gray-800,
.orders-page__pagination .text-gray-700,
.orders-page__pagination .text-gray-500,
.orders-page__pagination .text-gray-800 {
    color: #64748b !important;
}

.products-page__pagination .font-medium,
.orders-page__pagination .font-medium {
    color: #0f172a !important;
}

/* Product detail — matches products index + popular-deals accents */
.product-detail {
    padding-top: 1.75rem;
    padding-bottom: 3rem;
    background: #f1f5f9;
    font-family: Inter, system-ui, sans-serif;
}

@media (min-width: 768px) {
    .product-detail {
        padding-top: 2.25rem;
        padding-bottom: 3.5rem;
    }
}

.product-detail__shell {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.product-detail__crumb {
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s ease;
}

.product-detail__crumb:hover {
    color: #ff3b3b;
}

.product-detail__crumb--current {
    color: #0f0f0f;
    font-weight: 600;
    max-width: 100%;
}

.product-detail__crumb-sep {
    color: #cbd5e1;
    user-select: none;
}

.product-detail__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .product-detail__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2rem;
        align-items: start;
    }
}

.product-detail__media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail__figure {
    position: relative;
    width: 100%;
    max-width: min(32rem, 100%);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #f5f5f5;
    overflow: hidden;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

.product-detail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-detail__trust {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .product-detail__trust {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-detail__trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #475569;
    border-radius: 14px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 0.75rem 0.85rem;
}

.product-detail__trust-icon {
    flex-shrink: 0;
    color: #ff3b3b;
    margin-top: 0.05rem;
}

.product-detail__panel {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

@media (min-width: 640px) {
    .product-detail__panel {
        padding: 1.65rem 1.5rem 1.75rem;
    }
}

@media (min-width: 1024px) {
    .product-detail__panel {
        position: sticky;
        top: 1rem;
    }
}

.product-detail__kicker {
    margin: 0 0 0.4rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.product-detail__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f0f0f;
}

.product-detail__rating {
    margin-top: 0.85rem;
}

.product-detail__stars.popular-deals__stars {
    margin: 0;
}

.product-detail__lead {
    margin: 1rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
}

.product-detail__price-block {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.15rem;
    border-radius: 16px;
    background: #faf7f7;
    border: 1px solid #e8e0e0;
}

.product-detail__price-label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.product-detail__price {
    margin: 0.25rem 0 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #0f0f0f;
}

.product-detail__stock-wrap {
    text-align: right;
}

.product-detail__stock-note {
    margin: 0.45rem 0 0;
    font-size: 0.8125rem;
    color: #64748b;
}

.product-detail__cart-card {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid #ece8e8;
}

.product-detail__cart-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .product-detail__cart-form {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
    }
}

.product-detail__qty {
    flex: 0 0 auto;
}

.product-detail__qty-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
}

.product-detail__qty-input {
    width: 100%;
    min-width: 5.5rem;
    max-width: 7rem;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #f8f6f6;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.product-detail__qty-input:focus {
    border-color: #ff3b3b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.12);
}

.product-detail__qty-input:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.product-detail__add-btn {
    flex: 1;
    min-width: 12rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: #ff3b3b;
    color: #fff;
    transition: background 0.15s ease;
}

.product-detail__add-btn:hover:not(:disabled) {
    background: #e62e2e;
}

.product-detail__add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-detail__secondary-link {
    display: inline-flex;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
}

.product-detail__secondary-link:hover {
    text-decoration: underline;
}

.product-detail__about {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ece8e8;
}

.product-detail__about-title {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f0f0f;
}

.product-detail__about-text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #475569;
}

.product-detail__related {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.product-detail__related-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.product-detail__related-title {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #0f0f0f;
}

.product-detail__related-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
}

.product-detail__related-link:hover {
    text-decoration: underline;
}

.product-detail__related-grid {
    margin-top: 0;
}

/* Cart page */
.cart-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: #f1f5f9;
    font-family: Inter, system-ui, sans-serif;
}

.cart-page__shell {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-page__head {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

@media (min-width: 640px) {
    .cart-page__head {
        padding: 1.65rem 1.75rem;
    }
}

.cart-page__kicker {
    margin: 0 0 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.cart-page__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f0f0f;
}

.cart-page__lead {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
}

.cart-page__head-actions {
    margin-top: 0.9rem;
}

.cart-page__continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.15rem;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #fff;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        border-color 0.15s ease,
        color 0.15s ease;
}

.cart-page__continue:hover {
    border-color: #fecaca;
    color: #ff3b3b;
}

.cart-page__continue--full {
    width: 100%;
    margin-top: 0.65rem;
}

.cart-page__layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .cart-page__layout {
        grid-template-columns: 1fr min(22rem, 100%);
    }
}

.cart-page__lines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-line {
    display: grid;
    gap: 1rem;
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.1rem 1.15rem;
    box-shadow: 0 10px 36px -26px rgba(15, 15, 15, 0.1);
    grid-template-columns: 5.5rem 1fr;
}

@media (min-width: 640px) {
    .cart-line {
        grid-template-columns: 7rem 1fr auto;
        align-items: center;
        padding: 1.15rem 1.35rem;
    }
}

.cart-line__media {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 1 / 1;
    grid-row: span 2;
}

@media (min-width: 640px) {
    .cart-line__media {
        grid-row: auto;
    }
}

.cart-line__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cart-line__body {
    min-width: 0;
}

.cart-line__category {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.cart-line__title {
    margin: 0.35rem 0 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f0f0f;
}

.cart-line__title a {
    color: inherit;
    text-decoration: none;
}

.cart-line__title a:hover {
    color: #ff3b3b;
}

.cart-line__unit {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    color: #64748b;
}

.cart-line__qty-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.65rem;
    margin-top: 0.85rem;
}

.cart-line__qty-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.cart-line__qty-input {
    width: 4.5rem;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #f8f6f6;
    padding: 0.45rem 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    outline: none;
}

.cart-line__qty-input:focus {
    border-color: #ff3b3b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.12);
}

.cart-line__update {
    border: none;
    border-radius: 9999px;
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #334155;
    border: 1px solid #e8e0e0;
    transition:
        border-color 0.15s ease,
        color 0.15s ease;
}

.cart-line__update:hover {
    border-color: #fecaca;
    color: #ff3b3b;
}

.cart-line__side {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f1f5f9;
}

@media (min-width: 640px) {
    .cart-line__side {
        grid-column: auto;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        padding-top: 0;
        border-top: none;
        border-left: 1px solid #f1f5f9;
        padding-left: 1.25rem;
        margin-left: 0.25rem;
    }
}

.cart-line__subtotal {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f0f0f;
}

.cart-line__remove {
    border: none;
    background: none;
    padding: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ff3b3b;
    cursor: pointer;
    text-decoration: underline;
}

.cart-line__remove-form {
    margin: 0;
}

.cart-page__empty {
    grid-column: 1 / -1;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 36px -26px rgba(15, 15, 15, 0.12);
}

.cart-page__empty-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-page__empty-text {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: #64748b;
}

.cart-page__empty-btn {
    display: inline-flex;
    margin-top: 1.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    background: #ff3b3b;
    color: #fff;
    border: 1px solid #ff3b3b;
    transition: background 0.15s ease;
}

.cart-page__empty-btn:hover {
    background: #e62e2e;
    border-color: #e62e2e;
}

.cart-page__summary {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

.cart-page__summary-kicker {
    margin: 0 0 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.cart-page__summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #64748b;
}

.cart-page__summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ece8e8;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f0f0f;
}

.cart-page__cta {
    display: flex;
    margin-top: 1.25rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    background: #ff3b3b;
    color: #fff;
    border: 1px solid #ff3b3b;
    transition: background 0.15s ease;
}

.cart-page__cta:hover {
    background: #e62e2e;
    border-color: #e62e2e;
}

/* Checkout */
.checkout-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: #f1f5f9;
    font-family: Inter, system-ui, sans-serif;
}

.checkout-page__shell {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.checkout-page__head {
    margin-bottom: 1.5rem;
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

@media (min-width: 640px) {
    .checkout-page__head {
        padding: 1.65rem 1.75rem;
    }
}

.checkout-page__kicker {
    margin: 0 0 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.checkout-page__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f0f0f;
}

.checkout-page__title--confirmation {
    margin-top: 0.75rem;
}

.checkout-page__lead {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
    max-width: 48rem;
}

.checkout-page__grid {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .checkout-page__grid {
        grid-template-columns: 1fr min(24rem, 100%);
    }
}

.checkout-page__main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.checkout-page__cards {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .checkout-page__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.checkout-page__cards--confirmation {
    margin-top: 1.25rem;
}

@media (min-width: 768px) {
    .checkout-page__cards--confirmation {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .checkout-page__cards--confirmation {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.checkout-page__stat {
    border-radius: 16px;
    border: 1px solid #ece8e8;
    background: #faf7f7;
    padding: 1rem 1.1rem;
}

.checkout-page__stat--accent {
    background: #fff5f5;
    border-color: #fecaca;
}

.checkout-page__stat--dark {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

.checkout-page__stat--dark .checkout-page__stat-label {
    color: #fecaca;
}

.checkout-page__stat--dark .checkout-page__stat-value {
    color: #fff;
}

.checkout-page__stat-label {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.checkout-page__stat-value {
    margin: 0.45rem 0 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f0f0f;
    word-break: break-word;
}

.checkout-page__stat-value--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.95rem;
}

.checkout-page__ref-panel {
    border-radius: 20px;
    border: 1px solid #fecaca;
    background: #fff;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 10px 32px -24px rgba(255, 59, 59, 0.2);
}

.checkout-page__ref-label {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.checkout-page__ref-hint {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
}

.checkout-page__ref-code {
    margin: 0.85rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
    word-break: break-all;
}

.checkout-page__copy {
    margin-top: 0.85rem;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #fff;
    padding: 0.5rem 1.1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        color 0.15s ease;
}

.checkout-page__copy:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
}

.checkout-page__form {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .checkout-page__form {
        padding: 1.65rem 1.75rem;
    }
}

.checkout-page__payment-panel {
    border-radius: 16px;
    border: 1px solid #e8e0e0;
    background: linear-gradient(180deg, #fffefb 0%, #faf7f7 100%);
    padding: 1.15rem 1.25rem 1.25rem;
}

.checkout-page__payment-title {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f0f0f;
}

.checkout-page__payment-lead {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}

.checkout-page__payment-dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.checkout-page__payment-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ece8e8;
}

.checkout-page__payment-row dt {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.checkout-page__payment-row dd {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
    text-align: right;
    word-break: break-word;
}

.checkout-page__payment-row--amount {
    border-color: #fecaca;
    background: #fff5f5;
}

.checkout-page__payment-row--amount dt {
    color: #ff3b3b;
}

.checkout-page__payment-row--amount dd {
    font-size: 1.125rem;
    font-weight: 700;
    color: #c41e1e;
}

.checkout-page__payment-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #0f172a;
}

.checkout-page__stat-value--momo {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #0f172a;
}

.checkout-page__field {
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #f8f6f6;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.checkout-page__field:focus {
    border-color: #ff3b3b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.12);
    outline: none;
}

.checkout-page__field-help {
    margin: 0.35rem 0 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.45;
}

.checkout-page__upload-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-page__upload-wrap {
    position: relative;
    margin-top: 0.35rem;
}

.checkout-page__upload-zone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    padding: 1.75rem 1.25rem 1.5rem;
    min-height: 10.5rem;
    border-radius: 16px;
    border: 2px dashed #ddd5d5;
    background: #fafafa;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.checkout-page__upload-zone:hover {
    border-color: #ff9a9a;
    background: #fffbfb;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.08);
}

.checkout-page__upload-wrap:focus-within .checkout-page__upload-zone {
    border-color: #ff3b3b;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.15);
}

.checkout-page__file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    font-size: 0;
}

.checkout-page__upload-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    background: #fff0f0;
    color: #ff3b3b;
}

.checkout-page__upload-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.checkout-page__upload-hint {
    font-size: 0.8125rem;
    color: #64748b;
    max-width: 16rem;
    line-height: 1.45;
}

.checkout-page__upload-filename {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    word-break: break-all;
    max-width: 100%;
    padding: 0 0.5rem;
}

.checkout-page__upload-filename--has-file {
    color: #0f172a;
    font-weight: 600;
}

.checkout-page__upload-badge {
    margin-top: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.45rem 1.15rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: #ff3b3b;
    color: #fff;
    pointer-events: none;
}

.checkout-page__steps {
    border-radius: 16px;
    background: #faf7f7;
    border: 1px solid #ece8e8;
    padding: 1.1rem 1.2rem;
}

.checkout-page__steps-title {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f0f0f;
}

.checkout-page__steps-list {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #475569;
}

.checkout-page__steps-list li {
    margin-bottom: 0.35rem;
}

.checkout-page__steps--aside {
    margin-top: 1.25rem;
    border-radius: 14px;
    background: #faf7f7;
    border: 1px solid #ece8e8;
    padding: 1rem 1.05rem 1.1rem;
}

.checkout-page__steps--aside .checkout-page__steps-title {
    font-size: 0.9375rem;
}

.checkout-page__steps--aside .checkout-page__steps-list {
    font-size: 0.8125rem;
    padding-left: 1.1rem;
}

.checkout-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    border-radius: 9999px;
    padding: 0.8rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: #ff3b3b;
    color: #fff;
    transition: background 0.15s ease;
}

.checkout-page__submit:hover {
    background: #e62e2e;
}

.checkout-page__submit--inline {
    width: auto;
    min-width: 10rem;
    text-decoration: none;
}

.checkout-page__aside {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

.checkout-page__aside-kicker {
    margin: 0 0 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.checkout-page__lines {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.checkout-page__line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
}

.checkout-page__line-name {
    margin: 0;
    font-weight: 600;
    color: #0f0f0f;
}

.checkout-page__line-meta {
    margin: 0.2rem 0 0;
    font-size: 0.8125rem;
    color: #64748b;
}

.checkout-page__line-price {
    margin: 0;
    font-weight: 700;
    color: #0f0f0f;
    flex-shrink: 0;
}

.checkout-page__aside-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid #ece8e8;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f0f0f;
}

.checkout-page__back {
    display: inline-flex;
    margin-top: 1.1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
}

.checkout-page__back:hover {
    text-decoration: underline;
}

.checkout-page__back--btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #fff;
    color: #334155;
    text-decoration: none;
}

.checkout-page__back--btn:hover {
    border-color: #fecaca;
    color: #ff3b3b;
    text-decoration: none;
}

.checkout-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Auth (sign in, register, forgot / reset password) */
.auth-page .checkout-page__shell {
    max-width: 34rem;
}

.auth-page__card {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

@media (min-width: 640px) {
    .auth-page__card {
        padding: 1.65rem 1.75rem 1.75rem;
    }
}

.auth-page__form {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.auth-page__field {
    margin: 0;
}

.auth-page__flash {
    margin-bottom: 1rem;
    border-radius: 16px;
    border: 1px solid #bbf7d0;
    background: #ecfdf5;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #047857;
}

.auth-page__remember {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.875rem;
    color: #475569;
    cursor: pointer;
}

.auth-page__checkbox {
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 0.35rem;
    border: 1px solid #e8e0e0;
    accent-color: #ff3b3b;
}

.auth-page__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.auth-page__actions--end {
    justify-content: flex-end;
}

.auth-page__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s ease;
}

.auth-page__link:hover {
    color: #0f172a;
}

.auth-page__subcta {
    margin-top: 1.35rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
}

.auth-page__inline-link {
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
}

.auth-page__inline-link:hover {
    text-decoration: underline;
}

.auth-page__verify-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.checkout-page__confirmation-card {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.5rem 1.35rem 1.75rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

@media (min-width: 640px) {
    .checkout-page__confirmation-card {
        padding: 2rem 2rem 2.25rem;
    }
}

.checkout-page__account-card,
.checkout-page__billing-card {
    margin-top: 1.25rem;
    border-radius: 14px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1rem 1.05rem 1.1rem;
}

.checkout-page__account-title,
.checkout-page__billing-title {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.checkout-page__account-dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkout-page__account-row {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 0.35rem 0.65rem;
    font-size: 0.8125rem;
}

.checkout-page__account-row dt {
    margin: 0;
    font-weight: 600;
    color: #94a3b8;
}

.checkout-page__account-row dd {
    margin: 0;
    color: #0f172a;
    word-break: break-word;
}

.checkout-page__billing-label {
    margin: 0 0 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}

.checkout-page__billing-body {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #334155;
}

.checkout-page__billing-missing {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}

.checkout-page__billing-link {
    display: inline-flex;
    margin-top: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
}

.checkout-page__billing-link:hover {
    text-decoration: underline;
}

.checkout-page__fulfillment {
    margin: 1rem 0 0;
    padding: 0;
    border: none;
}

.checkout-page__fulfillment-legend {
    padding: 0;
    margin: 0 0 0.65rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
}

.checkout-page__choice {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    border: 1px solid #e8e0e0;
    background: #fafafa;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        background 0.15s ease;
}

.checkout-page__choice:last-of-type {
    margin-bottom: 0;
}

.checkout-page__choice:hover:not(.checkout-page__choice--disabled) {
    border-color: #fecaca;
    background: #fff;
}

.checkout-page__choice--disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.checkout-page__choice-input {
    margin-top: 0.2rem;
    width: 1rem;
    height: 1rem;
    accent-color: #ff3b3b;
    flex-shrink: 0;
}

.checkout-page__choice-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.checkout-page__choice-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
}

.checkout-page__choice-desc {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #64748b;
}

.checkout-page__fulfillment-error {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
}

.checkout-page__ship-box {
    margin-top: 1.25rem;
    border-radius: 14px;
    border: 1px solid #e8e0e0;
    background: #faf7f7;
    padding: 1rem 1.15rem;
    max-width: 40rem;
}

.checkout-page__ship-label {
    margin: 0 0 0.4rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.checkout-page__ship-body {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #334155;
}

.checkout-page__proof-note {
    margin: 1.25rem 0 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    max-width: 40rem;
}

/* My orders — storefront (matches products / cart) */
.orders-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: #f1f5f9;
    font-family: Inter, system-ui, sans-serif;
}

.orders-page__shell {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.orders-page__head {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

@media (min-width: 640px) {
    .orders-page__head {
        padding: 1.65rem 1.75rem;
    }
}

.orders-page__kicker {
    margin: 0 0 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.orders-page__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f0f0f;
}

.orders-page__lead {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 40rem;
}

.orders-page__panel {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
    overflow: hidden;
}

/* Responsive order list: cards on small screens, grid row on md+ */
.orders-page__list-wrap {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.orders-page__thead {
    display: none;
}

.orders-page__card {
    margin: 0;
    border-radius: 16px;
    border: 1px solid #ece8e8;
    background: #fafafa;
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 24px -18px rgba(15, 15, 15, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.orders-page__cell {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.orders-page__cell-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.orders-page__cell-value {
    font-size: 0.875rem;
    color: #475569;
}

.orders-page__cell-value--status {
    display: inline-flex;
    flex-wrap: wrap;
}

.orders-page__cell--action {
    margin-top: 0.15rem;
    padding-top: 0.85rem;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 767px) {
    .orders-page__cell--action .orders-page__view {
        width: 100%;
        min-height: 2.75rem;
    }
}

@media (min-width: 768px) {
    .orders-page__list-wrap {
        padding: 0;
        gap: 0;
    }

    .orders-page__thead {
        display: grid;
        grid-template-columns:
            minmax(6.5rem, 1.15fr) minmax(5rem, 0.85fr) minmax(4.5rem, 0.55fr) minmax(5.5rem, 0.8fr)
            minmax(6.5rem, 1fr) minmax(5rem, 0.7fr) auto;
        align-items: center;
        gap: 0.5rem 0.75rem;
        padding: 0.85rem 1rem;
        background: #faf7f7;
        border-bottom: 1px solid #ece8e8;
    }

    .orders-page__th {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #94a3b8;
    }

    .orders-page__th--action {
        text-align: right;
    }

    .orders-page__card {
        display: grid;
        grid-template-columns:
            minmax(6.5rem, 1.15fr) minmax(5rem, 0.85fr) minmax(4.5rem, 0.55fr) minmax(5.5rem, 0.8fr)
            minmax(6.5rem, 1fr) minmax(5rem, 0.7fr) auto;
        align-items: center;
        gap: 0.5rem 0.75rem;
        padding: 1rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #f1f5f9;
        box-shadow: none;
        background: transparent;
    }

    .orders-page__card:last-of-type {
        border-bottom: none;
    }

    .orders-page__cell {
        flex-direction: row;
        align-items: center;
        gap: 0.35rem;
    }

    .orders-page__cell-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .orders-page__cell--action {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        justify-content: flex-end;
    }

    .orders-page__view {
        width: auto;
    }
}

.orders-page__ref {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
}

.orders-page__amount {
    font-weight: 700;
    color: #0f172a;
}

.orders-page__date {
    color: #64748b;
    font-size: 0.8125rem;
}

.orders-page__pill {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.orders-page__pill--delivery {
    background: #fff5f5;
    color: #c41e1e;
    border-color: #fecaca;
}

.orders-page__view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    background: #ff3b3b;
    color: #fff;
    border: 1px solid #ff3b3b;
    transition: background 0.15s ease;
}

.orders-page__view:hover {
    background: #e62e2e;
    border-color: #e62e2e;
}

.orders-page__empty {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.orders-page__empty-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.orders-page__empty-text {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: #64748b;
}

.orders-page__empty-btn {
    display: inline-flex;
    margin-top: 1.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    background: #ff3b3b;
    color: #fff;
    border: 1px solid #ff3b3b;
    transition: background 0.15s ease;
}

.orders-page__empty-btn:hover {
    background: #e62e2e;
    border-color: #e62e2e;
}

/* Account / profile — storefront (orders + checkout patterns) */
.profile-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: #f1f5f9;
    font-family: Inter, system-ui, sans-serif;
}

.profile-page__shell {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-page__workspace {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

.profile-page__sidebar {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

@media (min-width: 1024px) {
    .profile-page__workspace {
        display: grid;
        grid-template-columns: minmax(15.75rem, 17.5rem) minmax(0, 1fr);
        gap: 1.75rem 2rem;
        align-items: start;
    }

    .profile-page__sidebar {
        order: unset;
        position: sticky;
        top: 1rem;
    }
}

.profile-page__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 18px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.1rem 1.15rem;
    box-shadow: 0 10px 32px -26px rgba(15, 15, 15, 0.1);
}

.profile-page__identity-avatar {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(145deg, #ff5a5a 0%, #ff3b3b 45%, #e62e2e 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 18px -8px rgba(255, 59, 59, 0.55);
}

.profile-page__identity-body {
    min-width: 0;
}

.profile-page__identity-name {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    word-break: break-word;
}

.profile-page__identity-email {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-page__side-nav {
    border-radius: 16px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1rem 1.1rem 1.1rem;
    box-shadow: 0 8px 28px -22px rgba(15, 15, 15, 0.12);
}

.profile-page__side-nav-label {
    margin: 0 0 0.65rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.profile-page__side-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.profile-page__side-nav-link {
    display: block;
    padding: 0.45rem 0.5rem;
    margin: 0 -0.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.profile-page__side-nav-link:hover {
    background: #fff5f5;
    color: #ff3b3b;
}

.profile-page__side-nav-link--danger {
    color: #b91c1c;
}

.profile-page__side-nav-link--danger:hover {
    background: #fef2f2;
    color: #991b1b;
}

.profile-page__sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0 12%, #e2e8f0 88%, transparent);
    margin: 0.15rem 0;
}

.profile-page__main-column {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

@media (min-width: 1024px) {
    .profile-page__main-column {
        order: unset;
    }
}

.profile-page__intro {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

@media (min-width: 640px) {
    .profile-page__intro {
        padding: 1.5rem 1.65rem 1.55rem;
    }
}

.profile-page__kicker {
    margin: 0 0 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.profile-page__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f0f0f;
}

.profile-page__lead {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 40rem;
}

.profile-page__split {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 960px) {
    .profile-page__split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem 1.5rem;
    }
}

.profile-page__section--anchor {
    scroll-margin-top: 6rem;
}

.profile-page__card--billing-wide {
    border-top: 3px solid #fff5f5;
}

.profile-page__form--billing {
    gap: 1.35rem;
}

.profile-page__billing-grid {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.profile-page__billing-row {
    display: grid;
    gap: 1rem;
    align-items: start;
}

@media (min-width: 640px) {
    .profile-page__billing-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

select.profile-page__select.checkout-page__field {
    border-radius: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m19 9-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 1rem 1rem;
    padding-right: 2.35rem;
}

select.profile-page__select.checkout-page__field:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.profile-page__card:has(.profile-page__section--anchor:target) {
    border-color: #fecaca;
    box-shadow:
        0 14px 40px -28px rgba(15, 15, 15, 0.12),
        0 0 0 1px rgba(255, 59, 59, 0.12);
}

.profile-page__side-nav-link:focus-visible {
    outline: 2px solid #ff3b3b;
    outline-offset: 2px;
}

.profile-page__side-nav-link--danger:focus-visible {
    outline-color: #b91c1c;
}

.profile-page__card {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
    padding: 1.35rem 1.25rem 1.5rem;
}

@media (min-width: 640px) {
    .profile-page__card {
        padding: 1.65rem 1.75rem;
    }
}

.profile-page__card--danger-zone {
    border-color: #fecaca;
    background: linear-gradient(180deg, #fff 0%, #fffbfb 100%);
}

.profile-page__section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-page__section--danger .profile-page__card-title {
    color: #991b1b;
}

.profile-page__card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.profile-page__card-lead {
    margin: 0.4rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
    max-width: 42rem;
}

.profile-page__form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.profile-page__form > div > label {
    color: #334155;
}

.profile-page__divider {
    margin-top: 0.25rem;
    padding-top: 1.35rem;
    border-top: 1px solid #f1f5f9;
}

.profile-page__subheading {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.profile-page__sublead {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
    max-width: 40rem;
}

.profile-page__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    padding-top: 0.25rem;
}

.profile-page__card .primary-action.profile-page__submit,
.profile-page__submit.primary-action {
    background-color: #ff3b3b;
    border-radius: 9999px;
}

.profile-page__card .primary-action.profile-page__submit:hover,
.profile-page__submit.primary-action:hover {
    background-color: #e62e2e;
}

.profile-page__saved {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #047857;
}

.profile-page__inline-link {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: underline;
    text-underline-offset: 0.12em;
    cursor: pointer;
    transition: color 0.15s ease;
}

.profile-page__inline-link:hover {
    color: #c41e1e;
}

.profile-page__verify-hint {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #334155;
}

.profile-page__verify-success {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #047857;
}

.profile-page__aside-block {
    border-radius: 16px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 10px 32px -26px rgba(15, 15, 15, 0.1);
}

.profile-page__aside-block--tip {
    border-color: #e2e8f0;
    background: linear-gradient(180deg, #faf7f7 0%, #fff 100%);
}

.profile-page__aside-kicker {
    margin: 0 0 0.65rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.profile-page__aside-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-page__aside-list a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: color 0.15s ease;
}

.profile-page__aside-list a:hover {
    color: #ff3b3b;
}

.profile-page__aside-text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}

.profile-page__delete-trigger,
.profile-page__delete-confirm {
    background-color: #ff3b3b !important;
    border-radius: 9999px;
}

.profile-page__delete-trigger:hover,
.profile-page__delete-confirm:hover {
    background-color: #e62e2e !important;
}

.profile-page__modal-form {
    padding: 1.5rem 1.35rem;
}

@media (min-width: 640px) {
    .profile-page__modal-form {
        padding: 1.75rem 1.85rem;
    }
}

.profile-page__modal-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
}

.profile-page__modal-lead {
    margin: 0.65rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.profile-page__modal-field {
    margin-top: 1.25rem;
}

.profile-page__modal-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
}

.profile-page__modal-actions .secondary-action {
    border-color: #e8e0e0;
    color: #334155;
}

.profile-page__modal-actions .secondary-action:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
}

/* —— Admin (storefront-aligned: orders / checkout palette) —— */
.admin-app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f1f5f9;
    font-family: Inter, system-ui, sans-serif;
    color: #0f172a;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #ece8e8;
    background: #fff;
    box-shadow: 0 10px 32px -28px rgba(15, 15, 15, 0.12);
}

.admin-header__shell {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .admin-header__shell {
        padding-top: 1.15rem;
        padding-bottom: 1.15rem;
    }
}

.admin-header__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    justify-content: space-between;
}

.admin-header__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.admin-header__brand .store-brand__name,
.admin-header__brand .store-brand__mark {
    color: #0f0f0f;
}

.admin-header__intro {
    flex: 1;
    min-width: 0;
}

.admin-header__kicker {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.admin-header__site-name {
    margin: 0.15rem 0 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f0f0f;
}

.admin-header__quick {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
}

.admin-header__storefront {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid #e8e0e0;
    background: #fff;
    transition:
        border-color 0.15s ease,
        color 0.15s ease;
}

.admin-header__storefront:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
}

.admin-header__logout-form {
    margin: 0;
}

.admin-header__logout {
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    border: none;
    background: none;
    padding: 0.45rem 0.35rem;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.admin-header__logout:hover {
    color: #c41e1e;
}

.admin-header__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    padding-top: 0.15rem;
    border-top: 1px solid #f1f5f9;
    margin: 0 -0.15rem;
    padding-top: 0.85rem;
}

.admin-header__nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}

.admin-header__nav-link:hover {
    background: #fff5f5;
    color: #ff3b3b;
}

.admin-header__nav-link--active {
    background: #fff5f5;
    color: #ff3b3b;
    border-color: #fecaca;
}

.admin-main {
    flex: 1;
}

.admin-main .primary-action {
    background-color: #ff3b3b;
}

.admin-main .primary-action:hover {
    background-color: #e62e2e;
}

.admin-footer {
    border-top: 1px solid #e2e8f0;
    background: #fff;
    padding: 1rem 0 1.35rem;
    margin-top: auto;
}

.admin-footer__inner {
    text-align: center;
}

.admin-footer__text {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
}

.admin-footer__text a {
    font-weight: 600;
    color: #334155;
    text-decoration: none;
}

.admin-footer__text a:hover {
    color: #ff3b3b;
}

.admin-page {
    padding-top: 1.75rem;
    padding-bottom: 2.5rem;
}

.admin-page__shell {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.admin-page__head {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
}

@media (min-width: 640px) {
    .admin-page__head {
        padding: 1.5rem 1.65rem 1.55rem;
    }
}

.admin-page__head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.admin-page__kicker {
    margin: 0 0 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff3b3b;
}

.admin-page__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f0f0f;
}

.admin-page__lead {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
    max-width: 42rem;
}

.admin-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    background: #ff3b3b;
    color: #fff;
    border: 1px solid #ff3b3b;
    transition: background 0.15s ease;
}

.admin-page__cta:hover {
    background: #e62e2e;
    border-color: #e62e2e;
}

.admin-panel {
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    box-shadow: 0 14px 40px -28px rgba(15, 15, 15, 0.12);
    overflow: hidden;
}

.admin-panel--padded {
    padding: 1.35rem 1.25rem 1.5rem;
}

@media (min-width: 640px) {
    .admin-panel--padded {
        padding: 1.65rem 1.75rem;
    }
}

.admin-panel__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.admin-panel__lead {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.admin-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-table {
    width: 100%;
    min-width: 44rem;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table thead {
    background: #faf7f7;
    border-bottom: 1px solid #ece8e8;
}

.admin-table th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.admin-table td {
    padding: 1rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    vertical-align: middle;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table__strong {
    font-weight: 700;
    color: #0f172a;
}

.admin-table__muted {
    font-size: 0.8125rem;
    color: #64748b;
}

.admin-table__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    align-items: center;
}

.admin-table__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
}

.admin-table__link:hover {
    text-decoration: underline;
}

.admin-table__link--muted {
    color: #334155;
}

.admin-table__link--muted:hover {
    color: #ff3b3b;
}

.admin-table__link--danger {
    color: #c41e1e;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

.admin-btn--success {
    background: #059669;
    color: #fff;
}

.admin-btn--success:hover {
    background: #047857;
}

.admin-btn--outline {
    background: #fff;
    color: #c41e1e;
    border: 1px solid #fecaca;
}

.admin-btn--outline:hover {
    background: #fef2f2;
}

.admin-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .admin-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.admin-stat {
    border-radius: 16px;
    border: 1px solid #ece8e8;
    background: #fff;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 10px 32px -26px rgba(15, 15, 15, 0.1);
}

.admin-stat__label {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.admin-stat__value {
    margin: 0.45rem 0 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.admin-stat__value--accent {
    color: #ff3b3b;
}

.admin-empty {
    text-align: center;
    padding: 2rem 1.25rem;
    color: #64748b;
    font-size: 0.875rem;
}

.admin-proof-thumb {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    border-radius: 12px;
}

.admin-proof-thumb img {
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e8e0e0;
}

.admin-proof-thumb:hover img {
    border-color: #ff3b3b;
}

.admin-proof-thumb__label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #ff3b3b;
    text-decoration: underline;
    text-underline-offset: 0.1em;
}

.admin-table--compact th,
.admin-table--compact td {
    padding: 0.55rem 0.65rem;
}

.admin-table--compact {
    min-width: 0;
}

.admin-order-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.25rem;
    overflow-y: auto;
}

.admin-order-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.admin-order-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(52rem, 100%);
    margin-top: 2vh;
    margin-bottom: 2rem;
    border-radius: 20px;
    border: 1px solid #ece8e8;
    background: #fff;
    box-shadow: 0 24px 60px -24px rgba(15, 15, 15, 0.25);
    max-height: calc(100vh - 2.5rem);
    display: flex;
    flex-direction: column;
}

.admin-order-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.admin-order-modal__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

.admin-order-modal__close {
    flex-shrink: 0;
    border: none;
    background: #f8fafc;
    color: #475569;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 9999px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.admin-order-modal__close:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
}

.admin-order-modal__body {
    padding: 1.15rem 1.25rem 1.5rem;
    overflow-y: auto;
}

.admin-order-modal__loading {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.admin-order-modal__grid {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.admin-order-modal__section {
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    background: #fafafa;
    padding: 1rem 1.1rem;
}

.admin-order-modal__section--wide {
    background: #fff;
    border-color: #ece8e8;
}

.admin-order-modal__h {
    margin: 0 0 0.65rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.admin-order-modal__label {
    display: block;
    margin: 0 0 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

.admin-order-modal__dl {
    margin: 0;
    display: grid;
    gap: 0.45rem 1rem;
}

@media (min-width: 640px) {
    .admin-order-modal__dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.admin-order-modal__dl dt {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}

.admin-order-modal__dl dd {
    margin: 0.1rem 0 0;
    font-size: 0.875rem;
    color: #0f172a;
    word-break: break-word;
}

.admin-order-modal__p {
    margin: 0;
    font-size: 0.875rem;
    color: #334155;
}

.admin-order-modal__ship {
    margin-top: 0.75rem;
}

.admin-order-modal__ship-label {
    margin: 0 0 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ff3b3b;
}

.admin-order-modal__pre {
    margin: 0;
    white-space: pre-wrap;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #334155;
    background: #f8fafc;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    border: 1px dashed #cbd5e1;
}

.admin-order-modal__proof-frame {
    margin-top: 0.65rem;
    display: block;
    width: 100%;
    max-width: 28rem;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    border-radius: 14px;
}

.admin-order-modal__proof-img {
    display: block;
    width: 100%;
    max-height: 14rem;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid #ece8e8;
    background: #f8fafc;
}

.admin-order-lightbox {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.admin-order-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
}

.admin-order-lightbox__img {
    position: relative;
    z-index: 1;
    max-width: min(96vw, 56rem);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.admin-order-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8125rem;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
}

.admin-order-lightbox__close:hover {
    color: #ff3b3b;
}
