/* Legacy page bridge */
.btn--primary {
    background-color: var(--theme-tertiary, var(--theme-primary, #ee6f57)) !important;
    border-color: var(--theme-tertiary, var(--theme-primary, #ee6f57)) !important;
    color: #fff !important;
}

.btn--primary:hover {
    background-color: var(--theme-secondary, #202534) !important;
    border-color: var(--theme-secondary, #202534) !important;
    color: #fff !important;
}

:root {
    --ink: var(--nova-theme-secondary, #111c42);
    --blue: var(--nova-theme-secondary, #16264d);
    --yellow: #ffe65c;
    --cream: #fffdf7;
    --muted: #6c7181;
    --line: #e5e7ed;
    --orange: var(--nova-theme-primary, #ff714b);
    --shadow: 0 12px 30px rgba(16, 28, 63, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 14px;
}

.page-shell {
    width: min(1380px, calc(100% - 48px));
    margin-inline: auto;
}

.announcement {
    background: var(--yellow);
    color: var(--ink);
    text-align: center;
    font-size: 12px;
    letter-spacing: .03em;
    padding: 9px 20px;
}

.announcement span {
    color: var(--ink);
    font-weight: 700;
    margin-inline-end: 8px;
}

.announcement a {
    color: var(--ink);
    text-decoration: underline;
    margin-inline-start: 9px;
    font-weight: 700;
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(20, 30, 61, .08);
}

.topbar {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: Outfit, sans-serif;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -1.8px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    background: var(--yellow);
    width: 30px;
    height: 30px;
    border-radius: 10px 10px 10px 3px;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -2px;
}

.delivery {
    border: 0;
    border-inline-start: 1px solid var(--line);
    background: none;
    color: var(--ink);
    display: flex;
    gap: 8px;
    padding: 3px 0;
    padding-inline-start: 21px;
    align-items: center;
    text-align: start;
    cursor: pointer;
}

.delivery svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}

.delivery .chevron {
    width: 16px;
    height: 16px;
    margin-inline-start: 3px;
}

.delivery small {
    font-size: 9px;
    display: block;
    color: #767d8d;
    font-weight: 700;
    letter-spacing: .06em;
}

.delivery strong {
    font-size: 12px;
    white-space: nowrap;
}

.search {
    height: 44px;
    flex: 1;
    display: flex;
    background: #f5f6f8;
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: .2s;
}

.search:focus-within {
    background: #fff;
    border-color: #aab3c5;
    box-shadow: 0 0 0 3px #edf0f6;
}

.search input {
    min-width: 50px;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 16px;
    font: 500 13px "DM Sans";
    color: var(--ink);
}

.search input::placeholder {
    color: #8a8f9e;
}

.search button {
    width: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
}

.search svg, .action-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-button {
    background: transparent;
    border: 0;
    color: var(--ink);
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 7px;
    font: 600 12px "DM Sans";
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.flag {
    display: grid;
    place-items: center;
    width: 25px;
    height: 18px;
    border-radius: 2px;
    background: linear-gradient(#d92d3e 0 33%, #fff 33% 66%, #111 66%);
    color: #fff;
    text-shadow: 0 1px 1px #000;
    font-size: 7px;
    font-weight: 800;
}

.flag img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.language-switcher {
    gap: 8px;
}

.language-switcher .chevron {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
}

.cart-count {
    position: absolute;
    top: -3px;
    inset-inline-end: -1px;
    background: var(--orange);
    color: #fff;
    border-radius: 20px;
    line-height: 15px;
    min-width: 15px;
    font-size: 9px;
    font-weight: 800;
    text-align: center;
    padding: 0 3px;
}

.nav {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 25px;
    border-top: 1px solid #f0f1f3;
    overflow: visible;
}

.nav a {
    text-decoration: none;
    color: #333d5d;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
}

.nav a:hover {
    color: var(--theme-tertiary, var(--theme-primary, #ee6f57));
}

.nav-highlight {
    color: var(--theme-tertiary, var(--theme-primary, #ee6f57)) !important;
}

.browse-button {
    height: 46px;
    margin-inline-start: -12px;
    border: 0;
    border-inline-end: 1px solid var(--line);
    padding: 0 20px 0 12px;
    background: transparent;
    color: var(--ink);
    font: 700 12px "DM Sans";
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    cursor: pointer;
}

[dir="rtl"] .browse-button {
    padding: 0 12px 0 20px;
}

.browse-button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.hamburger {
    width: 16px;
    display: grid;
    gap: 3px;
}

.hamburger i {
    height: 1.7px;
    background: var(--ink);
    display: block;
}

.nav-spacer {
    flex: 1;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 316px;
    gap: 16px;
    padding-top: 22px;
}

.hero-main {
    height: 350px;
    border-radius: 13px;
    overflow: hidden;
    position: relative;
    background: var(--yellow);
    display: flex;
}

.hero-copy {
    z-index: 2;
    padding-inline-start: 52px;
    width: 53%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    margin: 0 0 8px;
    color: #66708b;
}

.hero-main .eyebrow {
    color: #6a5a00;
}

.hero h1, .section-heading h2, .club-banner h2 {
    font: 700 clamp(30px, 3vw, 48px)/.95 Outfit, sans-serif;
    letter-spacing: -1.9px;
    margin: 0;
}

.hero h1 em, .club-banner em {
    font-style: normal;
    color: #f45138;
}

.hero-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.45;
    max-width: 280px;
    color: #3e4560;
    margin: 17px 0 22px;
}

.primary-button, .light-button {
    background: var(--theme-tertiary, var(--theme-primary, var(--ink)));
    color: #fff;
    text-decoration: none;
    height: 48px;
    padding: 0 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: transform .2s, background .2s;
}

.primary-button:hover, .light-button:hover {
    transform: translateY(-2px);
    background: var(--theme-secondary, #293c70);
    color: #fff;
}

.primary-button span, .light-button span {
    font-size: 18px;
    line-height: 10px;
}

.hero-art {
    position: absolute;
    inset: 0;
    inset-inline-start: 44%;
    overflow: hidden;
}

.hero-model {
    position: absolute;
    inset-inline-end: 1%;
    bottom: -16%;
    height: 118%;
    width: 56%;
    object-fit: cover;
    object-position: 60% center;
    border-radius: 100px 100px 0 0;
    filter: saturate(1.04);
}

.sun {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ff784c;
}

.sun-one {
    inset-inline-end: 41%;
    top: 12%;
}

.sun-two {
    width: 25px;
    height: 25px;
    inset-inline-end: 6%;
    top: 14%;
    background: #fff5bd;
}

.shape {
    position: absolute;
    border: 2px solid var(--ink);
    border-radius: 50%;
}

.shape-one {
    width: 65px;
    height: 65px;
    inset-inline-start: 5%;
    top: 20%;
}

.shape-two {
    width: 20px;
    height: 20px;
    inset-inline-start: 12%;
    bottom: 10%;
    border-color: #f45138;
}

.mini-product {
    position: absolute;
    background: #fff;
    border: 5px solid #fff;
    border-radius: 11px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.headphones {
    width: 87px;
    height: 88px;
    inset-inline-start: 5%;
    bottom: 14%;
    transform: rotate(-7deg);
}

.lamp {
    width: 71px;
    height: 73px;
    inset-inline-end: 33%;
    bottom: 4%;
    transform: rotate(8deg);
}

.event-pill {
    position: absolute;
    inset-inline-end: 4%;
    top: 8%;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    text-align: center;
    display: grid;
    place-content: center;
    transform: rotate(11deg);
    font-size: 8px;
    line-height: 1.35;
    font-weight: 700;
}

.event-pill strong {
    font: 700 17px Outfit, sans-serif;
    color: var(--yellow);
}

.hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.side-offer {
    overflow: hidden;
    border-radius: 13px;
    position: relative;
    padding: 23px 19px;
}

.side-offer p {
    font-size: 9px;
    letter-spacing: .13em;
    font-weight: 800;
    margin: 0 0 6px;
}

.side-offer h2 {
    font: 700 25px/.94 Outfit, sans-serif;
    letter-spacing: -1px;
    margin: 0 0 13px;
}

.side-offer a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
}

.blue-offer {
    background: #d7e6ff;
    color: #132554;
}

.blue-orb {
    position: absolute;
    inset-inline-end: -22px;
    bottom: -38px;
    width: 139px;
    height: 139px;
    border-radius: 50%;
    background: #6686d6;
    font: 700 67px Outfit;
    color: #d7e6ff;
    text-align: center;
    padding-top: 25px;
}

.peach-offer {
    background: #ffd6c8;
    color: #812b28;
}

.peach-offer img {
    position: absolute;
    width: 117px;
    height: 117px;
    object-fit: cover;
    inset-inline-end: -8px;
    bottom: -5px;
    border-radius: 45% 45% 8px 8px;
    mix-blend-mode: multiply;
}

.category-section {
    padding: 50px 0 55px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 21px;
}

.section-heading.compact {
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 28px;
    letter-spacing: -1.25px;
}

.section-heading a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.section-heading a span {
    font-size: 17px;
    margin-inline-start: 5px;
}

.categories {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.category {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    display: grid;
    gap: 10px;
}

.category-image {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    position: relative;
    border: 5px solid transparent;
    transition: transform .2s, border-color .2s;
}

.category:hover .category-image {
    transform: translateY(-5px);
    border-color: var(--yellow);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.sky { background: #cde8fa; }
.coral { background: #ffd6ca; }
.lilac { background: #e1d7ff; }
.sand { background: #f9e1c0; }
.green { background: #c8ecdc; }
.rose { background: #ffd9e4; }
.yellow { background: #fff2a8; }
.blue { background: #cfdcff; }

[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .site-header,
[dir="rtl"] main#top,
[dir="rtl"] .footer-nova {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .hero-copy,
[dir="rtl"] .side-offer,
[dir="rtl"] .section-heading,
[dir="rtl"] .deal-countdown-card,
[dir="rtl"] .promo-card,
[dir="rtl"] .product-card,
[dir="rtl"] .club-banner,
[dir="rtl"] .footer-grid,
[dir="rtl"] .footer-bottom,
[dir="rtl"] .category-detail,
[dir="rtl"] .menu-product,
[dir="rtl"] .nova-options-panel {
    text-align: right;
}

[dir="rtl"] .announcement {
    direction: rtl;
    text-align: center;
}

[dir="rtl"] .search input {
    text-align: right;
}

[dir="rtl"] .section-heading,
[dir="rtl"] .deal-countdown-card,
[dir="rtl"] .club-banner,
[dir="rtl"] .topbar,
[dir="rtl"] .nav,
[dir="rtl"] .header-actions {
    direction: rtl;
}

[dir="rtl"] .category {
    text-align: right;
}

[dir="rtl"] .category-image,
[dir="rtl"] .event-pill,
[dir="rtl"] .cart-count,
[dir="rtl"] .carousel-button,
[dir="rtl"] .flag {
    text-align: center;
}

[dir="rtl"] .primary-button span,
[dir="rtl"] .light-button span,
[dir="rtl"] .section-heading a span,
[dir="rtl"] .deal-countdown-card a span,
[dir="rtl"] .promo-card span,
[dir="rtl"] .carousel-button {
    display: inline-block;
}

.deal-section {
    background: #f5f6fa;
    padding: 47px 0 54px;
}

.deal-countdown-card {
    color: #687188;
    gap: 12px;
    justify-content: flex-end;
    text-align: start;
}

.deal-countdown-message {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.deal-countdown-units {
    gap: 5px;
}

.deal-countdown-units > b {
    color: #202534;
    font-size: 16px;
    line-height: 31px;
}

.deal-countdown-unit {
    min-width: 38px;
    text-align: center;
}

.deal-countdown-unit strong {
    background: #e9ebf2;
    border-radius: 5px;
    color: #202534;
    display: block;
    font: 700 15px/1 Outfit, sans-serif;
    padding: 8px 5px;
}

.deal-countdown-unit span {
    color: #737b8e;
    display: block;
    font-size: 8px;
    margin-top: 4px;
}

.deal-countdown-card > a {
    color: var(--theme-tertiary, var(--theme-primary, #202534));
    font-size: 14px;
    font-weight: 800;
    margin-inline-start: 6px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.deal-countdown-card > a:hover {
    color: var(--theme-secondary, #202534);
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.promo-card {
    border-radius: 12px;
    height: 214px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: var(--ink);
    padding: 27px;
    isolation: isolate;
}

.promo-card div {
    position: relative;
    z-index: 1;
    max-width: 48%;
}

.promo-card p {
    font-size: 12px;
    letter-spacing: .13em;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--theme-tertiary, var(--theme-primary, var(--ink)));
}

.promo-card h3 {
    font: 700 30px/.96 Outfit, sans-serif;
    letter-spacing: -1px;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.promo-card span {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-tertiary, var(--theme-primary, var(--ink)));
    transition: color 0.2s ease;
}

.promo-card:hover span {
    color: var(--theme-secondary, var(--ink));
}

.promo-card img {
    position: absolute;
    inset: 0 0 0 auto;
    width: 52%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

[dir="rtl"] .promo-card img {
    inset: 0 auto 0 0;
}

[dir="rtl"] .promo-card div {
    margin-inline-start: 0;
    margin-inline-end: auto;
}

.card-one { background: #d3e7ff; }
.card-one img { width: 58%; mask-image: linear-gradient(to right, transparent 0%, #000 36%); }
[dir="rtl"] .card-one img { mask-image: linear-gradient(to right, #000 64%, transparent 100%); }

.card-two { background: #d8f0d6; }
.card-two img { mask-image: linear-gradient(to right, transparent 0%, #000 32%); }
[dir="rtl"] .card-two img { mask-image: linear-gradient(to right, #000 68%, transparent 100%); }

.card-three { background: #ffd9c9; }
.card-three img { mask-image: linear-gradient(to right, transparent 0%, #000 32%); }
[dir="rtl"] .card-three img { mask-image: linear-gradient(to right, #000 68%, transparent 100%); }

.products-section {
    padding: 58px 0 70px;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-button {
    border: 1px solid var(--line);
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-size: 18px;
    transition: .2s;
    display: grid;
    place-items: center;
}

.carousel-button:hover {
    background: var(--ink);
    color: #fff;
}

.product-rail {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px;
}

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

.product-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px;
    min-width: 0;
    position: relative;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.product-card > a {
    text-decoration: none;
    color: var(--ink);
    display: block;
}

.product-image {
    background: #f5f5f6;
    border-radius: 7px;
    height: 170px;
    display: block;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.wish {
    position: absolute;
    inset-inline-end: 18px;
    top: 18px;
    width: 30px;
    height: 30px;
    border: 0;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 2px 7px #0002;
    color: var(--nova-theme-secondary, var(--ink));
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.wish i {
    font-family: 'FontAwesome' !important;
    font-size: 18px !important;
    line-height: 1 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wish[aria-busy="true"] {
    pointer-events: none;
}

.wish.active,
.wish.wishlist_icon_active {
    color: #f34d4d !important;
}

.badge {
    position: absolute;
    top: 157px;
    inset-inline-start: 16px;
    border-radius: 3px;
    padding: 4px 8px;
    background: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
}

.product-card h3 {
    font-size: 16px;
    line-height: 1.32;
    margin: 12px 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating {
    font-size: 14px;
    margin: 0 0 7px;
    color: #f19a24;
    font-weight: 700;
}

.rating span {
    color: #8e94a4;
    font-weight: 500;
}

.price {
    margin: 0 0 10px;
    font: 700 18px Outfit, sans-serif;
}

.price small {
    font: 700 14px "DM Sans";
}

.price del {
    font: 500 10px "DM Sans";
    color: #8d92a0;
    margin-inline-start: 3px;
}

.add-button {
    border: 1px solid var(--theme-tertiary, var(--theme-primary, #ee6f57));
    width: 100%;
    height: 32px;
    border-radius: 5px;
    background: #fff;
    color: var(--theme-tertiary, var(--theme-primary, #ee6f57));
    font: 700 10px "DM Sans";
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.add-button span {
    font-size: 16px;
    line-height: 0;
}

.add-button:hover {
    background: var(--theme-secondary, var(--theme-tertiary, #ee6f57));
    border-color: var(--theme-secondary, var(--theme-tertiary, #ee6f57));
    color: #fff;
}

.club-banner {
    min-height: 217px;
    border-radius: 12px;
    padding: 34px 51px;
    display: flex;
    gap: 26px;
    align-items: center;
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.club-symbol {
    width: 94px;
    height: 94px;
    flex: none;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font: 800 55px/.9 Outfit;
    letter-spacing: -8px;
    display: grid;
    place-content: center;
    position: relative;
    z-index: 1;
}

.club-symbol span {
    font-size: 21px;
    color: #f3553d;
    letter-spacing: -3px;
    position: absolute;
    inset-inline-end: 13px;
    top: 16px;
}

.club-banner .eyebrow {
    color: var(--yellow);
}

.club-banner h2 {
    font-size: 33px;
    letter-spacing: -1.4px;
    color: #ffffff;
}

.club-banner > div:nth-child(2) > p:last-child {
    font-size: 13px;
    color: #c3cbdf;
    margin: 10px 0 0;
}

.light-button {
    margin-inline-start: auto;
    z-index: 1;
    background: #fff;
    color: var(--ink);
    white-space: nowrap;
}

.footer-nova {
    margin-top: 70px;
    background: #f5f6fa;
    padding-top: 47px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr 1.3fr;
    gap: 45px;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-nova p {
    font-size: 12px;
    color: #757d90;
    margin: 0;
}

.footer-nova h3 {
    font: 700 14px Outfit;
    margin: 0 0 14px;
}

.footer-nova a:not(.brand) {
    color: #626b80;
    text-decoration: none;
    display: block;
    font-size: 12px;
    margin: 0 0 10px;
}

.footer-nova a:not(.brand):hover {
    color: var(--orange);
}

.newsletter form {
    height: 39px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    margin-top: 13px;
    overflow: hidden;
}

.newsletter input {
    background: transparent;
    border: 0;
    outline: 0;
    padding: 0 11px;
    min-width: 0;
    flex: 1;
    font: 12px "DM Sans";
}

.newsletter button {
    border: 0;
    background: var(--yellow);
    width: 40px;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.footer-bottom {
    background-color: transparent !important;
    border-top: 1px solid #e3e5eb;
    margin-top: 41px;
    padding: 17px 0;
    display: flex;
    justify-content: space-between;
    color: #80879a;
    font-size: 10px;
}

.footer-top {
    background-color: transparent !important;
}

.toast {
    position: fixed;
    z-index: 50;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 120px);
    background: var(--ink);
    color: #fff;
    border-radius: 7px;
    padding: 13px 16px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow);
    opacity: 0;
    transition: .3s;
}

.toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.toast span {
    color: var(--yellow);
    margin-inline-start: 8px;
}

.browse-menu-wrap {
    height: 100%;
    position: relative;
}

.browse-menu-wrap .browse-button {
    margin-inline-start: -12px;
}

.browse-button[aria-expanded="true"] {
    background: #f5f6fa;
}

.browse-button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.category-menu {
    position: absolute;
    z-index: 30;
    top: 52px;
    inset-inline-start: -12px;
    width: 690px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    box-shadow: 0 18px 40px rgba(16, 28, 63, .17);
    display: flex;
    overflow: hidden;
}

.category-menu[hidden] {
    display: none;
}

.category-list {
    width: 266px;
    flex: none;
    background: #fff;
    border-inline-end: 1px solid var(--line);
    padding: 8px;
}

.category-menu-item {
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: 6px;
    padding: 10px 9px;
    color: var(--ink);
    font: 700 12px "DM Sans";
    text-align: start;
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
}

.category-menu-item:hover, .category-menu-item.active {
    background: #f2f5fb;
}

.category-menu-item span {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 6px;
    background: #fff2ad;
    font-size: 14px;
}

.category-menu-item b {
    margin-inline-start: auto;
    font-size: 18px;
    font-weight: 400;
}

.category-detail {
    min-width: 0;
    flex: 1;
    padding: 23px 25px;
    background: #fcfdff;
}

.category-kicker {
    color: #e55b3e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    margin: 0 0 6px;
}

.category-detail h3 {
    margin: 0 0 15px;
    font: 700 22px Outfit, sans-serif;
    letter-spacing: -.7px;
}

.subcategory-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 15px;
    margin-bottom: 18px;
}

.category-menu .subcategory-links a {
    padding: 4px 0 !important;
    color: #3d496c !important;
    border-radius: 0;
    font-size: 11px !important;
    font-weight: 600;
    text-decoration: none;
}

.category-menu .subcategory-links a:hover {
    background: transparent;
    color: var(--orange) !important;
}

.menu-product {
    display: flex !important;
    align-items: center;
    gap: 11px;
    padding: 8px !important;
    background: #e8efff;
    border-radius: 7px;
    color: var(--ink) !important;
    text-decoration: none;
}

.menu-product:hover {
    background: #dce7ff !important;
}

.menu-product img {
    width: 58px;
    height: 61px;
    object-fit: cover;
    border-radius: 5px;
}

.menu-product span {
    display: grid;
    gap: 2px;
}

.menu-product small {
    font-size: 8px;
    color: #6679aa;
    font-weight: 800;
    letter-spacing: .1em;
}

.menu-product strong {
    font-size: 11px;
}

.menu-product em {
    font-size: 10px;
    color: #e55b3e;
    font-weight: 800;
    font-style: normal;
}

.cart-overlay {
    position: fixed;
    z-index: 39;
    inset: 0;
    background: rgba(11, 19, 46, .43);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    z-index: 40;
    top: 0;
    inset-inline-end: 0;
    width: min(430px, 100%);
    height: 100dvh;
    background: #fff;
    box-shadow: -16px 0 40px rgba(12, 22, 54, .2);
    transform: translateX(105%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    color: var(--ink);
}

[dir="rtl"] .cart-drawer {
    transform: translateX(-105%);
}

.cart-drawer.show {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 27px 21px;
    border-bottom: 1px solid var(--line);
}

.cart-drawer-header .eyebrow {
    margin-bottom: 6px;
}

.cart-drawer h2 {
    margin: 0;
    font: 700 25px Outfit, sans-serif;
    letter-spacing: -1px;
}

.drawer-item-count {
    color: #8a91a2;
    font: 600 11px "DM Sans";
    letter-spacing: 0;
    margin-inline-start: 5px;
}

.drawer-close {
    width: 32px;
    height: 32px;
    background: #f4f5f7;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.cart-items {
    padding: 8px 27px;
    overflow: auto;
    flex: 1;
}

.cart-item {
    display: flex;
    gap: 12px;
    position: relative;
    padding: 17px 20px 17px 0;
    border-bottom: 1px solid var(--line);
}

[dir="rtl"] .cart-item {
    padding: 17px 0 17px 20px;
}

.cart-item > img {
    width: 76px;
    height: 80px;
    border-radius: 6px;
    background: #f4f5f7;
    object-fit: cover;
}

.cart-item h3 {
    font-size: 12px;
    line-height: 1.3;
    margin: 2px 0 4px;
}

.cart-item h3 a {
    color: var(--ink, #202534);
    text-decoration: none;
    transition: color .2s;
}

.cart-item h3 a:hover {
    color: var(--theme-tertiary, var(--theme-primary, #ee6f57));
}

.cart-item p {
    font-size: 10px;
    color: #7e8799;
    margin: 0 0 6px;
}

.cart-item strong {
    font: 700 14px Outfit, sans-serif;
    color: var(--ink, #202534);
}

.cart-summary {
    padding: 20px 27px 27px;
    border-top: 1px solid var(--line);
    background: #fcfcfd;
}

.cart-summary > div {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.cart-summary strong {
    font: 700 19px Outfit, sans-serif;
    color: var(--theme-tertiary, var(--theme-primary, #ee6f57));
}

.cart-summary p {
    font-size: 10px;
    color: #798195;
    margin: 8px 0 16px;
}

.checkout-button, .continue-shopping {
    width: 100%;
    height: 43px;
    border-radius: 6px;
    font: 700 12px "DM Sans";
    cursor: pointer;
}

.checkout-button {
    border: 0;
    background: var(--theme-tertiary, var(--theme-primary, #ee6f57)) !important;
    color: #fff !important;
    transition: background .2s;
}

.checkout-button:hover {
    background: var(--theme-secondary, #202534) !important;
    color: #fff !important;
}

.checkout-button span {
    font-size: 18px;
    margin-inline-start: 22px;
}

.continue-shopping {
    border: 0;
    background: transparent;
    color: var(--theme-tertiary, var(--theme-primary, #ee6f57));
    margin-top: 6px;
    transition: color .2s;
}

.continue-shopping:hover {
    color: var(--theme-secondary, #202534);
    text-decoration: underline;
}

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

@media (max-width: 1100px) {
    .topbar { gap: 15px; }
    .delivery { display: none; }
    .hero { grid-template-columns: 1fr 260px; }
    .categories { gap: 10px; }
    .category-image { height: 105px; width: 105px; }
    .hero-copy { padding-inline-start: 35px; width: 55%; }
    .hero h1 { font-size: clamp(26px, 3.2vw, 38px); }
    .hero-art { inset-inline-start: 45%; }
    .shape-one { display: none; }
    .nav { gap: 16px; }
    .nav a:nth-of-type(n+7) { display: none; }
    .product-rail { grid-template-columns: repeat(5, 220px); }
    .product-image { height: 185px; }
}

@media (max-width: 760px) {
    .page-shell { width: min(100% - 28px, 600px); }
    .announcement { font-size: 10px; padding: 8px; }
    .announcement span { display: none; }
    .topbar { height: 62px; gap: 11px; }
    .brand { font-size: 25px; }
    .brand-mark { width: 25px; height: 25px; font-size: 19px; border-radius: 8px 8px 8px 3px; }
    .header-actions { gap: 4px; }
    .profile-button span { display: none; }
    .search { height: 38px; order: 5; position: absolute; top: 68px; inset-inline-start: 14px; width: calc(100% - 28px); z-index: 1; background: #f4f5f7; }
    .site-header { padding-bottom: 46px; }
    .nav { height: 37px; gap: 18px; overflow: auto; }
    .browse-button { height: 37px; }
    .nav a { font-size: 10px; }
    .nav a:nth-of-type(n+5) { display: none; }
    .hero { display: block; padding-top: 15px; }
    .hero-main { height: 330px; }
    .hero-copy { padding-inline-start: 24px; width: 55%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
    .hero h1 { font-size: clamp(24px, 5.5vw, 32px); }
    .hero-copy > p:not(.eyebrow) { font-size: 12px; max-width: 175px; margin: 12px 0 18px; }
    .hero-art { inset-inline-start: 40%; }
    .hero-model { inset-inline-end: -10%; width: 80%; height: 108%; }
    .headphones { width: 58px; height: 58px; inset-inline-start: 5%; bottom: 20%; }
    .lamp { display: none; }
    .shape-one, .shape-two, .sun-two { display: none; }
    .event-pill { width: 62px; height: 62px; font-size: 6px; inset-inline-end: 16px; top: 16px; }
    .event-pill strong { font-size: 12px; }
    .sun-one { width: 80px; height: 80px; inset-inline-end: 45%; top: 15%; }
    .hero-side { display: none; }
    .category-section { padding: 37px 0; }
    .section-heading h2 { font-size: 24px; }
    .section-heading a { font-size: 12px; }
    .categories { display: flex; overflow: auto; gap: 12px; padding: 2px 1px 8px; }
    .category { min-width: 78px; font-size: 10px; }
    .category-image { height: 76px; width: 76px; border-width: 3px; }
    .deal-section { padding: 36px 0; }
    .deal-countdown-card { justify-content: flex-start; width: 100%; }
    .deal-grid { display: flex; overflow: auto; margin-inline-end: -14px; padding: 2px 14px 9px 2px; }
    .promo-card { min-width: 270px; height: 185px; padding: 22px; }
    .promo-card h3 { font-size: 25px; }
    .products-section { padding: 40px 0; }
    .product-rail { grid-template-columns: repeat(5, 178px); gap: 11px; }
    .product-image { height: 150px; }
    .badge { top: 137px; }
    .club-banner { padding: 28px 22px; min-height: 194px; gap: 16px; }
    .club-symbol { width: 64px; height: 64px; font-size: 37px; }
    .club-banner h2 { font-size: 25px; }
    .club-banner > div:nth-child(2) > p:last-child { font-size: 11px; max-width: 210px; }
    .light-button { display: none; }
    .footer-nova { margin-top: 45px; padding-top: 35px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .newsletter { grid-column: 1/-1; }
    .footer-bottom { font-size: 9px; }
    .footer-bottom span:last-child { display: none; }
    .browse-menu-wrap { height: 37px; }
    .browse-menu-wrap .browse-button { margin-inline-start: 0; }
    .category-menu { top: 43px; inset-inline-start: 0; width: min(670px, calc(100vw - 28px)); max-height: calc(100dvh - 145px); overflow: auto; align-items: stretch; }
    .category-list { width: 174px; padding: 6px; }
    .category-menu-item { padding: 8px 6px; font-size: 10px; gap: 7px; }
    .category-menu-item span { width: 22px; height: 22px; font-size: 12px; }
    .category-detail { padding: 18px 16px; }
    .category-detail h3 { font-size: 20px; }
    .subcategory-links { grid-template-columns: 1fr; gap: 3px; }
    .category-menu .subcategory-links a { font-size: 10px !important; }
    .menu-product { margin-top: 8px; }
    .menu-product img { width: 48px; height: 50px; }
    .cart-drawer-header { padding: 22px 20px 17px; }
    .cart-items { padding: 8px 20px; }
    .cart-summary { padding: 18px 20px 22px; }
}

@media (max-width: 430px) {
    .category-menu { width: calc(100vw - 28px); display: block; }
    .category-list { width: 100%; display: grid; grid-template-columns: 1fr 1fr; border-inline-end: 0; border-bottom: 1px solid var(--line); }
    .category-menu-item { font-size: 10px; }
    .category-detail { padding: 16px; }
    .subcategory-links { grid-template-columns: 1fr 1fr; }
}

.nova-modal-open {
    overflow: hidden;
}

.nova-cart-product-card {
    display: flex;
    flex-direction: column;
}

.nova-product-card-link {
    flex: 1;
}

.nova-card-actions {
    display: grid;
    gap: 8px;
}

.nova-card-actions form {
    margin: 0;
}

.nova-details-link {
    align-items: center;
    border: 1px solid #dfe3ed;
    border-radius: 5px;
    color: var(--ink);
    display: flex;
    font: 700 10px "DM Sans";
    height: 30px;
    justify-content: center;
    text-decoration: none;
}

.nova-details-link:hover {
    border-color: var(--ink);
    color: var(--ink);
    text-decoration: none;
}

.nova-card-actions .add-button {
    background: transparent;
    border: 1.5px solid var(--theme-tertiary, var(--theme-primary, #ee6f57));
    color: var(--theme-tertiary, var(--theme-primary, #ee6f57));
    font-size: 11px;
    height: 36px;
    transition: all 0.25s ease;
}

.nova-card-actions .add-button:hover {
    background: var(--theme-secondary, var(--theme-tertiary, #ee6f57));
    border-color: var(--theme-secondary, var(--theme-tertiary, #ee6f57));
    color: #fff;
}

.nova-card-actions .add-button:disabled {
    background: transparent;
    border-color: #d9dde6;
    color: #727a8e;
    cursor: not-allowed;
}

.nova-card-actions .add-button:disabled:hover {
    background: transparent;
    color: #727a8e;
}

.nova-card-feedback {
    font-size: 11px;
    margin: 8px 0 0;
    padding: 8px 10px;
}

.nova-options-modal[hidden] {
    display: none;
}

.nova-options-modal {
    align-items: center;
    display: grid;
    inset: 0;
    justify-items: center;
    opacity: 0;
    padding: 20px;
    pointer-events: none;
    position: fixed;
    transition: opacity .18s ease;
    z-index: 9999;
}

.nova-options-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nova-options-backdrop {
    background: rgba(22, 26, 37, .52);
    border: 0;
    inset: 0;
    position: absolute;
}

.nova-options-panel {
    background: #fff;
    border: 1px solid #e7e9f0;
    border-radius: 10px;
    box-shadow: 0 28px 80px rgba(22, 26, 37, .24);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 24px;
    position: relative;
    transform: translateY(10px);
    transition: transform .18s ease;
    width: min(520px, calc(100vw - 32px));
    z-index: 1;
}

.nova-options-modal.is-open .nova-options-panel {
    transform: translateY(0);
}

.nova-options-close {
    align-items: center;
    background: #f4f6fa;
    border: 1px solid #e0e4ed;
    border-radius: 50%;
    color: var(--ink);
    display: flex;
    font-size: 24px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    inset-inline-end: 16px;
    top: 16px;
    width: 38px;
}

.nova-options-product {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: 96px 1fr;
    margin-bottom: 22px;
    padding-inline-end: 42px;
}

.nova-options-product img {
    aspect-ratio: 1;
    background: #f3f5f9;
    border: 1px solid #e4e8f0;
    border-radius: 8px;
    object-fit: cover;
    width: 96px;
}

.nova-options-product h2 {
    color: var(--ink);
    font: 800 26px/1.1 Outfit, sans-serif;
    margin: 0 0 8px;
}

.nova-options-product strong {
    color: var(--ink);
    font: 800 20px Outfit, sans-serif;
}

/* Shared NOVA treatment for every migrated storefront page. */
main.main-content {
    background: #fbfcff;
    color: var(--ink);
    min-height: 42rem;
    padding-block: 48px !important;
}

main.main-content h1,
main.main-content h2,
main.main-content h3,
main.main-content h4,
main.main-content h5,
main.main-content h6 {
    color: var(--ink);
    font-family: Outfit, sans-serif;
    font-weight: 700;
}

main.main-content .card {
    border: 1px solid #e2e7f0;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(24, 39, 75, .06);
}

main.main-content .card-body {
    padding: clamp(20px, 3vw, 32px);
}

.btn-primary,
.btn--primary,
main.main-content .btn-primary,
main.main-content .btn--primary {
    background: var(--theme-tertiary, var(--theme-primary, #ee6f57)) !important;
    border-color: var(--theme-tertiary, var(--theme-primary, #ee6f57)) !important;
    color: #fff !important;
    font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active,
main.main-content .btn-primary:hover,
main.main-content .btn--primary:hover {
    background: var(--theme-secondary, #202534) !important;
    border-color: var(--theme-secondary, #202534) !important;
    color: #fff !important;
}

main.main-content .btn-outline-primary {
    border-color: var(--theme-secondary, #202534);
    color: var(--theme-secondary, #202534);
}

main.main-content .btn-outline-primary:hover {
    background: var(--theme-secondary, #202534);
    border-color: var(--theme-secondary, #202534);
    color: #fff;
}

.nav-pills .nav-link.active {
    background-color: var(--theme-tertiary, var(--theme-primary, #ee6f57)) !important;
    color: #fff !important;
}

.nav-pills .nav-link {
    color: var(--ink, #202534);
    font-weight: 600;
}

.badge-theme-tertiary {
    background-color: var(--theme-tertiary, var(--theme-primary, #ee6f57)) !important;
    color: #fff !important;
}

.badge-theme-secondary {
    background-color: var(--theme-secondary, #202534) !important;
    color: #fff !important;
}

.btn-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-inline-end: 8px !important;
}

.btn-action:last-child {
    margin-inline-end: 0 !important;
}

main.main-content .form-control,
main.main-content .form-select,
main.main-content .select2-selection {
    border-color: #dce2ed;
    border-radius: 7px;
    min-height: 42px;
}

main.main-content .form-control:focus,
main.main-content .form-select:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 .2rem rgba(22, 26, 37, .12);
}

main.main-content .table > :not(caption) > * > * {
    border-color: #e8ebf1;
}

main.main-content .table thead,
main.main-content .table thead th,
main.main-content .table thead td {
    color: var(--theme-tertiary, var(--theme-primary, #ee6f57)) !important;
}

main.main-content .table-light,
main.main-content .table-light > th,
main.main-content .table-light > td {
    background: #f3f5f8;
    color: var(--ink);
}

[dir="rtl"] main.main-content,
[dir="rtl"] main.main-content .table,
[dir="rtl"] main.main-content .form-control,
[dir="rtl"] main.main-content .form-select {
    text-align: right;
}

@media (max-width: 575.98px) {
    .nova-options-panel {
        padding: 18px;
    }

    .nova-options-product {
        grid-template-columns: 76px 1fr;
        padding-inline-end: 34px;
    }

    .nova-options-product img {
        width: 76px;
    }

    .nova-options-product h2 {
        font-size: 21px;
    }
}
