/* 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: 100%;
    max-width: 1380px;
    margin-inline: auto;
    padding-inline: 24px;
    box-sizing: border-box;
}

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

.announcement span {
    color: inherit;
    font-weight: 700;
    margin-inline-end: 8px;
}

.announcement a {
    color: inherit;
    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;
    align-items: stretch;
}

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

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

.hero-main.hero-main--banner {
    background: #f1f5f9;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.hero-banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 13px;
    overflow: hidden;
    background: #f1f5f9;
}

.hero-banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
    z-index: 1;
}

.hero-banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
    display: block;
}

/* Hero Banner Content Overlay */
.hero-banner-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.85) 100%);
    border-radius: 13px;
    z-index: 2;
    pointer-events: none;
}

[dir="ltr"] .hero-banner-overlay {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.5) 48%, rgba(15, 23, 42, 0.1) 100%);
}

[dir="rtl"] .hero-banner-overlay {
    background: linear-gradient(270deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.5) 48%, rgba(15, 23, 42, 0.1) 100%);
}

.hero-banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0;
    width: 100%;
    max-width: 620px;
    padding: 32px 64px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    pointer-events: auto;
}

.hero-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(12px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.hero-banner-title {
    color: #ffffff;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.18;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-banner-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.55;
    margin: 0;
    max-width: 500px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.hero-banner-slide.active .hero-banner-badge,
.hero-banner-slide.active .hero-banner-title,
.hero-banner-slide.active .hero-banner-subtitle,
.hero-banner-slide.active .hero-banner-actions {
    transform: translateY(0);
    opacity: 1;
}

.btn-nova-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--nova-theme-tertiary, var(--theme-tertiary, var(--base-3, #0D3461)));
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nova-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
    filter: brightness(1.12);
}

.btn-nova-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    background: transparent;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid var(--nova-theme-tertiary, var(--theme-tertiary, var(--base-3, #0D3461)));
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nova-outline:hover {
    background: var(--nova-theme-tertiary, var(--theme-tertiary, var(--base-3, #0D3461)));
    color: #ffffff !important;
    border-color: var(--nova-theme-tertiary, var(--theme-tertiary, var(--base-3, #0D3461)));
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Global Page Scroll & Entrance Animations */
[data-nova-animate] {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-nova-animate="fade-up"] {
    transform: translateY(30px);
}

[data-nova-animate="fade-left"] {
    transform: translateX(-35px);
}

[data-nova-animate="fade-right"] {
    transform: translateX(35px);
}

[data-nova-animate="zoom-in"] {
    transform: scale(0.92);
}

[data-nova-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    [data-nova-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.hero-banner-nav {
    pointer-events: none;
}

.hero-banner-nav-btn {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.hero-banner-nav-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.hero-banner-nav-btn.prev {
    inset-inline-start: 14px;
}

.hero-banner-nav-btn.next {
    inset-inline-end: 14px;
}

.hero-banner-nav-btn svg {
    display: block;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.2s ease;
}

[dir="rtl"] .hero-banner-nav-btn.prev svg,
[dir="rtl"] .hero-banner-nav-btn.next svg {
    transform: rotate(180deg);
}

.hero-banner-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 6;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

[dir="rtl"] .hero-banner-dots {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

.hero-banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-banner-dot.active {
    width: 22px;
    border-radius: 10px;
    background: #ffffff;
}

.side-offer--banner {
    padding: 0 !important;
    overflow: hidden;
    background: #f1f5f9;
    height: 100%;
    min-height: 0;
    display: flex;
}

.side-offer--banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.side-offer--banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
    display: block;
    transition: transform 0.3s ease;
}

.side-offer--banner:hover img {
    transform: scale(1.03);
}

.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;
    height: 100%;
}

.side-offer {
    overflow: hidden;
    border-radius: 13px;
    position: relative;
    padding: 23px 19px;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.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 {
    display: inline-block;
    transform: scaleX(-1);
}

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

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

.deal-countdown-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.deal-countdown-timer-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.deal-countdown-message {
    font-size: 13px;
    font-weight: 700;
    color: #555e75;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.deal-clock-icon {
    width: 15px;
    height: 15px;
    stroke: var(--theme-tertiary, var(--theme-primary, #ee6f57));
}

.deal-countdown-units {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

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

.deal-countdown-unit strong {
    background: #ffffff;
    border: 1px solid #e0e4ee;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(16, 28, 63, 0.05);
    color: #202534;
    display: block;
    font: 700 15px/1 Outfit, sans-serif;
    padding: 7px 5px;
}

.deal-countdown-unit span {
    color: #737b8e;
    display: block;
    font-size: 8px;
    font-weight: 700;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.deal-see-all-link {
    color: var(--theme-tertiary, var(--theme-primary, #202534));
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.deal-see-all-link:hover {
    color: var(--theme-secondary, #202534);
}

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

.promo-card {
    border-radius: 14px;
    height: 214px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: var(--ink);
    padding: 27px;
    isolation: isolate;
    display: flex;
    align-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 28, 63, 0.1);
}

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

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

.promo-card-title,
.promo-card h3 {
    font: 700 28px/.98 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-action,
.promo-card span {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--theme-tertiary, var(--theme-primary, var(--ink)));
    transition: color 0.2s ease;
}

.promo-card-img,
.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,
[dir="rtl"] .promo-card img {
    inset: 0 auto 0 0;
}

[dir="rtl"] .promo-card-content,
[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(4, 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: 300px;
    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;
}

.product-card .badge {
    position: absolute;
    top: 24px;
    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;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.category-menu-item:hover,
.category-menu-item.active {
    background: #f2f5fb;
    color: var(--nova-theme-primary, #3866df);
    text-decoration: none;
}

.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-detail-panel {
    display: none;
}

.category-detail-panel.active {
    display: block;
    animation: fadeInCategory 0.2s ease;
}

@keyframes fadeInCategory {
    from {
        opacity: 0;
        transform: translateX(4px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.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;
}

.category-detail h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.category-detail h3 a:hover {
    color: var(--nova-theme-primary, #3866df);
}

.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(3, minmax(0, 1fr));
        gap: 14px;
    }

    .product-image {
        height: 280px;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: 100%;
        max-width: 100%;
        padding-inline: 16px;
    }

    .announcement {
        display: none !important;
    }

    .topbar {
        height: 62px;
        gap: 11px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .brand {
        font-size: 25px;
        flex: none;
    }

    .brand-mark {
        width: 25px;
        height: 25px;
        font-size: 19px;
        border-radius: 8px 8px 8px 3px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-inline-start: auto;
    }

    .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: clamp(200px, 45vw, 330px);
    }

    .hero-main.hero-main--banner {
        height: clamp(260px, 58vw, 380px);
    }

    .hero-banner-content {
        padding: 20px 18px;
        gap: 8px;
        max-width: 90%;
    }

    .hero-banner-badge {
        padding: 4px 10px;
        font-size: 10px;
    }

    .hero-banner-title {
        font-size: clamp(17px, 4.5vw, 24px);
        line-height: 1.22;
    }

    .hero-banner-subtitle {
        font-size: 12px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-banner-actions {
        gap: 8px;
        margin-top: 2px;
    }

    .btn-nova-primary,
    .btn-nova-outline {
        padding: 7px 14px;
        font-size: 11px;
        border-radius: 7px;
    }

    .hero-banner-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .hero-banner-nav-btn.prev {
        inset-inline-start: 8px;
    }

    .hero-banner-nav-btn.next {
        inset-inline-end: 8px;
    }

    .hero-banner-dots {
        bottom: 8px;
        gap: 5px;
        padding: 3px 6px;
    }

    .hero-banner-dot {
        width: 6px;
        height: 6px;
    }

    .hero-banner-dot.active {
        width: 16px;
    }

    .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: 26px 0 30px;
    }

    .deal-section-heading {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "title link"
            "timer timer";
        gap: 12px 10px;
        align-items: center;
        margin-bottom: 16px;
    }

    .deal-heading-main {
        grid-area: title;
    }

    .deal-heading-main .eyebrow {
        font-size: 9px;
        margin-bottom: 2px;
    }

    .deal-heading-main h2 {
        font-size: 22px;
        line-height: 1.1;
        letter-spacing: -0.8px;
        margin: 0;
    }

    .deal-countdown-card {
        grid-area: timer;
        display: block;
        width: 100%;
    }

    .deal-see-all-link {
        grid-area: link;
        font-size: 11.5px;
        font-weight: 700;
        background: #fff;
        border: 1px solid #e1e5ee;
        padding: 6px 12px;
        border-radius: 20px;
        box-shadow: 0 2px 6px rgba(16, 28, 63, 0.04);
        align-self: center;
        justify-self: end;
    }

    .deal-countdown-timer-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: #ffffff;
        border: 1px solid #e2e6f0;
        border-radius: 10px;
        padding: 9px 12px;
        box-shadow: 0 3px 10px rgba(16, 28, 63, 0.04);
    }

    .deal-countdown-message {
        font-size: 11.5px;
        font-weight: 700;
        color: #38425d;
        gap: 5px;
    }

    .deal-clock-icon {
        width: 14px;
        height: 14px;
    }

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

    .deal-countdown-units>b {
        font-size: 12px;
        color: #8c96ac;
    }

    .deal-countdown-unit {
        min-width: 28px;
    }

    .deal-countdown-unit strong {
        font-size: 12px;
        padding: 4px 3px;
        border-radius: 5px;
        background: #f3f5fa;
        border: 0;
        box-shadow: none;
        color: #172037;
    }

    .deal-countdown-unit span {
        font-size: 7px;
        margin-top: 2px;
    }

    .deal-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        margin-inline: -14px;
        padding-inline: 14px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .deal-grid::-webkit-scrollbar {
        display: none;
    }

    .promo-card {
        flex: 0 0 clamp(240px, 78vw, 290px);
        scroll-snap-align: start;
        height: 155px;
        padding: 18px 16px;
        border-radius: 13px;
    }

    .promo-card-content,
    .promo-card div {
        max-width: 55%;
    }

    .promo-card-kicker,
    .promo-card p {
        font-size: 9.5px;
        margin-bottom: 4px;
    }

    .promo-card-title,
    .promo-card h3 {
        font-size: 18px;
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }

    .promo-card-action,
    .promo-card span {
        font-size: 11.5px;
    }

    .products-section {
        padding: 40px 0;
    }

    .product-rail {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-image {
        height: 300px;
    }

    .product-card .badge {
        top: 24px;
    }

    .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;
    }
}

.alert-dismissible {
    position: relative;
    padding-inline-end: 2.75rem !important;
}

.alert-dismissible .close,
.alert-dismissible .btn-close {
    position: absolute;
    top: 50% !important;
    inset-inline-end: 0.75rem !important;
    right: auto;
    left: auto;
    transform: translateY(-50%) !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    line-height: 1 !important;
    font-size: 1.25rem !important;
    color: inherit !important;
    opacity: 0.6 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
}

.alert-dismissible .close:hover,
.alert-dismissible .btn-close:hover {
    opacity: 1 !important;
}

.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 8px !important;
    padding: 0;
    margin: 0;
}

.profile-menu li {
    list-style: none;
    margin: 0;
}

.profile-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 16px !important;
    border-radius: 10px !important;
    color: var(--bs-body-color, #334155) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 14.5px !important;
    transition: all 0.2s ease-in-out !important;
    background-color: transparent;
}

.profile-menu li a i {
    font-size: 19px !important;
    width: 24px !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: inherit !important;
    transition: color 0.2s ease-in-out;
}

.profile-menu li a:hover {
    background-color: rgba(var(--bs-primary-rgb, 56, 102, 223), 0.08) !important;
    color: var(--theme-tertiary, var(--nova-theme-tertiary, #0D3461)) !important;
}

.profile-menu li.active a {
    background-color: var(--theme-tertiary, var(--nova-theme-tertiary, #0D3461)) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(13, 52, 97, 0.22) !important;
    border-color: var(--theme-tertiary, var(--nova-theme-tertiary, #0D3461)) !important;
}

.profile-menu li.active a i,
.profile-menu li.active a span {
    color: #ffffff !important;
}

.profile-menu li a.text-danger:hover {
    background-color: rgba(220, 53, 69, 0.08) !important;
    color: #dc3545 !important;
}

/* Product Details Main Image Slider Navigation */
.quickviewSlider2.swiper {
    position: relative;
    overflow: hidden;
}

.quickviewSlider2 .swiper-wrapper {
    align-items: center;
}

.quickviewSlider2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quickviewSlider2 .quickviewSlider2-button-prev,
.quickviewSlider2 .quickviewSlider2-button-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #1e293b;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    z-index: 20;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.quickviewSlider2 .quickviewSlider2-button-prev:hover,
.quickviewSlider2 .quickviewSlider2-button-next:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.26);
    color: var(--bs-primary, #0D3461);
}

.quickviewSlider2 .quickviewSlider2-button-prev i,
.quickviewSlider2 .quickviewSlider2-button-next i {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.quickviewSlider2 .quickviewSlider2-button-prev::after,
.quickviewSlider2 .quickviewSlider2-button-next::after {
    display: none !important;
}

.quickviewSlider2 .quickviewSlider2-button-prev {
    inset-inline-start: 12px;
    inset-inline-end: auto;
    left: auto;
    right: auto;
}

.quickviewSlider2 .quickviewSlider2-button-next {
    inset-inline-end: 12px;
    inset-inline-start: auto;
    left: auto;
    right: auto;
}

[dir="ltr"] .quickviewSlider2 .quickviewSlider2-button-prev {
    left: 12px;
    right: auto;
}

[dir="ltr"] .quickviewSlider2 .quickviewSlider2-button-next {
    right: 12px;
    left: auto;
}

[dir="rtl"] .quickviewSlider2 .quickviewSlider2-button-prev {
    right: 12px;
    left: auto;
}

[dir="rtl"] .quickviewSlider2 .quickviewSlider2-button-next {
    left: 12px;
    right: auto;
}

[dir="rtl"] .quickviewSlider2 .quickviewSlider2-button-prev i.bi-chevron-left {
    transform: rotate(180deg);
}

[dir="rtl"] .quickviewSlider2 .quickviewSlider2-button-next i.bi-chevron-right {
    transform: rotate(180deg);
}

.quickviewSlider2 .quickviewSlider2-button-prev.swiper-button-disabled,
.quickviewSlider2 .quickviewSlider2-button-next.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.quickviewSliderThumb2 .swiper-slide {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.quickviewSliderThumb2 .swiper-slide:hover,
.quickviewSliderThumb2 .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--bs-primary, #0D3461);
}

/* Nova Product Details Gallery & Slider */
.nova-product-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nova-product-slider {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f7fb;
}

.nova-product-slider .nova-main-image {
    margin: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fb;
    border-radius: 16px;
    overflow: hidden;
}

.nova-product-slider .nova-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nova-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.nova-slider-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
    color: var(--nova-theme-primary, #0D3461);
}

.nova-slider-btn i {
    font-size: 15px;
    line-height: 1;
}

.nova-slider-btn--prev {
    inset-inline-start: 14px;
    inset-inline-end: auto;
}

.nova-slider-btn--next {
    inset-inline-end: 14px;
    inset-inline-start: auto;
}

[dir="rtl"] .nova-slider-btn--prev i {
    transform: rotate(180deg);
}

[dir="rtl"] .nova-slider-btn--next i {
    transform: rotate(180deg);
}

.nova-thumbs-slider {
    width: 100%;
    padding: 4px 2px;
    overflow: hidden;
}

.nova-thumbs-slider .swiper-slide {
    width: auto;
}

.nova-thumb-btn {
    width: 80px;
    height: 80px;
    padding: 4px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nova-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.nova-thumb-btn:hover,
.nova-thumb-btn.is-active,
.nova-thumbs-slider .swiper-slide-thumb-active .nova-thumb-btn {
    border-color: var(--nova-theme-primary, #0D3461);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--nova-theme-primary, #0D3461) 22%, transparent);
    transform: translateY(-2px);
}

/* ==========================================================================
   Select2 & SweetAlert2 Solid Backgrounds and High-Contrast Theming
   ========================================================================== */
:root {
    --bs-white: #ffffff;
    --title-color: #202534;
    --bs-border-color: #dee2e6;
}

.select2,
.select2-dropdown,
.select2-container--default .select2-search__field,
.select2-container--default .select2-selection--single {
    background-color: #ffffff !important;
    border-color: #dee2e6 !important;
}

.select2-dropdown {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    z-index: 99999 !important;
    overflow: hidden !important;
}

.select2-results,
.select2-results__options {
    background: #ffffff !important;
    background-color: #ffffff !important;
    max-height: 250px;
}

.select2-container--default .select2-results__option {
    background: #ffffff;
    color: #1e293b !important;
    padding: 8px 14px !important;
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted {
    background-color: var(--nova-theme-primary, #3866df) !important;
    color: #ffffff !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #f1f5f9 !important;
    color: #0f172a !important;
    font-weight: 600;
}

.select2-container--default .select2-search--dropdown {
    padding: 8px;
    background: #ffffff !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 6px !important;
    border: 1px solid #cbd5e1 !important;
    padding: 6px 10px !important;
    width: 100% !important;
    outline: none !important;
    background-color: #ffffff !important;
    color: #0f172a !important;
}

/* SweetAlert2 Solid Background Theming */
.swal2-container {
    z-index: 99999 !important;
    background-color: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(3px);
}

.swal2-popup {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
    border-radius: 16px !important;
    padding: 28px 24px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    opacity: 1 !important;
}

.swal2-title {
    color: #0f172a !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.swal2-html-container {
    color: #475569 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
}

.swal2-actions {
    margin-top: 16px !important;
    gap: 12px !important;
}

.swal2-styled.swal2-confirm {
    background-color: var(--nova-theme-primary, #3866df) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--nova-theme-primary, #3866df) 35%, transparent) !important;
}

.swal2-styled.swal2-cancel {
    background-color: #f1f5f9 !important;
    color: #475569 !important;
    border-radius: 10px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: 1px solid #e2e8f0 !important;
}

.swal2-icon {
    margin: 0 auto 16px !important;
}

