/* ==========================================================================
   Bella Rose - Premium Design System (2026)
   A unified, luxurious, high-performance CSS framework
   ========================================================================== */

/* --- 1. Reset & Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
    /* Color Palette - Deep Noir & Rose Gold */
    --clr-base: #fbf9f6;          /* Background color */
    --clr-surface: #ffffff;       /* Cards, dropdowns */
    --clr-surface-alt: #f4efeb;   /* Secondary sections */
    
    --clr-text: #1a1518;          /* Main text (Noir) */
    --clr-text-muted: #73676d;    /* Subtitles, hints */
    
    --clr-primary: #2d1e25;       /* Very dark plum/noir */
    --clr-primary-light: #45303a; 
    
    --clr-accent: #c29d6d;        /* Warm Rose Gold */
    --clr-accent-hover: #b08959;
    --clr-accent-light: #f7eedf;
    
    --clr-border: #e6ded8;
    --clr-border-light: #f0eaea;
    
    --clr-success: #327355;
    --clr-success-bg: #e6f2ec;
    --clr-danger: #9c3b48;
    --clr-danger-bg: #fae8ea;

    /* Typography */
    --font-body: 'Cairo', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Shadows - Soft, Warm Tints */
    --shadow-sm: 0 4px 12px rgba(45, 30, 37, 0.04);
    --shadow-md: 0 12px 32px rgba(45, 30, 37, 0.08);
    --shadow-lg: 0 24px 64px rgba(45, 30, 37, 0.12);
    --shadow-glass: 0 8px 32px rgba(45, 30, 37, 0.06);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-width: 1280px;
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html.is-spa-resetting-scroll {
    scroll-behavior: auto !important;
    overflow-anchor: none;
}

body {
    background-color: var(--clr-base);
    color: var(--clr-text);
    font-family: var(--font-body);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--clr-text);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: transparent;
}

button {
    cursor: pointer;
}

::selection {
    background-color: var(--clr-accent);
    color: #fff;
}

/* --- 2. Layout & Utilities --- */
.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.store-main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-shell {
    padding: 5rem 0;
}

.py-0 { padding: 0 !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.ms-1 { margin-inline-start: 0.25rem !important; }
.ms-2 { margin-inline-start: 0.5rem !important; }
.me-2 { margin-inline-end: 0.5rem !important; }
.text-center { text-align: center; }
.text-primary { color: var(--clr-primary); }
.text-gold { color: var(--clr-accent); }
.text-muted { color: var(--clr-text-muted); }
.bg-surface-alt { background-color: var(--clr-surface-alt); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* --- 3. Buttons & Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(45, 30, 37, 0.2);
}

.btn-primary:hover {
    background-color: var(--clr-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 30, 37, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-primary);
    border: 1px solid var(--clr-border);
}

.btn-outline:hover {
    border-color: var(--clr-primary);
    background-color: var(--clr-surface-alt);
}

.product-card__quick-add .btn-outline {
    background-color: rgba(255, 255, 255, 0.96);
    border-color: rgba(45, 30, 37, 0.14);
    box-shadow: var(--shadow-md);
}

.product-card__quick-add .btn-outline:hover {
    background-color: #ffffff;
    border-color: var(--clr-primary);
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--clr-surface);
    color: var(--clr-primary);
    border: 1px solid var(--clr-border);
    transition: all var(--transition-fast);
    position: relative;
}

.icon-button:hover {
    background-color: var(--clr-surface-alt);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.icon-button__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--clr-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--clr-surface);
}

/* --- 4. Announcement Bar --- */
.top-ribbon {
    background-color: var(--clr-primary);
    color: #fff;
    font-size: 0.85rem;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.top-ribbon__inner {
    height: 40px;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.marquee-content p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: center;
    transition: opacity 0.18s ease, transform 0.18s ease;
    width: 100%;
}

.marquee-content i {
    color: var(--clr-accent);
}

.top-ribbon-rotator.is-switching p {
    opacity: 0;
    transform: translateY(4px);
}

.lucky-wheel-modal[hidden] {
    display: none !important;
}

.has-lucky-wheel-open {
    overflow: hidden;
}

.lucky-wheel-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    overflow-x: hidden;
    padding: 1rem;
    position: fixed;
    z-index: 10000;
}

.lucky-wheel-modal__backdrop {
    background: rgba(32, 24, 28, 0.68);
    backdrop-filter: blur(12px);
    border: 0;
    inset: 0;
    position: absolute;
}

.lucky-wheel-modal__dialog {
    background:
        radial-gradient(circle at 20% 8%, rgba(194, 157, 109, 0.18), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fbf6f0 100%);
    border: 1px solid rgba(194, 157, 109, 0.32);
    border-radius: 30px;
    box-shadow: 0 34px 100px rgba(35, 20, 28, 0.34);
    color: var(--clr-primary);
    display: grid;
    gap: 1.15rem;
    max-height: min(92vh, 780px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: clamp(1.1rem, 3vw, 2rem);
    position: relative;
    text-align: center;
    width: min(520px, 100%);
}

.lucky-wheel-modal__close {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(194, 157, 109, 0.24);
    border-radius: 50%;
    color: var(--clr-primary);
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    inset-block-start: 14px;
    inset-inline-start: 14px;
    width: 40px;
}

.lucky-wheel-modal__copy {
    display: grid;
    gap: 0.45rem;
    padding-inline: 2rem;
}

.lucky-wheel-modal__eyebrow {
    color: var(--clr-accent);
    font-weight: 900;
}

.lucky-wheel-modal__copy h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0;
}

.lucky-wheel-modal__copy p {
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin: 0;
}

.lucky-wheel-stage {
    aspect-ratio: 1;
    margin: 0 auto;
    max-width: 360px;
    position: relative;
    width: min(82vw, 360px);
}

.lucky-wheel-stage::after {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(194, 157, 109, 0.9) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(184, 92, 109, 0.75) 0 2px, transparent 3px);
    background-position: 12% 22%, 78% 34%, 48% 8%;
    background-repeat: no-repeat;
    content: "";
    inset: -18px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: scale(0.8);
    z-index: 4;
}

.lucky-wheel-disc {
    background:
        conic-gradient(from -90deg,
            #2d1e25 0deg 60deg,
            #c29d6d 60deg 120deg,
            #f7eadc 120deg 180deg,
            #7e5966 180deg 240deg,
            #ffffff 240deg 300deg,
            #b85c6d 300deg 360deg);
    border: 10px solid #fff;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(45, 30, 37, 0.12), 0 24px 60px rgba(45, 30, 37, 0.22);
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 4.2s cubic-bezier(.12, .72, .08, 1);
    width: 100%;
}

.lucky-wheel-disc span {
    align-items: flex-start;
    color: #fff;
    display: flex;
    font-size: clamp(0.72rem, 2vw, 0.9rem);
    font-weight: 900;
    height: 50%;
    justify-content: center;
    left: 50%;
    padding: clamp(1.75rem, 8%, 2.45rem) 0.25rem 0;
    position: absolute;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
    top: 0;
    transform: rotate(calc((360deg / var(--wheel-count)) * var(--i))) translateX(-50%);
    transform-origin: 0 100%;
    width: min(46%, 170px);
}

.lucky-wheel-disc span:nth-child(3),
.lucky-wheel-disc span:nth-child(5),
.lucky-wheel-disc span[style*="--i: 1"],
.lucky-wheel-disc span[style*="--i: 3"] {
    color: var(--clr-primary);
    text-shadow: none;
}

.lucky-wheel-disc b {
    display: block;
    line-height: 1.3;
    max-width: min(104px, 29vw);
    overflow-wrap: anywhere;
    transform: rotate(calc(90deg - (180deg / var(--wheel-count))));
    transform-origin: center;
    white-space: normal;
}

.lucky-wheel-pointer {
    border-inline: 15px solid transparent;
    border-top: 28px solid var(--clr-accent);
    filter: drop-shadow(0 6px 10px rgba(45, 30, 37, 0.26));
    left: 50%;
    position: absolute;
    top: -2px;
    transform: translateX(-50%);
    z-index: 3;
}

.lucky-wheel-hub {
    align-items: center;
    background: var(--clr-primary);
    border: 8px solid #fff;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(45, 30, 37, 0.26);
    color: #fff;
    display: flex;
    font-size: 1.35rem;
    height: 78px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    z-index: 2;
}

.lucky-wheel-modal.is-spinning .lucky-wheel-hub {
    animation: luckyHubPulse 0.7s ease-in-out infinite alternate;
}

.lucky-wheel-modal.is-win .lucky-wheel-stage::after {
    animation: luckyConfettiBurst 1.05s ease both;
}

.lucky-wheel-spin {
    align-items: center;
    background: var(--clr-primary);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(45, 30, 37, 0.22);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 900;
    gap: 0.6rem;
    justify-content: center;
    margin: 0 auto;
    min-width: 220px;
    padding: 0.95rem 1.35rem;
}

.lucky-wheel-spin:disabled {
    cursor: wait;
    opacity: 0.72;
}

.lucky-wheel-result {
    color: var(--clr-primary);
    display: none;
    font-weight: 900;
    line-height: 1.8;
    margin: 0;
    min-height: 32px;
    transition: background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.lucky-wheel-prize[hidden] {
    display: none !important;
}

.lucky-wheel-prize {
    inset: 0;
    padding: 1rem;
    pointer-events: none;
    position: absolute;
    z-index: 6;
}

.lucky-wheel-prize__card {
    background:
        radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.82), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fff8ef 100%);
    border: 1px solid rgba(194, 157, 109, 0.32);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(45, 30, 37, 0.26);
    display: grid;
    gap: 0.75rem;
    margin: min(26vh, 180px) auto 0;
    max-width: 390px;
    opacity: 0;
    padding: 1.25rem;
    pointer-events: auto;
    position: relative;
    transform: translateY(10px) scale(0.96);
    animation: luckyPrizeIn 0.42s ease forwards;
}

.lucky-wheel-prize__badge {
    align-items: center;
    background: var(--clr-primary);
    border: 6px solid #fff;
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(45, 30, 37, 0.24);
    color: #fff;
    display: inline-flex;
    font-size: 1.2rem;
    height: 64px;
    justify-content: center;
    justify-self: center;
    margin-top: -42px;
    width: 64px;
}

.lucky-wheel-prize__card strong {
    color: var(--clr-primary);
    font-size: 1.25rem;
    font-weight: 900;
}

.lucky-wheel-prize__card p,
.lucky-wheel-prize__card small {
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin: 0;
}

.lucky-wheel-prize__card small {
    color: #7b4f1d;
    font-weight: 900;
}

.lucky-wheel-prize__actions {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.35rem;
}

.lucky-wheel-prize__fireworks span {
    border-radius: 50%;
    height: 10px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 42%;
    width: 10px;
}

.lucky-wheel-modal.is-win .lucky-wheel-prize__fireworks span {
    animation: luckyFirework 1.25s ease-out both;
    background:
        radial-gradient(circle, #fff 0 2px, transparent 3px),
        conic-gradient(#f7d06f, #b85c6d, #fff, #c29d6d, #f7d06f);
    box-shadow:
        0 -54px 0 #f7d06f,
        42px -38px 0 #fff,
        58px 0 0 #b85c6d,
        38px 42px 0 #c29d6d,
        0 58px 0 #fff,
        -42px 38px 0 #f7d06f,
        -58px 0 0 #c29d6d,
        -38px -42px 0 #b85c6d;
}

.lucky-wheel-modal.is-win .lucky-wheel-prize__fireworks span:nth-child(2) {
    animation-delay: 0.16s;
    left: 28%;
    top: 34%;
}

.lucky-wheel-modal.is-win .lucky-wheel-prize__fireworks span:nth-child(3) {
    animation-delay: 0.28s;
    left: 72%;
    top: 32%;
}

@keyframes luckyPrizeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes luckyFirework {
    0% {
        opacity: 0;
        transform: scale(0.15);
    }
    22% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.lucky-wheel-modal.is-win .lucky-wheel-result,
.lucky-wheel-modal.is-try-again .lucky-wheel-result {
    border-radius: 18px;
    padding: 0.8rem 1rem;
    transform: translateY(-2px);
}

.lucky-wheel-modal.is-win .lucky-wheel-result {
    background: rgba(194, 157, 109, 0.15);
    box-shadow: 0 14px 34px rgba(194, 157, 109, 0.18);
    color: #7b4f1d;
}

.lucky-wheel-modal.is-try-again .lucky-wheel-result {
    background: rgba(45, 30, 37, 0.07);
    color: var(--clr-primary);
}

@keyframes luckyHubPulse {
    from {
        box-shadow: 0 12px 28px rgba(45, 30, 37, 0.26);
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        box-shadow: 0 18px 42px rgba(194, 157, 109, 0.38);
        transform: translate(-50%, -50%) scale(1.07);
    }
}

@keyframes luckyConfettiBurst {
    0% {
        opacity: 0;
        transform: scale(0.74) rotate(0deg);
    }
    35% {
        opacity: 1;
    }
    100% {
        background-position: 4% 70%, 88% 78%, 48% 0%;
        opacity: 0;
        transform: scale(1.16) rotate(18deg);
    }
}

/* --- 5. Premium Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 2rem;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 91;
    flex-shrink: 0;
}

.brand-mark__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brand-mark__logo {
    max-height: 58px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.7rem;
    text-transform: none;
    letter-spacing: 0.2px;
    color: var(--clr-accent);
    margin-top: 0.35rem;
    line-height: 1.3;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex-wrap: nowrap;
    margin-inline-end: 2rem;
}

.site-nav a,
.site-nav__more-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    position: relative;
    width: max-content;
    max-width: none;
    white-space: nowrap !important;
    word-break: keep-all;
    overflow-wrap: normal;
    line-height: 1.25;
}

.site-nav a:hover,
.site-nav__more-toggle:hover,
.site-nav__more.is-open .site-nav__more-toggle {
    color: var(--clr-primary);
    background-color: var(--clr-surface-alt);
}

.site-nav a.is-active {
    color: var(--clr-primary);
    background-color: var(--clr-accent-light);
}

.site-nav__more {
    position: relative;
}

.site-nav__more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.site-nav__more-toggle i {
    font-size: 0.72rem;
    transition: transform var(--transition-fast);
}

.site-nav__more:hover .site-nav__dropdown,
.site-nav__more:focus-within .site-nav__dropdown,
.site-nav__more.is-open .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav__more:hover .site-nav__more-toggle i,
.site-nav__more:focus-within .site-nav__more-toggle i,
.site-nav__more.is-open .site-nav__more-toggle i {
    transform: rotate(180deg);
}

.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 0.85rem);
    right: 0;
    min-width: 220px;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.45rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 120;
}

.site-nav__dropdown a {
    display: block;
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.85rem;
    white-space: nowrap;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.search-strip {
    display: flex;
    align-items: center;
    background-color: var(--clr-surface-alt);
    border-radius: var(--radius-pill);
    padding: 0.35rem 1rem;
    width: 280px;
    border: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.search-strip:focus-within {
    border-color: var(--clr-accent);
    background-color: var(--clr-surface);
}

.search-strip button {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    padding-left: 0.5rem;
}

.search-strip input {
    width: 100%;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--clr-text);
}

.search-strip input::placeholder {
    color: var(--clr-text-muted);
}

.quick-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile Nav Elements */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-primary);
    z-index: 91;
}

.mobile-nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    padding: 1.5rem 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-search {
    display: flex;
    align-items: center;
    background-color: var(--clr-surface-alt);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.mobile-search input {
    width: 100%;
    padding: 0.5rem;
}

.mobile-search button {
    color: var(--clr-text-muted);
}

.mobile-menu {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border-light);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.d-mobile { display: none; }
.d-desktop { display: flex; }

.catalog-results {
    position: relative;
}

.catalog-results.is-loading {
    opacity: 0.58;
    pointer-events: none;
}

.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.pagination-link,
.pagination-ellipsis {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    color: var(--clr-text-muted);
    font-weight: 700;
    padding: 0 0.85rem;
}

.pagination-link:hover,
.pagination-link.is-active {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

.pagination-link.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.pagination-ellipsis {
    border-color: transparent;
    background: transparent;
    min-width: 22px;
    padding: 0;
}

/* --- 6. Hero Section --- */
.hero-section {
    position: relative;
    height: min(85vh, 800px);
    background: var(--hero-bg) center/cover no-repeat;
    display: flex;
    align-items: center;
    margin: 1rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(15, 12, 14, 0.8) 0%, 
        rgba(15, 12, 14, 0.4) 50%, 
        transparent 100%
    );
}

.hero-section__inner {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 600px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 1.2rem;
    color: var(--clr-accent);
}

.trust-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- 7. Common Section Header --- */
.section-header {
    margin-bottom: 3rem;
}

.section-header.is-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-subtitle {
    display: inline-block;
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* --- 8. Bento Grid (Categories) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    grid-column: span 3;
    display: block;
    box-shadow: var(--shadow-sm);
}

.bento-large {
    grid-column: span 6;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 6;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #fff;
    z-index: 2;
}

.bento-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: none;
}

.bento-large .bento-content p,
.bento-wide .bento-content p {
    display: block;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width var(--transition-normal);
}

.bento-item:hover .btn-link::after {
    width: 100%;
}

/* --- 9. Product Card --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    position: relative;
    background-color: var(--clr-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

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

.product-card__media {
    position: relative;
    aspect-ratio: 4/5;
    background-color: var(--clr-surface-alt);
    overflow: hidden;
}

.product-card__media .product-card__link {
    display: block;
    height: 100%;
    width: 100%;
}

.product-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card__badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-new {
    background-color: var(--clr-success-bg);
    color: var(--clr-success);
}

.badge-sale {
    background-color: var(--clr-danger-bg);
    color: var(--clr-danger);
}

.btn-wishlist {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--clr-surface);
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    transition: all var(--transition-fast);
}

.btn-wishlist:hover {
    color: var(--clr-danger);
}

.btn-wishlist.is-active {
    color: var(--clr-danger);
    background-color: #fff4f5;
    border-color: #f2cfd4;
}

.product-card__quick-add {
    position: absolute;
    bottom: -60px;
    left: 1rem;
    right: 1rem;
    transition: bottom var(--transition-normal);
    z-index: 2;
}

.product-card:hover .product-card__quick-add {
    bottom: 1rem;
}

.product-card__stock-blur {
    height: 100%;
    transition: filter var(--transition-normal), opacity var(--transition-normal);
}

.product-card--out-of-stock .product-card__stock-blur {
    filter: blur(4px);
    opacity: 0.58;
}

.product-card--out-of-stock [data-add-to-cart],
.product-card--out-of-stock .btn-wishlist {
    pointer-events: none;
}

.product-card--out-of-stock:hover {
    transform: none;
    box-shadow: none;
}

.product-card--out-of-stock:hover .product-img {
    transform: none;
}

.stock-unavailable-overlay {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.28);
    pointer-events: none;
}

.stock-unavailable-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    color: #b91c1c;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 18px 42px rgba(115, 27, 27, 0.18);
}

.badge-out-of-stock,
.btn-disabled {
    background: #fee2e2;
    color: #b91c1c;
}

.btn-disabled,
.btn-disabled:hover {
    border-color: rgba(185, 28, 28, 0.16);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.product-card__info {
    padding: 1.5rem;
}

.product-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-accent);
    font-weight: 700;
}

.product-title {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin: 0.25rem 0 1rem;
    line-height: 1.4;
}

.product-title a:hover {
    color: var(--clr-accent);
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-stack {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-current {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.price-old {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    text-decoration: line-through;
}

.rating-stack {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- 9.1 Home Premium Commerce Sections --- */
.home-section-meta {
    margin-bottom: clamp(1.75rem, 3vw, 2.8rem);
}

.home-section-meta--center {
    margin-inline: auto;
    max-width: 720px;
    text-align: center;
}

.home-section-meta--split {
    align-items: end;
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
}

.home-section-meta .section-title {
    margin-bottom: 0.45rem;
}

.home-section-meta .section-desc {
    margin-inline: auto;
    max-width: 58ch;
}

.home-categories-premium {
    background: linear-gradient(180deg, #fbf9f6 0%, #f4efeb 100%);
}

.home-category-layout {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.home-category-card {
    aspect-ratio: 1 / 1.05;
    background: var(--clr-primary);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 42px rgba(45, 30, 37, 0.1);
    grid-column: span 3;
    isolation: isolate;
    min-height: 260px;
    overflow: hidden;
    position: relative;
}

.home-category-card--feature {
    aspect-ratio: auto;
    grid-column: span 6;
    grid-row: span 2;
}

.home-category-card img,
.home-offer-panel__media::before {
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-normal);
    width: 100%;
}

.home-category-card:hover img {
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.055);
}

.home-category-card__shade {
    background: linear-gradient(180deg, rgba(45, 30, 37, 0.08) 0%, rgba(45, 30, 37, 0.42) 50%, rgba(25, 16, 21, 0.86) 100%);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.home-category-card__number {
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    color: var(--clr-primary);
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    left: 1rem;
    position: absolute;
    top: 1rem;
    width: 38px;
    z-index: 2;
}

.home-category-card__content {
    bottom: 0;
    color: #fff;
    display: grid;
    gap: 0.35rem;
    left: 0;
    padding: clamp(1rem, 2.4vw, 1.8rem);
    position: absolute;
    right: 0;
    z-index: 2;
}

.home-category-card__content strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.9rem);
    line-height: 1.2;
}

.home-category-card__content small {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.home-category-card__content em {
    align-items: center;
    color: #f7dfbd;
    display: inline-flex;
    font-style: normal;
    font-weight: 800;
    gap: 0.45rem;
    margin-top: 0.35rem;
}

.home-product-card {
    border: 1px solid rgba(230, 222, 216, 0.82);
    box-shadow: 0 12px 34px rgba(45, 30, 37, 0.055);
}

.home-product-card .product-card__info {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 1.15rem;
}

.home-product-card__kicker {
    color: var(--clr-accent-hover);
    display: block;
    font-size: 0.76rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.home-product-card .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 3.1em;
    overflow: hidden;
}

.home-product-card__desc {
    color: var(--clr-text-muted);
    display: -webkit-box;
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.75;
    margin: -0.35rem 0 1rem;
    overflow: hidden;
}

.home-product-card .product-price-row {
    margin-top: auto;
}

.home-product-editorial-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-product-card--hero {
    background: #fffaf5;
    grid-column: span 2;
    grid-row: span 2;
}

.home-product-card--hero .product-card__media {
    aspect-ratio: 1 / 1.02;
}

.home-product-card--hero .product-title {
    font-size: clamp(1.18rem, 1.7vw, 1.55rem);
}

.home-product-card--soft:nth-child(3n) {
    background: #f8f6ef;
}

.home-product-card--soft:nth-child(4n) {
    background: #f7f1f3;
}

.home-offer-panel {
    align-items: stretch;
    background: var(--clr-primary);
    border: 1px solid rgba(194, 157, 109, 0.22);
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 70px rgba(45, 30, 37, 0.16);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    min-height: clamp(360px, 42vw, 520px);
    overflow: hidden;
}

.home-offer-panel__media {
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

.home-offer-panel__media::before {
    background: var(--promo-bg) center/cover no-repeat;
    content: '';
    display: block;
    inset: 0;
    position: absolute;
}

.home-offer-panel:hover .home-offer-panel__media::before {
    transform: scale(1.045);
}

.home-offer-panel__content {
    align-content: center;
    color: #fff;
    display: grid;
    gap: 1rem;
    justify-items: start;
    padding: clamp(2rem, 5vw, 4.25rem);
}

.home-offer-panel__content h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.12;
    margin: 0;
    max-width: 12ch;
}

.home-offer-panel__content p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin: 0;
    max-width: 48ch;
}

.home-arrivals-rail {
    overflow: hidden;
}

.home-product-rail {
    display: grid;
    gap: 1rem;
    grid-auto-columns: minmax(260px, 310px);
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0.15rem 0.15rem 1rem;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--clr-accent) var(--clr-border-light);
}

.home-product-card--rail {
    scroll-snap-align: start;
}

.home-product-card--rail .product-card__media {
    aspect-ratio: 4 / 4.55;
}

.home-curated-mosaic {
    background: linear-gradient(180deg, #f6f0ea 0%, #fbf9f6 100%);
}

.home-mosaic-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-product-card--mini {
    background: rgba(255, 255, 255, 0.82);
    grid-column: span 2;
}

.home-product-card--mini:nth-child(1),
.home-product-card--mini:nth-child(6) {
    grid-column: span 3;
}

.home-product-card--mini .product-card__media {
    aspect-ratio: 4 / 3.15;
}

.home-product-card--mini .product-title {
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.home-products-dynamic--carousel,
.home-products-dynamic--compact {
    overflow: hidden;
}

.home-products-dynamic--spotlight {
    background: linear-gradient(180deg, #fbfaf8 0%, #f4eee9 100%);
}

.home-products-dynamic--carousel {
    background: #fff;
}

.home-products-dynamic--mosaic {
    background: linear-gradient(180deg, #f6f0ea 0%, #fbf9f6 100%);
}

.home-products-dynamic--compact {
    background: linear-gradient(180deg, #fdf8f6 0%, #f6efea 100%);
}

.home-product-row-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-product-row-grid .home-product-card {
    min-width: 0;
}

.home-product-row-grid .product-card__media {
    aspect-ratio: 4 / 4.55;
}

.home-product-row-grid .product-card__quick-add {
    bottom: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(28px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.home-product-row-grid .product-card:hover .product-card__quick-add,
.home-product-row-grid .product-card:focus-within .product-card__quick-add {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.home-carousel {
    padding-inline: 4rem;
    position: relative;
}

.home-carousel__viewport {
    overflow: hidden;
    width: 100%;
}

.home-product-row-grid--carousel {
    display: flex;
    grid-template-columns: none;
    transition: transform 520ms ease;
    will-change: transform;
}

.home-product-row-grid--carousel .home-product-card {
    flex: 0 0 calc((100% - 3rem) / 4);
}

.home-carousel__arrow {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(230, 222, 216, 0.9);
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(45, 30, 37, 0.12);
    color: var(--clr-primary);
    cursor: pointer;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    transition: transform var(--transition-normal), background var(--transition-normal);
    width: 46px;
    z-index: 5;
}

.home-carousel__arrow:hover {
    background: var(--clr-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.home-carousel__arrow--prev {
    right: 0;
}

.home-carousel__arrow--next {
    left: 0;
}

.home-section-more {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.2rem, 2vw, 1.8rem);
}

.home-section-more .btn {
    min-width: 170px;
}

.home-product-card--carousel {
    background: #fff;
    border-color: rgba(194, 166, 140, 0.24);
    box-shadow: 0 18px 42px rgba(45, 30, 37, 0.08);
}

.home-product-card--soft {
    border-radius: 18px;
    background: #fff;
}

.home-product-card--soft .product-card__media {
    margin: 0.75rem 0.75rem 0;
    border-radius: 16px;
}

.home-product-card--soft .product-card__info {
    text-align: start;
}

.home-products-dynamic--spotlight .home-product-card:nth-child(4n + 1) {
    background: #fffaf5;
}

.home-products-dynamic--spotlight .home-product-card:nth-child(4n + 3) {
    background: #f7f1f3;
}

.home-product-card--carousel .product-card__media {
    aspect-ratio: 1 / 1.1;
}

.home-product-card--carousel .product-card__quick-add .btn {
    border-radius: 999px;
    min-height: 48px;
}

.home-product-card--carousel .product-card__info {
    background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
    min-height: 238px;
    text-align: center;
}

.home-product-card--carousel .product-price-row {
    flex-direction: row-reverse;
}

.home-product-card--mosaic {
    border: 0;
    border-radius: 26px 8px 26px 8px;
    box-shadow: 0 18px 38px rgba(78, 54, 39, 0.09);
    overflow: hidden;
}

.home-product-card--mosaic::after {
    background: linear-gradient(90deg, #c59d6d, #7d4e57);
    content: '';
    height: 4px;
    inset: auto 0 0;
    position: absolute;
}

.home-product-card--mosaic:nth-child(4n + 2) {
    background: #f8f6ef;
}

.home-product-card--mosaic:nth-child(4n + 4) {
    background: #f7f1f3;
}

.home-product-card--mosaic .product-card__media {
    aspect-ratio: 1 / 1;
    margin: 0.85rem 0.85rem 0;
    border-radius: 24px 8px 24px 8px;
}

.home-product-card--mosaic:nth-child(odd) .product-card__media {
    aspect-ratio: 4 / 3.65;
}

.home-product-card--mosaic .product-card__info {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,245,0.96));
    min-height: 262px;
    text-align: start;
}

.home-product-card--mosaic .product-price-row {
    border-top: 1px solid rgba(194, 166, 140, 0.2);
    padding-top: 0.85rem;
}

.home-product-compact-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-product-card--compact .product-card__media {
    aspect-ratio: 4 / 4.25;
    margin: 0.65rem;
    border-radius: 8px;
}

.home-product-card--compact {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    box-shadow: none;
}

.home-product-card--compact:hover {
    box-shadow: 0 12px 30px rgba(45, 30, 37, 0.08);
}

.home-product-card--compact .product-card__info {
    padding: 0.95rem;
    min-height: 168px;
}

.home-product-card--compact .home-product-card__desc {
    display: none;
}

.home-product-card--compact .product-card__media {
    border-bottom: 1px solid rgba(230, 222, 216, 0.82);
}

.home-product-card--compact .product-title {
    font-size: 0.98rem;
}

.home-product-card--compact .product-price-row {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 0.5rem;
}

/* --- 10. Promo Banner --- */
.promo-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--promo-bg) center/cover no-repeat;
    padding: 4rem;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.promo-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 21, 24, 0.8) 0%, rgba(26, 21, 24, 0.2) 100%);
}

.promo-banner__content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    color: #fff;
}

.promo-badge {
    display: inline-block;
    background-color: var(--clr-accent);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.promo-banner__content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promo-banner__content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.promo-banner--home {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 70px rgba(45, 30, 37, 0.16);
    isolation: isolate;
    justify-content: center;
    min-height: clamp(360px, 42vw, 520px);
    padding: clamp(2rem, 5vw, 4.5rem);
}

.promo-banner--home .promo-banner__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-inline: auto;
    max-width: min(720px, 100%);
    text-align: center;
}

.promo-banner--home .promo-badge {
    margin: 0;
    width: fit-content;
}

.promo-banner--home .promo-banner__content h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.12;
    margin: 0;
    max-width: 14ch;
    text-wrap: balance;
}

.promo-banner--home .promo-banner__content p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.9;
    margin: 0;
    max-width: 52ch;
    text-align: center;
}

.promo-banner--home .btn {
    margin-top: .35rem;
}

/* --- 11. Editorial Card --- */
.editorial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--clr-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.editorial-card__content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-card__content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.editorial-card__content p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

.editorial-card__image {
    height: 100%;
}

.editorial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-card--compact .editorial-card__content {
    padding: 1.8rem 1.9rem;
}

.editorial-card--compact .editorial-card__image {
    min-height: 260px;
}

.input-group {
    position: relative;
    display: flex;
}

.input-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-muted);
}

.input-group input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 120px;
    padding-right: 3rem;
    background-color: var(--clr-surface-alt);
    border-radius: var(--radius-pill);
    font-size: 1rem;
}

.input-group .btn {
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
}

/* --- 12. Footer --- */
.site-footer {
    background-color: var(--clr-primary);
    color: #fff;
    padding-top: 5rem;
    margin-top: 4rem;
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.site-footer__brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-brand-logo {
    max-height: 62px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--clr-accent);
}

.site-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.site-footer__cols h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.site-footer__cols li {
    margin-bottom: 0.75rem;
}

.site-footer__cols a {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer__cols a:hover {
    color: var(--clr-accent);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.payment-methods span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-methods i {
    font-size: 1rem;
}

/* --- 13. Off-Canvas Cart --- */
.offcanvas-cart {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
}

.offcanvas-cart.is-open {
    pointer-events: auto;
}

.offcanvas-cart__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 21, 24, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.offcanvas-cart.is-open .offcanvas-cart__overlay {
    opacity: 1;
}

.offcanvas-cart__drawer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 400px;
    max-width: 100%;
    background-color: var(--clr-surface);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

.offcanvas-cart.is-open .offcanvas-cart__drawer {
    transform: translateX(0);
}

.cart-empty-state {
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.75rem;
    min-height: 260px;
    color: var(--clr-text-muted);
}

.cart-empty-state i {
    font-size: 2rem;
    color: var(--clr-accent);
}

.cart-item__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.cart-item__variant,
.variant-detail-text {
    white-space: pre-line;
    line-height: 1.7;
}

.cart-item__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.9rem;
}

.cart-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--clr-surface-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-pill);
    padding: 0.35rem 0.8rem;
}

.cart-qty-control button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: var(--clr-primary);
    border: 1px solid var(--clr-border);
}

.cart-remove-btn {
    color: var(--clr-danger);
    font-weight: 700;
}

.cart-line-lock {
    font-size: 0.86rem;
    color: var(--clr-text-muted);
    font-weight: 700;
}

.summary-row--total {
    font-weight: 800;
    color: var(--clr-primary);
    font-size: 1.05rem;
}

.offcanvas-cart__header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-cart__header h2 {
    font-size: 1.5rem;
}

.btn-close-cart {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--clr-surface-alt);
    color: var(--clr-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-cart__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cart-item__thumb {
    width: 80px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__info h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: 0.25rem;
}

.offcanvas-cart__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--clr-border);
    background-color: var(--clr-surface-alt);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cart-actions {
    margin-top: 1.5rem;
}

/* --- Shop & Product Layouts --- */
.shop-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: start;
    gap: 2rem;
    margin-bottom: 4rem;
}

.shop-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.product-details {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 2rem;
    align-items: start;
    margin-bottom: 4rem;
}

.product-details--out-of-stock > .product-gallery-shell,
.product-details--out-of-stock > .product-panel {
    filter: blur(3px);
    opacity: 0.62;
    pointer-events: none;
    user-select: none;
}

.stock-unavailable-overlay--product {
    border-radius: calc(var(--radius-xl) + 4px);
    background: rgba(248, 250, 252, 0.34);
}

.stock-unavailable-overlay--product span {
    min-width: min(100%, 360px);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;
    box-shadow: 0 22px 48px rgba(153, 27, 27, 0.22);
}

.product-unavailable-card {
    display: grid;
    justify-items: center;
    gap: 0.6rem;
    padding: 1.4rem;
    border-radius: 22px;
    border: 1px solid rgba(185, 28, 28, 0.16);
    background: #fff5f5;
    color: #991b1b;
    text-align: center;
}

.product-unavailable-card i {
    font-size: 1.6rem;
}

.product-unavailable-card strong {
    font-size: 1.15rem;
}

.product-unavailable-card span {
    color: #7f1d1d;
    line-height: 1.8;
}

.product-hero {
    padding: 2rem 0 1.25rem;
}

.product-hero__breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(197, 175, 154, 0.28);
    box-shadow: 0 16px 32px rgba(56, 37, 27, 0.08);
    color: var(--clr-text-muted);
}

.product-hero__breadcrumbs a {
    color: var(--clr-primary);
    font-weight: 700;
}

.product-gallery-shell {
    display: grid;
    gap: 1rem;
}

.product-gallery__main {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-xl) + 4px);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.65), transparent 35%),
        linear-gradient(180deg, rgba(250, 245, 239, 0.96) 0%, rgba(242, 233, 223, 0.94) 100%);
    border: 1px solid rgba(194, 166, 140, 0.24);
    box-shadow: 0 28px 56px rgba(73, 49, 34, 0.14);
    aspect-ratio: 4 / 5;
    padding: 1rem;
}

.product-gallery__main img,
.product-gallery__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) + 2px);
}

.product-gallery__video {
    border: 0;
    background: #111;
}

.product-gallery__main img[hidden],
.product-gallery__video[hidden] {
    display: none;
}

.product-gallery__thumbs {
    display: flex;
    gap: 0.65rem;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.1rem 0 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(161, 121, 87, 0.45) transparent;
    overscroll-behavior-inline: contain;
}

.product-gallery__thumbs::-webkit-scrollbar {
    height: 7px;
}

.product-gallery__thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.product-gallery__thumbs::-webkit-scrollbar-thumb {
    background: rgba(161, 121, 87, 0.38);
    border-radius: 999px;
}

.product-gallery__thumb {
    position: relative;
    flex: 0 0 76px;
    width: 76px;
    border: 1px solid rgba(194, 166, 140, 0.22);
    background: #fff;
    border-radius: 16px;
    padding: 0.25rem;
    aspect-ratio: 1;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(73, 49, 34, 0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
    transform: translateY(-2px);
    border-color: rgba(161, 121, 87, 0.45);
    box-shadow: 0 18px 34px rgba(73, 49, 34, 0.12);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.product-gallery__thumb--video span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(45, 30, 37, 0.38);
    font-size: 1.15rem;
}

.product-gallery__thumb--video span i {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(45, 30, 37, 0.82);
    box-shadow: 0 10px 24px rgba(45, 30, 37, 0.22);
}

.product-panel--stack {
    display: grid;
    gap: 1rem;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.product-summary-card,
.product-options-card,
.product-benefits-card,
.product-purchase-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(194, 166, 140, 0.22);
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 22px 46px rgba(70, 46, 31, 0.1);
}

.product-summary-card {
    display: grid;
    gap: 1.2rem;
}

.product-direct-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 58px;
    padding: 0.95rem 1.35rem;
    border-radius: 22px;
    background:
        linear-gradient(135deg, var(--clr-primary) 0%, #4a2b39 100%);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(45, 30, 37, 0.2);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.product-direct-cta::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 21px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.product-direct-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 42px rgba(45, 30, 37, 0.24);
}

.product-direct-cta i {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    transition: transform var(--transition-fast);
}

.product-direct-cta:hover i {
    transform: translateY(2px);
}

.product-summary-card__badges {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.badge-soft {
    background: rgba(94, 67, 48, 0.08);
    color: var(--clr-primary);
}

.product-summary-card__heading {
    display: grid;
    gap: 0.55rem;
}

.product-summary-card__eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-summary-card__category {
    color: var(--clr-accent);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.product-summary-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(249, 244, 238, 0.94);
    border: 1px solid rgba(194, 166, 140, 0.2);
    white-space: nowrap;
}

.product-summary-price strong {
    color: var(--clr-primary);
    font-size: 1.2rem;
    font-weight: 900;
}

.product-summary-price span {
    color: var(--clr-text-muted);
    font-size: 0.86rem;
}

.product-summary-card__heading h1 {
    margin: 0;
    font-size: clamp(2.05rem, 3vw, 3rem);
    line-height: 1.15;
    color: var(--clr-primary);
}

.product-summary-card__heading p {
    margin: 0;
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    line-height: 1.95;
}

.product-summary-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(194, 166, 140, 0.18);
}

.rating-row--soft {
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(249, 244, 238, 0.92);
}

.rating-row--soft span {
    font-weight: 800;
}

.product-summary-card__sku {
    display: grid;
    gap: 0.15rem;
    text-align: left;
}

.product-summary-card__sku span {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.product-summary-card__sku strong {
    color: var(--clr-primary);
    font-size: 0.96rem;
    letter-spacing: 0.04em;
}

.filter-panel, .shop-summary, .product-panel, .tab-card, .empty-state {
    background-color: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

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

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.shop-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-pill);
    background-color: var(--clr-surface-alt);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--clr-accent);
    background-color: var(--clr-surface);
}

.price-panel {
    background-color: var(--clr-surface-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.product-price-panel {
    margin-bottom: 0;
    border-radius: 28px;
    border: 1px solid rgba(194, 166, 140, 0.18);
    background:
        linear-gradient(180deg, rgba(250, 245, 239, 0.98) 0%, rgba(244, 237, 230, 0.98) 100%);
    box-shadow: 0 22px 46px rgba(70, 46, 31, 0.08);
}

.price-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
    font-weight: 700;
}

.price-panel__offer {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(174, 46, 36, 0.08);
    color: var(--clr-danger);
}

.price-stack--large {
    gap: 0.85rem;
    margin-bottom: 0.65rem;
}

.price-stack--large .price-current {
    font-size: clamp(2.25rem, 4vw, 3.3rem);
}

.price-stack--large .price-old {
    font-size: 1.2rem;
}

.price-panel__note {
    margin: 0;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.variant-shell {
    margin-bottom: 1.5rem;
}

.checkout-shell__header,
.wishlist-shell .section-header,
.legal-hero {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    gap: 2rem;
    align-items: start;
}

.checkout-main {
    display: grid;
    gap: 1.5rem;
}

.checkout-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.checkout-card__head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.35rem;
}

.checkout-card__head h2,
.checkout-summary-card__head h2,
.legal-card h2 {
    margin: 0 0 0.35rem;
}

.checkout-card__head p,
.checkout-summary-card__head p,
.legal-card p {
    margin: 0;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.checkout-step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface-alt);
    color: var(--clr-primary);
    font-weight: 800;
    flex-shrink: 0;
}

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

.checkout-field,
.direct-order-form__grid label,
.admin-repeat-card__grid label {
    display: grid;
    gap: 0.45rem;
}

.checkout-field span,
.direct-order-form__grid label span,
.admin-repeat-card__grid label span {
    font-weight: 700;
    font-size: 0.95rem;
}

.direct-order-form__grid label span small {
    color: var(--clr-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.checkout-field--full,
.direct-order-form__full {
    grid-column: 1 / -1;
}

.checkout-field--address textarea.form-control {
    border-radius: 1rem;
}

.checkout-shipping-note,
.direct-order-form,
.admin-side-note {
    background: linear-gradient(180deg, rgba(247, 241, 234, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(189, 166, 145, 0.25);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
}

.checkout-shipping-note {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.checkout-shipping-note div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

[data-shipping-status],
.direct-order-form__status {
    margin: 0;
    color: var(--clr-text-muted);
}

[data-shipping-status].is-error,
.direct-order-form__status.is-error {
    color: #b42318;
}

.checkout-summary-card {
    display: grid;
    gap: 1.25rem;
}

.checkout-summary-card__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.checkout-items {
    display: grid;
    gap: 0.85rem;
}

.checkout-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    background: var(--clr-surface-alt);
}

.checkout-item--empty {
    grid-template-columns: 1fr;
    text-align: center;
    color: var(--clr-text-muted);
}

.checkout-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.checkout-item__content {
    display: grid;
    gap: 0.3rem;
}

.checkout-item__content h3,
.legal-faq-item h3 {
    margin: 0;
    font-size: 1rem;
}

.checkout-item__content p {
    margin: 0;
    color: var(--clr-text-muted);
    font-size: 0.92rem;
}

.checkout-item__content div,
.checkout-summary-line,
.wishlist-shell__actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.checkout-summary-lines {
    display: grid;
    gap: 0.8rem;
}

.checkout-summary-line--discount {
    color: #0f8b53;
}

.checkout-summary-line.is-hidden,
.checkout-summary-line--discount.is-hidden {
    display: none;
}

.checkout-coupon-box {
    display: grid;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(247, 241, 234, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(189, 166, 145, 0.22);
}

.checkout-coupon-box__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.checkout-coupon-box__head span {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.checkout-coupon-box__head span.is-error {
    color: var(--clr-danger);
}

.checkout-coupon-box__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.checkout-total-box {
    background: var(--clr-surface-alt);
    border-radius: var(--radius-lg);
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.checkout-total-box strong {
    font-size: 1.6rem;
    color: var(--clr-primary);
}

.checkout-terms {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: flex-start;
}

.checkout-terms a {
    color: var(--clr-primary);
    text-decoration: underline;
}

.product-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.product-offers-list {
    display: grid;
    gap: 1rem;
}

.product-offer-option {
    position: relative;
    display: flex;
    direction: rtl;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(194, 166, 140, 0.26);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 249, 245, 0.96) 100%);
    box-shadow: 0 10px 24px rgba(45, 30, 37, 0.04);
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

.product-offer-option.is-active {
    border-color: rgba(45, 30, 37, 0.82);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 246, 248, 0.98) 100%);
    box-shadow: 0 18px 38px rgba(45, 30, 37, 0.11);
    transform: translateY(-2px);
}

.product-offer-option__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.product-offer-option__top {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.product-offer-option__content {
    direction: rtl;
    display: grid;
    flex: 1 1 0;
    gap: 0.5rem;
    min-width: 0;
    order: 2;
}

.product-offer-option__main {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
    min-width: 0;
}

.product-offer-option__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.product-offer-option__radio {
    order: 1;
    width: 24px;
    height: 24px;
    margin-top: 0.38rem;
    border-radius: 50%;
    border: 2px solid rgba(45, 30, 37, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    transition: all var(--transition-fast);
}

.product-offer-option.is-active .product-offer-option__radio {
    border-color: #1fbe67;
    background: #1fbe67;
}

.product-offer-option__radio::after {
    content: '\2713';
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    transform: scale(0);
    transition: transform var(--transition-fast);
}

.product-offer-option.is-active .product-offer-option__radio::after {
    transform: scale(1);
}

.product-offer-option__title {
    font-size: 1.05rem;
    color: var(--clr-primary);
    margin: 0;
    font-weight: 900;
}

.product-offer-option__description,
.product-offer-option__meta,
.product-offer-option__meta-row {
    margin: 0;
    color: var(--clr-text-muted);
    line-height: 1.65;
    font-size: 0.88rem;
}

.product-offer-option__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.product-offer-option__meta-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(247, 241, 234, 0.9);
    color: var(--clr-primary);
    font-weight: 800;
    padding: 0.22rem 0.55rem;
}

.product-offer-option__meta-row .product-offer-option__free-shipping {
    background: rgba(31, 190, 103, 0.12);
    color: #128549;
}

.product-offer-option__price {
    display: grid;
    gap: 0.35rem;
    text-align: left;
    min-width: 132px;
}

.product-offer-option__price-line {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    white-space: nowrap;
    direction: rtl;
}

.product-offer-option__price-line strong {
    color: var(--clr-primary);
    font-size: 1.06rem;
    font-weight: 900;
}

.product-offer-option__price-line span {
    color: var(--clr-text-muted);
    font-size: 0.82rem;
    text-decoration: line-through;
}

.product-offer-option__price strong {
    font-size: 1.65rem;
    line-height: 1;
    color: var(--clr-primary);
}

.product-offer-option__save {
    order: 3;
    align-self: start;
    min-width: 74px;
    border-radius: 999px;
    background: var(--clr-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 0.35rem 0.62rem;
    text-align: center;
    white-space: nowrap;
}

.product-offer-option__body {
    direction: rtl;
    order: 4;
    flex: 1 0 100%;
    display: none;
    margin-top: 0.35rem;
    padding-top: 0.9rem;
    border-top: 1px dashed rgba(194, 166, 140, 0.28);
}

.product-offer-option__body > .product-selection-note,
.direct-order-form__offer-summary {
    display: none !important;
}

.product-offer-option.is-active .product-offer-option__body {
    display: grid;
    gap: 0.9rem;
}

.product-piece-grid {
    display: grid;
    gap: 0.85rem;
}

.product-piece-card {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(45, 30, 37, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-piece-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.product-piece-card__head strong {
    color: var(--clr-primary);
    font-size: 1rem;
}

.product-piece-card__head span {
    color: var(--clr-text-muted);
    font-size: 0.88rem;
}

.product-selection-note {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(194, 157, 109, 0.11);
    color: var(--clr-primary);
    line-height: 1.8;
}

.product-selection-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: rgba(194, 157, 109, 0.12);
    color: var(--clr-primary);
    font-weight: 800;
}

.direct-order-form__offer-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1rem 1.15rem;
    border-radius: 24px;
    border: 1px solid rgba(194, 157, 109, 0.2);
    background:
        linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(248, 238, 227, 0.9));
    box-shadow: 0 12px 28px rgba(45, 30, 37, 0.06);
}

.direct-order-form__offer-label {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.direct-order-form__offer-summary .product-selection-badge {
    justify-content: flex-start;
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    background: rgba(194, 157, 109, 0.16);
    color: var(--clr-primary);
    box-shadow: inset 0 0 0 1px rgba(194, 157, 109, 0.14);
}

.direct-order-form__selection {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(194, 166, 140, 0.2);
}

.direct-order-form__selection .product-card-section__head {
    gap: 0.2rem;
}

.direct-order-form__selection .product-card-section__head h3 {
    font-size: 1.08rem;
}

.direct-order-form__selection .product-card-section__head p {
    font-size: 0.9rem;
}

.product-offers-list--compact {
    gap: 0.75rem;
}

.product-options-stack {
    display: grid;
    gap: 1rem;
}

.product-variant-group {
    display: grid;
    gap: 0.75rem;
}

.product-variant-group__title {
    font-weight: 800;
    color: var(--clr-primary);
}

.product-variant-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    background: var(--clr-surface-alt);
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
}

.product-variant-chip input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.product-variant-chip:has(input:checked) {
    border-color: var(--clr-accent);
    background: #fff;
    box-shadow: 0 10px 24px rgba(45, 30, 37, 0.08);
}

.product-variant-chip__swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.product-variant-chip--image {
    min-width: 0;
    padding: 0.35rem;
    border-radius: 16px;
}

.product-variant-chip__image {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(194, 166, 140, 0.28);
    background: #fff;
}

.direct-order-form {
    display: grid;
    gap: 1rem;
}

.direct-order-form__extras {
    display: grid;
    gap: 1rem;
}

.direct-order-form__coupon-box,
.direct-order-form__summary {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(189, 166, 145, 0.2);
    border-radius: 22px;
    padding: 1rem 1.05rem;
}

.direct-order-form__summary {
    display: grid;
    gap: 0.9rem;
}

.direct-order-form__summary-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.direct-order-form__summary-head strong {
    display: block;
    color: var(--clr-primary);
    margin-bottom: 0.25rem;
}

.direct-order-form__summary-head span {
    color: var(--clr-text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.direct-order-form__summary-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(194, 157, 109, 0.12);
    color: var(--clr-primary);
    font-weight: 700;
    white-space: nowrap;
}

.direct-order-form__total {
    background: rgba(247, 241, 234, 0.92);
}

.product-card-section__head {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.product-card-section__head h3 {
    margin: 0;
    color: var(--clr-primary);
}

.product-card-section__head p {
    margin: 0;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.direct-order-form h3 {
    margin: 0;
}

.direct-order-form p {
    margin: 0;
    color: var(--clr-text-muted);
}

.direct-order-form__grid,
.admin-repeat-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.direct-order-form__field {
    position: relative;
}

.direct-order-form__field > i {
    color: var(--clr-accent);
    font-size: 0.98rem;
    inset-block-end: 1rem;
    inset-inline-start: 1rem;
    opacity: 0.9;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.direct-order-form__field .form-control {
    padding-inline-start: 2.85rem;
}

.direct-order-form__field--textarea > i {
    inset-block-end: auto;
    top: 2.65rem;
}

.direct-order-form__field textarea.form-control {
    border-radius: 1rem;
    min-height: 112px;
    resize: vertical;
}

.direct-order-form__quantity {
    max-width: 150px;
}

.direct-order-form__quantity input {
    text-align: center;
}

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

.wishlist-shell__actions {
    justify-content: center;
    margin-bottom: 2rem;
}

.wishlist-grid,
.legal-grid,
.legal-stack {
    display: grid;
    gap: 1.25rem;
}

.wishlist-grid,
.legal-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.legal-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.legal-card--richtext > * + * {
    margin-top: 1rem;
}

.legal-card--richtext h2,
.legal-card--richtext h3,
.legal-card--richtext h4 {
    margin: 0;
    color: var(--clr-primary);
}

.legal-card--richtext p,
.legal-card--richtext li {
    color: var(--clr-text-muted);
    line-height: 1.9;
}

.legal-card--richtext ul,
.legal-card--richtext ol {
    list-style: disc;
    padding-inline-start: 1.25rem;
}

.legal-card--richtext a {
    color: var(--clr-primary);
    text-decoration: underline;
}

.legal-faq-list {
    display: grid;
    gap: 1rem;
}

.legal-faq-item {
    border-top: 1px solid rgba(45, 30, 37, 0.08);
    padding-top: 1rem;
}

.legal-faq-item:first-child {
    border-top: none;
    padding-top: 0;
}

.legal-faq-item p {
    margin: 0.45rem 0 0;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .checkout-layout,
    .product-details {
        grid-template-columns: 1fr;
    }

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

    .product-review-form-card {
        position: static;
    }

    .product-summary-card__meta,
    .price-panel__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .checkout-form-grid,
    .direct-order-form__grid,
    .admin-repeat-card__grid {
        grid-template-columns: 1fr;
    }

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

    .direct-order-form__offer-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .direct-order-form__offer-summary .product-selection-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .direct-order-form__quantity {
        max-width: 132px;
    }

    .direct-order-form__summary-head {
        flex-direction: column;
    }

    .direct-order-form__summary-chip {
        width: 100%;
    }

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

    .product-collapse-card__toggle {
        grid-template-columns: auto 1fr;
    }

    .product-reviews-score {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .product-gallery__thumbs {
        gap: 0.55rem;
    }

    .product-gallery__thumb {
        flex-basis: 68px;
        width: 68px;
    }

    .checkout-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .checkout-item img {
        width: 100%;
        height: 180px;
    }

    .product-offer-option__top,
    .product-piece-card__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-offer-option__price {
        text-align: right;
        min-width: 0;
    }

    .product-offer-option {
        align-items: start;
    }

    .product-offer-option__save {
        order: 3;
    }

    .product-offer-option__radio {
        order: 1;
    }

    .product-offer-option__content {
        order: 2;
    }

    .product-offer-option__main {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-coupon-box__row {
        grid-template-columns: 1fr;
    }
}

.benefits-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefits-list--card {
    margin-top: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-info-section {
    margin: 4rem 0;
}

.product-collapse-card {
    margin: 1.35rem 0;
    padding: 0.85rem 0.95rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(194, 166, 140, 0.18);
    box-shadow: 0 18px 44px rgba(45, 30, 37, 0.07);
}

.product-purchase-card--after-reviews {
    margin: 1.35rem 0;
    scroll-margin-top: 120px;
}

.product-collapse-card__toggle {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    text-align: right;
}

.product-collapse-card__icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(249, 244, 238, 0.95);
    border: 1px solid rgba(194, 166, 140, 0.18);
    color: var(--clr-primary);
}

.product-collapse-card__heading {
    display: grid;
    gap: 0.15rem;
}

.product-collapse-card__heading strong {
    color: var(--clr-primary);
    font-size: clamp(1.12rem, 1.8vw, 1.45rem);
    font-weight: 900;
}

.product-collapse-card__heading small {
    color: var(--clr-text-muted);
    font-size: 0.82rem;
}

.product-collapse-card__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms ease, padding-top 220ms ease;
}

.product-collapse-card__body > * {
    overflow: hidden;
}

.product-collapse-card__body.is-open {
    grid-template-rows: 1fr;
    padding-top: 0.8rem;
}

.product-description-copy {
    position: relative;
    color: var(--clr-text);
    line-height: 1.9;
    font-size: 0.93rem;
}

.product-description-panel .product-collapse-card__body {
    grid-template-rows: 1fr;
    padding-top: 0.65rem;
}

.product-description-panel .product-collapse-card__body:not(.is-open) .product-description-copy {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description-panel .product-collapse-card__body:not(.is-open) .product-description-copy::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 1.75em;
    backdrop-filter: blur(1.5px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.92));
    pointer-events: none;
}

.product-reviews-score {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.52rem 0.82rem;
    border-radius: 999px;
    background: rgba(249, 244, 238, 0.94);
    color: var(--clr-primary);
}

.product-reviews-score b {
    font-size: 1.12rem;
    font-weight: 900;
}

.product-reviews-score small {
    color: var(--clr-text-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.product-reviews-score span,
.product-review-stars {
    color: #f4a51c;
    letter-spacing: 0.04em;
}

.product-reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
}

.product-reviews-list {
    display: grid;
    gap: 0.7rem;
}

.product-review-card,
.product-review-form-card,
.product-reviews-empty,
.product-reviews-closed,
.product-review-notice {
    border-radius: 22px;
    border: 1px solid rgba(194, 166, 140, 0.16);
    background: rgba(251, 249, 246, 0.72);
}

.product-review-card {
    display: grid;
    gap: 0.55rem;
    padding: 0.85rem 0.95rem;
}

.product-review-card__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.product-review-card__head div {
    display: grid;
    gap: 0.25rem;
}

.product-review-card__head strong,
.product-review-card h3 {
    color: var(--clr-primary);
}

.product-review-card__head strong {
    font-size: 0.95rem;
}

.product-review-meta {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
}

.product-review-meta b {
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    background: var(--clr-success-bg);
    color: var(--clr-success);
}

.product-review-meta em {
    color: var(--clr-text-muted);
    font-style: normal;
}

.product-review-card h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 900;
}

.product-review-card p,
.product-review-form-card p,
.product-reviews-empty span,
.product-reviews-closed span {
    margin: 0;
    color: var(--clr-text-muted);
    line-height: 1.75;
    font-size: 0.9rem;
}

.product-review-form-card {
    display: grid;
    gap: 0.85rem;
    padding: 1.15rem;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.product-review-form-card h3 {
    margin: 0;
    color: var(--clr-primary);
}

.product-review-form {
    display: grid;
    gap: 0.8rem;
}

.product-review-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 800;
}

.product-review-form small {
    color: var(--clr-text-muted);
    font-weight: 600;
}

.product-review-form textarea.form-control {
    border-radius: 20px;
    resize: vertical;
    min-height: 116px;
}

.product-reviews-empty,
.product-reviews-closed {
    min-height: 190px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.45rem;
    padding: 1.5rem;
}

.product-reviews-empty i,
.product-reviews-closed i {
    font-size: 1.55rem;
    color: var(--clr-accent);
}

.product-reviews-empty strong,
.product-reviews-closed strong {
    color: var(--clr-primary);
    font-size: 1.1rem;
}

.product-review-notice {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    color: var(--clr-primary);
    font-weight: 800;
}

.product-recommendations-section .section-header {
    margin-bottom: 2rem;
}

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

.section-head--center {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-head--center h2 {
    margin: 0.7rem 0 0.8rem;
    color: var(--clr-primary);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-head--center p {
    margin: 0;
    color: var(--clr-text-muted);
    line-height: 1.9;
}

.info-card__title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

/* --- 14. Responsive Breakpoints --- */

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

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

    .home-product-card--hero {
        grid-column: span 2;
    }

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

@media (max-width: 992px) {
    .d-desktop { display: none; }
    .d-mobile { display: flex; }

    .top-ribbon {
        display: none;
    }

    .mobile-nav-panel {
        display: block;
    }
    
    .site-header__inner {
        gap: 1rem;
    }
    
    .brand-mark {
        flex: 1;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .bento-large, .bento-wide, .bento-item {
        grid-column: span 6;
    }
    
    .bento-item {
        grid-row: span 1;
    }
    
    .bento-large {
        grid-row: span 2;
    }

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

    .home-category-card,
    .home-category-card--feature {
        grid-column: span 6;
        grid-row: span 1;
    }

    .home-product-editorial-grid,
    .home-mosaic-grid,
    .home-product-row-grid,
    .home-product-compact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-product-card--hero,
    .home-product-card--mini,
    .home-product-card--mini:nth-child(1),
    .home-product-card--mini:nth-child(6) {
        grid-column: span 1;
    }

    .home-product-row-grid--carousel .home-product-card {
        flex-basis: calc((100% - 1rem) / 2);
    }

    .home-carousel {
        padding-inline: 3.1rem;
    }

    .home-carousel__arrow--prev {
        right: 0.35rem;
    }

    .home-carousel__arrow--next {
        left: 0.35rem;
    }

    .home-offer-panel {
        grid-template-columns: 1fr;
    }

    .home-offer-panel__media {
        min-height: 300px;
    }

    .product-grid--recommendations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .editorial-card {
        grid-template-columns: 1fr;
    }
    
    .editorial-card__content {
        padding: 3rem;
    }
    
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .site-footer__cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin: 0;
        border-radius: 0;
        height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .trust-divider {
        display: none;
    }
    
    .promo-banner {
        padding: 2rem;
    }

    .home-section-meta--split {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-category-layout {
        grid-template-columns: 1fr;
    }

    .home-category-card,
    .home-category-card--feature {
        aspect-ratio: 16 / 11;
        grid-column: auto;
        min-height: 230px;
    }

    .home-product-rail {
        grid-auto-columns: minmax(238px, 78vw);
        margin-inline: calc(var(--container-padding, 1rem) * -1);
        padding-inline: var(--container-padding, 1rem);
    }

    .home-offer-panel__content {
        padding: 2rem;
    }

    .home-offer-panel__content h2 {
        max-width: 100%;
    }
    
    .site-footer__cols {
        grid-template-columns: 1fr;
    }
    
    .site-footer__bottom {
        flex-direction: column;
        gap: 1rem;
    }
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .shop-shell {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: relative;
        top: 0;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .home-product-editorial-grid,
    .home-mosaic-grid,
    .home-product-row-grid,
    .home-product-compact-grid {
        grid-template-columns: 1fr;
    }

    .home-product-card--hero .product-card__media,
    .home-product-card--mini .product-card__media {
        aspect-ratio: 4 / 4.4;
    }

    .home-product-row-grid--carousel .home-product-card {
        flex-basis: 100%;
    }

    .home-carousel {
        padding-inline: 2.75rem;
    }

    .home-carousel__arrow {
        height: 40px;
        width: 40px;
    }

    .home-category-card,
    .home-category-card--feature {
        aspect-ratio: 1 / 1.06;
    }

    .home-offer-panel__media {
        min-height: 240px;
    }

    .product-grid--recommendations {
        grid-template-columns: 1fr;
    }
    
    .bento-large {
        grid-row: span 1;
    }
    
    .editorial-card__content {
        padding: 2rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-icon {
        display: none;
    }
    
    .input-group input {
        padding: 1rem;
        border-radius: var(--radius-sm);
        margin-bottom: 0.5rem;
    }
    
    .input-group .btn {
        position: relative;
        left: 0;
        top: 0;
        bottom: 0;
        border-radius: var(--radius-sm);
    }
}

/* --- Loader Animation --- */
.spa-loader {
    position: fixed;
    inset: 0 0 auto;
    height: 3px;
    background: transparent;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 160ms ease, visibility 160ms ease;
}

.spa-loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(194, 157, 109, 0.28) 12%, var(--clr-accent) 48%, var(--clr-primary) 76%, transparent 100%);
    box-shadow: 0 0 18px rgba(194, 157, 109, 0.34);
    transform: translateX(100%);
}

.spa-loader.is-active {
    opacity: 1;
    visibility: visible;
}

.spa-loader.is-active::before {
    animation: spaProgressSweep 900ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.spa-loader__shell {
    display: none;
}

.spa-loader__hero {
    display: grid;
    gap: 0.9rem;
    width: min(620px, 100%);
}

.spa-loader__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.spa-loader__card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(230, 222, 216, 0.72);
    box-shadow: var(--shadow-sm);
}

.spa-loader__card-body {
    display: grid;
    gap: 0.8rem;
}

.spa-loader__status {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(45, 30, 37, 0.04);
    color: var(--clr-primary);
    font-weight: 700;
}

.spa-skeleton {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    background: linear-gradient(90deg, #efe7e1 0%, #f9f5f1 50%, #efe7e1 100%);
    background-size: 220% 100%;
    animation: skeletonShimmer 1.35s ease-in-out infinite;
}

.spa-skeleton--pill {
    width: 140px;
    height: 18px;
}

.spa-skeleton--title {
    width: min(460px, 100%);
    height: 54px;
    border-radius: 20px;
}

.spa-skeleton--heading {
    width: 72%;
    height: 24px;
    border-radius: 14px;
}

.spa-skeleton--meta {
    width: 120px;
    height: 16px;
}

.spa-skeleton--line {
    width: 100%;
    height: 14px;
}

.spa-skeleton--line-short {
    width: 62%;
}

.spa-skeleton--media {
    width: 100%;
    aspect-ratio: 1 / 0.92;
    border-radius: 22px;
}

.spa-skeleton--button {
    width: 150px;
    height: 42px;
    border-radius: 999px;
}

.spa-loader__spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--clr-surface-alt);
    border-top-color: var(--clr-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes skeletonShimmer {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: -100% 50%;
    }
}

body.is-spa-loading {
    cursor: progress;
}

.store-main {
    transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

body.is-spa-loading .store-main {
    opacity: 0.74;
    transform: translateY(4px);
    filter: saturate(0.96);
    overflow-anchor: none;
}

@keyframes spaProgressSweep {
    0% {
        transform: translateX(100%) scaleX(0.24);
    }

    45% {
        transform: translateX(10%) scaleX(0.72);
    }

    100% {
        transform: translateX(-100%) scaleX(0.36);
    }
}

@media (prefers-reduced-motion: reduce) {
    .spa-loader,
    .spa-loader::before,
    .store-main {
        animation: none;
        transition: none;
    }

    body.is-spa-loading .store-main {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
/* ==========================================================================
   Homepage Premium & Bento Grid Refinements
   ========================================================================== */

/* Cinematic Hero Styling */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-image: var(--hero-bg);
}

.hero-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-section__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-trust {
    color: #fff;
    gap: 2rem;
}

.trust-item strong {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.trust-item span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.trust-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Premium Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-height: 100%;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover img {
    transform: scale(1.08);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 4;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 3;
}

.bento-tall {
    grid-row: span 2;
}

.bento-medium {
    grid-row: span 3;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    width: max-content;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.bento-item:hover .btn-link::after {
    width: 100%;
}

/* Promo Banner */
.promo-banner {
    position: relative;
    padding: 6rem 4rem;
    background-size: cover;
    background-position: center;
    background-image: var(--promo-bg);
    color: #fff;
    overflow: hidden;
}

.promo-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.promo-banner__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.promo-banner__content h1,
.promo-banner__content h2 {
    color: #fff;
}

.promo-banner--shop-hero {
    justify-content: center;
    align-items: center !important;
    text-align: center;
    isolation: isolate;
}

.promo-banner--shop-hero .promo-banner__overlay {
    background: linear-gradient(180deg, rgba(27, 20, 19, 0.78) 0%, rgba(27, 20, 19, 0.62) 100%) !important;
}

.promo-banner--shop-hero .promo-banner__content {
    max-width: 760px !important;
    margin-inline: auto;
    text-align: center;
}

.promo-banner--shop-hero .promo-banner__title {
    font-family: var(--font-body);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.promo-banner--shop-hero .promo-banner__content p {
    max-width: 720px;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.9;
}

.promo-banner--home {
    align-items: center;
    justify-content: center;
    min-height: clamp(330px, 36vw, 460px);
    padding: clamp(2rem, 5vw, 4.25rem);
    border-radius: 30px;
    background-position: center;
    box-shadow: 0 24px 70px rgba(45, 30, 37, 0.14);
    isolation: isolate;
}

.promo-banner--home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 34%),
        linear-gradient(180deg, rgba(17, 13, 13, 0.16) 0%, rgba(17, 13, 13, 0.34) 100%);
    pointer-events: none;
}

.promo-banner--home .promo-banner__overlay {
    background: linear-gradient(180deg, rgba(18, 13, 12, 0.64) 0%, rgba(18, 13, 12, 0.68) 50%, rgba(18, 13, 12, 0.74) 100%) !important;
}

.promo-banner--home .promo-banner__content {
    z-index: 2;
    width: min(720px, 100%);
    max-width: min(720px, 100%);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    text-align: center;
}

.promo-banner--home .promo-badge {
    margin: 0;
    padding: 0.42rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(194, 157, 109, 0.9);
    color: #fff;
    box-shadow: 0 10px 28px rgba(20, 14, 14, 0.18);
    text-align: center !important;
}

.promo-banner--home .promo-banner__content h2 {
    max-width: 12.5ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4.3vw, 4.25rem);
    font-weight: 800;
    line-height: 0.98;
    text-align: center !important;
    text-wrap: balance;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.promo-banner--home .promo-banner__content p {
    max-width: 58ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(0.98rem, 1.35vw, 1.12rem);
    line-height: 1.9;
    text-align: center !important;
}

.promo-banner--home .btn {
    margin-top: 0.35rem;
    min-width: 148px;
    box-shadow: 0 14px 34px rgba(25, 16, 20, 0.28);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .bento-large { grid-column: span 2; grid-row: span 2; }
    .bento-wide { grid-column: span 2; grid-row: span 1; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-section { min-height: 70vh; margin: 0; border-radius: 0; max-width: 100%; }
}

@media (max-width: 575px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .bento-large, .bento-wide, .bento-tall, .bento-medium { grid-column: span 1; grid-row: span 1; }
    .promo-banner { padding: 4rem 2rem; }
    .promo-banner--home {
        min-height: 340px;
        padding: 2rem;
    }
    .promo-banner--home .promo-banner__content h2 {
        max-width: 100%;
    }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: 1rem; text-align: center; }
    .trust-divider { width: 100%; height: 1px; }
}

/* Homepage categories Bento override */
.home-categories-bento .section-header {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.home-categories-bento .bento-grid {
    display: grid;
    direction: ltr;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 2.35fr) !important;
    grid-template-areas:
        "large tall"
        "medium wide";
    grid-template-rows: repeat(2, minmax(330px, 330px));
    grid-auto-rows: minmax(330px, 330px) !important;
    gap: 1.5rem;
    margin-top: 0;
    align-items: stretch;
}

.home-categories-bento .bento-item {
    direction: rtl;
    text-align: right;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
    min-height: 100%;
    height: 100%;
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(88, 61, 41, 0.16);
    isolation: isolate;
    background: linear-gradient(180deg, rgba(215, 198, 184, 0.35) 0%, rgba(191, 165, 144, 0.7) 100%);
}

.home-categories-bento .bento-large {
    grid-area: large !important;
}

.home-categories-bento .bento-tall {
    grid-area: tall !important;
}

.home-categories-bento .bento-medium {
    grid-area: medium !important;
}

.home-categories-bento .bento-wide {
    grid-area: wide !important;
}

.home-categories-bento .bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
}

.home-categories-bento .bento-overlay {
    background:
        linear-gradient(180deg, rgba(34, 22, 17, 0.06) 0%, rgba(34, 22, 17, 0.18) 38%, rgba(18, 11, 8, 0.88) 100%);
}

.home-categories-bento .bento-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.55rem;
}

.home-categories-bento .bento-content h3 {
    margin: 0;
    font-size: clamp(1.1rem, 1.4vw, 1.55rem);
    line-height: 1.45;
    color: #fff;
}

.home-categories-bento .bento-content p {
    display: block;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 249, 245, 0.86);
    max-width: 28ch;
}

.home-categories-bento .btn-link {
    margin-top: 0.35rem;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .home-categories-bento .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-areas:
            "large tall"
            "medium wide";
        grid-template-rows: repeat(2, minmax(270px, 270px));
        grid-auto-rows: minmax(270px, 270px) !important;
    }
}

@media (max-width: 575px) {
    .home-categories-bento .section-header {
        margin-bottom: 2.5rem;
    }

    .home-categories-bento .bento-grid {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "large"
            "tall"
            "medium"
            "wide";
        grid-template-rows: none;
        grid-auto-rows: minmax(250px, 250px) !important;
        gap: 1rem;
    }

    .home-categories-bento .bento-content {
        padding: 1.35rem;
    }
}

/* Enhanced homepage categories presentation */
.home-categories-bento {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(194, 157, 109, 0.16), transparent 34%),
        linear-gradient(180deg, #f7f1eb 0%, var(--clr-surface-alt) 100%);
}

.home-categories-bento::before {
    content: '';
    position: absolute;
    inset: 2rem 7%;
    border: 1px solid rgba(194, 157, 109, 0.14);
    border-radius: 48px;
    pointer-events: none;
}

.home-categories-bento .section-header,
.home-categories-bento .bento-grid {
    position: relative;
    z-index: 1;
}

.home-categories-bento .section-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.35rem 1.15rem;
    border: 1px solid rgba(194, 157, 109, 0.38);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(45, 30, 37, 0.06);
    color: var(--clr-accent-hover);
    letter-spacing: 0;
    text-transform: none;
}

.home-categories-bento .section-title {
    position: relative;
    width: fit-content;
    margin: 0.75rem auto 0;
    font-family: var(--font-body);
    font-weight: 900;
    letter-spacing: -0.045em;
    color: var(--clr-primary);
}

.home-categories-bento .section-title::after {
    content: '';
    display: block;
    width: 78px;
    height: 3px;
    margin: 0.8rem auto 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
}

.home-categories-bento .section-desc {
    max-width: 560px;
    margin-inline: auto;
    color: rgba(45, 30, 37, 0.62);
    line-height: 1.9;
}

.home-categories-bento .bento-item {
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: 0 24px 70px rgba(45, 30, 37, 0.12);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.home-categories-bento .bento-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 90px rgba(45, 30, 37, 0.18);
}

.home-categories-bento .bento-overlay {
    background:
        radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.28), transparent 34%),
        linear-gradient(180deg, rgba(34, 22, 17, 0.04) 0%, rgba(34, 22, 17, 0.22) 40%, rgba(18, 11, 8, 0.9) 100%) !important;
}

.home-categories-bento .bento-content {
    padding: 2rem;
    gap: 0.6rem;
}

.home-categories-bento .bento-kicker {
    width: fit-content;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.4;
    backdrop-filter: blur(14px);
}

.home-categories-bento .bento-content h3 {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 1.6vw, 1.75rem);
    font-weight: 900;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.home-categories-bento .btn-link {
    width: fit-content;
    margin-top: 0.55rem;
    padding: 0.48rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    transition: background var(--transition-normal), transform var(--transition-normal), border-color var(--transition-normal);
}

.home-categories-bento .bento-item:hover .btn-link {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    transform: translateX(-4px);
}

.home-categories-bento .btn-link::after {
    display: none;
}

@media (max-width: 575px) {
    .home-categories-bento::before {
        inset: 1rem;
        border-radius: 32px;
    }

    .home-categories-bento .bento-content {
        padding: 1.35rem;
    }
}

/* Homepage hero centered alignment */
.hero-section {
    justify-content: center;
}

.hero-section__inner {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

.hero-section .hero-content {
    max-width: 920px !important;
    margin-inline: auto;
    text-align: center;
}

.hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.hero-section .hero-title,
.hero-section .hero-desc {
    text-align: center;
    margin-inline: auto;
}

.hero-section .hero-title {
    max-width: 18ch;
    font-family: var(--font-body);
    font-size: clamp(2.15rem, 3.35vw, 3.35rem);
    font-weight: 800;
    line-height: 1.24;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-section .hero-desc {
    max-width: 760px;
}

.hero-section .hero-actions {
    justify-content: center;
    align-items: center;
}

.hero-section .hero-trust {
    justify-items: center;
    align-items: center !important;
    text-align: center;
}

.hero-section .trust-item {
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section .hero-content {
        max-width: 100% !important;
    }

    .hero-section .hero-title {
        max-width: 14ch;
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        line-height: 1.28;
    }
}

.offers-hero {
    padding: 2rem 0 1rem;
}

.offers-hero__shell {
    position: relative;
    min-height: 360px;
    border-radius: calc(var(--radius-xl) + 6px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: clamp(1.5rem, 4vw, 3rem);
    display: grid;
    gap: 2rem;
    align-items: end;
    box-shadow: var(--shadow-lg);
}

.offers-hero__content {
    max-width: 760px;
    display: grid;
    gap: 0.9rem;
    margin-inline: auto;
    justify-items: center;
    text-align: center;
}

.offers-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
}

.offers-hero__content h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.2;
    color: #fff9f3;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.offers-hero__content p {
    margin: 0;
    color: rgba(255, 248, 240, 0.96);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 48rem;
}

.offers-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
}

.offers-hero__stats article {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: 1rem 1.15rem;
    display: grid;
    gap: 0.25rem;
    justify-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.offers-hero__stats strong {
    font-size: 1.2rem;
}

.offers-hero__stats span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.offers-content {
    padding-top: 1rem;
}

.offers-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.offers-strip__card {
    padding: 1.35rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fffefa 0%, #f8f1ea 100%);
    border: 1px solid rgba(202, 162, 127, 0.22);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 0.45rem;
}

.offers-strip__card span {
    color: var(--brand);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.offers-strip__card h3,
.offers-strip__card p {
    margin: 0;
}

.offers-head {
    margin-bottom: 1.25rem;
}

.offers-empty-state {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 2rem;
}

@media (max-width: 991px) {
    .offers-hero__stats,
    .offers-strip {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   Kero Lens / Bella Rose - Premium Beauty Home UI
   Safe home-only override - added by kero-home-premium-ui
   ========================================================= */

:root{
    --clr-base:#ffffff;
    --clr-surface:#ffffff;
    --clr-surface-alt:#fff6fa;
    --clr-primary:#ef6f9f;
    --clr-primary-light:#ff8eb6;
    --clr-accent:#ff5f97;
    --clr-accent-hover:#e94f86;
    --clr-accent-light:#fff0f6;
    --clr-border:#ffd1e1;
    --clr-border-light:#ffe6ef;
    --clr-text:#171017;
    --clr-text-muted:#756873;
    --shadow-sm:0 8px 22px rgba(239,111,159,.08);
    --shadow-md:0 18px 44px rgba(239,111,159,.13);
    --shadow-lg:0 28px 75px rgba(239,111,159,.20);
}

body{
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 214, 230, .45), transparent 28%),
        radial-gradient(circle at 94% 16%, rgba(255, 235, 244, .75), transparent 26%),
        #fff;
}

.hero-section,
.section-shell{
    background: transparent !important;
}

.section-shell{
    padding-block: clamp(2.4rem, 5vw, 5rem);
}

.home-section-meta .section-subtitle,
.home-product-card__kicker{
    color:#ef6f9f !important;
    font-weight:900;
    letter-spacing:.02em;
}

.home-section-meta .section-title{
    color:#181018;
    font-weight:900;
}

.home-section-meta .section-desc{
    color:#756873;
}

.home-product-row-grid{
    gap:clamp(1rem, 2vw, 1.7rem);
}

.home-product-row-grid .home-product-card{
    border:1.5px solid rgba(255, 112, 160, .55);
    border-radius:24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,253,.96));
    box-shadow:0 14px 42px rgba(239,111,159,.10);
    overflow:hidden;
    isolation:isolate;
    transform:translateY(0);
}

.home-product-row-grid .home-product-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(255,255,255,.0), rgba(255,218,232,.35));
    opacity:0;
    transition:opacity .35s ease;
    pointer-events:none;
    z-index:0;
}

.home-product-row-grid .home-product-card:hover{
    transform:translateY(-9px);
    border-color:rgba(255, 95, 151, .9);
    box-shadow:0 26px 70px rgba(239,111,159,.20);
}

.home-product-row-grid .home-product-card:hover::before{
    opacity:1;
}

.home-product-row-grid .product-card__media{
    margin:12px 12px 0;
    border-radius:20px;
    aspect-ratio:1 / 1.08;
    background:
        radial-gradient(circle at center, #fff 0%, #fff7fb 62%, #ffe8f1 100%);
}

.home-product-row-grid .product-card__media .product-card__link{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.home-product-row-grid .product-img{
    object-fit:contain;
    padding:18px;
    transform:scale(1);
    transition:opacity .38s ease, transform .55s cubic-bezier(.2,.75,.2,1), filter .38s ease;
}

.home-product-row-grid .product-img--hover{
    position:absolute;
    inset:0;
    opacity:0;
    z-index:2;
}

.home-product-row-grid .home-product-card:hover .product-img--primary,
.home-product-row-grid .home-product-card.is-touch-preview .product-img--primary{
    opacity:0;
    transform:scale(1.08) rotate(-1deg);
}

.home-product-row-grid .home-product-card:hover .product-img--hover,
.home-product-row-grid .home-product-card.is-touch-preview .product-img--hover{
    opacity:1;
    transform:scale(1.05);
}

.home-product-row-grid .home-product-card:not(:has(.product-img--hover)):hover .product-img{
    opacity:1;
    transform:scale(1.08) rotate(-1deg);
}

.product-card__badges{
    top:1rem;
    right:1rem;
}

.badge-sale,
.badge-new{
    background:linear-gradient(135deg, #ff5f97, #ef2f7c);
    color:#fff;
    box-shadow:0 10px 24px rgba(239,47,124,.22);
}

.btn-wishlist{
    background:rgba(255,255,255,.92);
    color:#ef6f9f;
    border:1px solid rgba(255, 185, 209, .9);
}

.home-product-card .product-card__info{
    padding:1rem 1.05rem 1.15rem;
    min-height:210px;
    display:flex;
    flex-direction:column;
}

.home-product-card .product-title{
    min-height:48px;
    margin:.35rem 0 .35rem;
    font-family:var(--font-body);
    font-weight:900;
    line-height:1.45;
}

.home-product-card .product-title a{
    color:#ef5f95;
}

.home-product-card__desc{
    color:#7b6c76;
    font-size:.88rem;
    line-height:1.55;
    min-height:42px;
}

.home-product-card .product-price-row{
    margin-top:auto;
    align-items:center;
}

.price-current{
    color:#171017;
    font-weight:1000;
    font-size:1.25rem;
}

.price-old{
    color:#81737d;
}

.rating-stack{
    background:#fff1f6;
    color:#ef5f95;
    border:1px solid #ffd4e3;
    border-radius:999px;
    padding:.25rem .6rem;
}

.home-product-row-grid .product-card__quick-add{
    position:static;
    margin:0 1.05rem 1.1rem;
    opacity:1;
    pointer-events:auto;
    transform:none;
}

.btn-primary,
.home-product-row-grid .product-card__quick-add .btn-primary{
    border:0;
    color:#fff;
    background:linear-gradient(135deg, #ff7bab, #ef5f95 50%, #de3f7f);
    box-shadow:0 12px 28px rgba(239,95,149,.25);
}

.btn-primary:hover,
.home-product-row-grid .product-card__quick-add .btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 38px rgba(239,95,149,.34);
}

.btn-outline{
    border-color:#ffc4d9;
    color:#ef5f95;
    background:#fff;
}

.btn-outline:hover{
    background:#fff1f6;
    border-color:#ef5f95;
    color:#d9367b;
}

.home-reveal{
    opacity:0;
    transform:translateY(34px);
    transition:opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1);
}

.home-reveal.is-visible{
    opacity:1;
    transform:translateY(0);
}

@media (max-width: 991px){
    .home-product-row-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:.9rem;
    }

    .home-product-card .product-card__info{
        min-height:190px;
        padding:.85rem;
    }

    .home-product-row-grid .product-card__media{
        margin:9px 9px 0;
        border-radius:18px;
    }

    .home-product-row-grid .product-img{
        padding:12px;
    }
}

@media (max-width: 520px){
    .section-shell{
        padding-block:2.1rem;
    }

    .home-product-row-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:.72rem;
    }

    .home-product-card .product-title{
        font-size:.86rem;
        min-height:42px;
    }

    .home-product-card__desc{
        display:none;
    }

    .home-product-card .product-card__info{
        min-height:138px;
    }

    .price-current{
        font-size:1rem;
    }

    .rating-stack{
        display:none;
    }

    .home-product-row-grid .product-card__quick-add{
        margin:0 .75rem .85rem;
    }

    .home-product-row-grid .product-card__quick-add .btn{
        min-height:42px;
        font-size:.82rem;
        border-radius:14px;
    }
}


/* =========================================================
   Kero Home UI Clean V2
   remove shadows + restore hero image feeling + stronger scroll motion
   ========================================================= */

.hero-section,
.hero-section *,
.home-product-card,
.home-product-card *,
.product-card__media,
.section-shell,
.btn-primary,
.btn-outline,
.badge-sale,
.badge-new,
.rating-stack,
.btn-wishlist{
    box-shadow:none !important;
    filter:none !important;
}

.hero-section{
    background:transparent !important;
    padding:clamp(1rem, 2vw, 1.8rem) clamp(.8rem, 2vw, 1.4rem) !important;
}

.hero-section::before,
.hero-section::after{
    display:none !important;
}

.hero-media,
.hero-visual,
.hero-banner,
.hero-image,
.hero-bg,
.hero-background,
.hero-card{
    box-shadow:none !important;
}

.hero-section .hero-card,
.hero-section .hero-media,
.hero-section .hero-visual{
    background-color:#fff !important;
    border:1px solid #ffe1eb !important;
}

.hero-section img,
.hero-section picture{
    opacity:1 !important;
    visibility:visible !important;
    display:block !important;
}

.home-product-row-grid .home-product-card{
    box-shadow:none !important;
    border:1.5px solid #ffbfd5 !important;
    background:#fff !important;
}

.home-product-row-grid .home-product-card:hover{
    box-shadow:none !important;
    transform:translateY(-8px) scale(1.012) !important;
    border-color:#ff74a7 !important;
}

.home-product-row-grid .home-product-card::before{
    display:none !important;
}

.home-product-row-grid .product-card__media{
    background:#fff7fb !important;
    box-shadow:none !important;
}

.btn-primary,
.home-product-row-grid .product-card__quick-add .btn-primary{
    box-shadow:none !important;
    background:linear-gradient(135deg, #ff7bab, #ef5f95, #df3f7f) !important;
}

.btn-primary:hover,
.home-product-row-grid .product-card__quick-add .btn-primary:hover{
    box-shadow:none !important;
}

.home-reveal{
    opacity:0;
    transform:translateY(58px) scale(.965);
    transition:
        opacity .85s ease,
        transform .9s cubic-bezier(.16, .84, .28, 1);
    will-change:opacity, transform;
}

.home-reveal.is-visible{
    opacity:1;
    transform:translateY(0) scale(1);
}

.home-product-card.home-reveal{
    transform:translateY(72px) scale(.94);
    transition:
        opacity .8s ease,
        transform .82s cubic-bezier(.16, .84, .28, 1),
        border-color .25s ease;
}

.home-product-card.home-reveal.is-visible{
    transform:translateY(0) scale(1);
}

.home-product-card.home-reveal.is-visible:nth-child(2){ transition-delay:.06s; }
.home-product-card.home-reveal.is-visible:nth-child(3){ transition-delay:.12s; }
.home-product-card.home-reveal.is-visible:nth-child(4){ transition-delay:.18s; }
.home-product-card.home-reveal.is-visible:nth-child(5){ transition-delay:.24s; }
.home-product-card.home-reveal.is-visible:nth-child(6){ transition-delay:.30s; }

@media (prefers-reduced-motion: reduce){
    .home-reveal,
    .home-product-card.home-reveal{
        opacity:1 !important;
        transform:none !important;
        transition:none !important;
    }
}

/* =========================================================
   HERO REAL CLEAN FIX
   remove dark inline-overlay effect + all hero shadows
   ========================================================= */

.hero-section{
    background-image: var(--hero-bg) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #fff !important;
    box-shadow: none !important;
    filter: none !important;
    outline: 0 !important;
}

.hero-section::before,
.hero-section::after{
    display:none !important;
    content:none !important;
}

.hero-section__overlay{
    background: linear-gradient(
        90deg,
        rgba(20, 14, 16, .24) 0%,
        rgba(255, 240, 246, .10) 52%,
        rgba(255, 255, 255, .04) 100%
    ) !important;
    box-shadow:none !important;
    filter:none !important;
}

.hero-section,
.hero-section *,
.hero-trust,
.glass-panel,
.hero-badge,
.hero-title,
.hero-desc,
.hero-actions .btn{
    box-shadow:none !important;
    text-shadow:none !important;
    filter:none !important;
}

.hero-trust.glass-panel,
.hero-section .glass-panel{
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    backdrop-filter: none !important;
}

.hero-section .hero-title{
    color:#fff !important;
    font-weight:900 !important;
}

.hero-section .hero-desc{
    color:rgba(255,255,255,.94) !important;
}

.hero-section .hero-badge{
    background:rgba(255,255,255,.16) !important;
    border:1px solid rgba(255,255,255,.35) !important;
    backdrop-filter:none !important;
}

@media (max-width: 768px){
    .hero-section{
        min-height: 62vh !important;
        border-radius: 24px !important;
        margin: .75rem !important;
    }

    .hero-section__overlay{
        background: rgba(20,14,16,.28) !important;
    }
}

/* =========================================================
   HERO NO LOADING EFFECT + PURE WHITE BACKGROUND
   ========================================================= */

html,
body,
.site-page,
.storefront-page,
.main-content,
.page-content{
    background:#fff !important;
    background-image:none !important;
    box-shadow:none !important;
}

.hero-section,
.hero-section.home-reveal,
.hero-content.home-reveal,
.hero-section .home-reveal{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    transition:none !important;
    animation:none !important;
}

.hero-section{
    background-image:var(--hero-bg) !important;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    background-color:#fff !important;
    box-shadow:none !important;
    filter:none !important;
}

.hero-section::before,
.hero-section::after{
    display:none !important;
    content:none !important;
    box-shadow:none !important;
}

.hero-section__overlay{
    background:rgba(0,0,0,.18) !important;
    box-shadow:none !important;
    filter:none !important;
}

.hero-section,
.hero-section *,
.hero-trust,
.hero-trust *,
.glass-panel,
.hero-badge{
    box-shadow:none !important;
    filter:none !important;
}

.home-product-card.home-reveal{
    opacity:0;
    transform:translateY(70px) scale(.96);
    transition:
        opacity .75s ease,
        transform .78s cubic-bezier(.16,.84,.28,1),
        border-color .25s ease !important;
}

.home-product-card.home-reveal.is-visible{
    opacity:1;
    transform:translateY(0) scale(1);
}

.section-shell.home-reveal{
    opacity:1 !important;
    transform:none !important;
}


/* =========================================================
   FINAL HERO INSTANT IMAGE FIX
   no grey loading, no shadow, pure white background
   ========================================================= */

html,
body,
.site-shell{
    background:#fff !important;
    background-image:none !important;
}

.hero-section.hero-section--instant{
    position:relative !important;
    background:#fff !important;
    background-image:none !important;
    overflow:hidden !important;
    box-shadow:none !important;
    filter:none !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    animation:none !important;
    transition:none !important;
}

.hero-section__instant-img{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    z-index:0 !important;
    transform:none !important;
    filter:none !important;
}

.hero-section.hero-section--instant .hero-section__overlay{
    background:transparent !important;
    display:block !important;
    box-shadow:none !important;
    filter:none !important;
    z-index:1 !important;
}

.hero-section.hero-section--instant .hero-section__inner{
    position:relative !important;
    z-index:2 !important;
}

.hero-section.hero-section--instant,
.hero-section.hero-section--instant *,
.hero-section.hero-section--instant .glass-panel,
.hero-section.hero-section--instant .hero-trust{
    box-shadow:none !important;
    text-shadow:none !important;
    filter:none !important;
}

.hero-section.hero-section--instant.home-reveal,
.hero-section.hero-section--instant .home-reveal{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    animation:none !important;
    transition:none !important;
}


/* Home page: disable initial skeleton */
body.home-no-skeleton .spa-loader{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
}

body.home-no-skeleton{
    cursor:auto !important;
}

body.home-no-skeleton.is-spa-loading .store-main{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
}


@media(max-width:1100px){
    .site-nav{gap:1rem !important;}
    .search-strip{width:270px !important;}
    .brand-name{font-size:1.55rem !important;}
}


/* Front mobile hero match admin builder preview */
@media (max-width: 768px){
    .hero-section{
        width:calc(100% - 28px) !important;
        min-height:590px !important;
        margin:14px auto 28px !important;
        border-radius:24px !important;
        overflow:hidden !important;
        background-size:cover !important;
        background-position:center center !important;
        box-shadow:none !important;
    }

    .hero-section__overlay{
        background:linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.18)) !important;
    }

    .hero-section__inner{
        min-height:590px !important;
        padding:22px 18px !important;
        align-items:center !important;
        justify-content:center !important;
    }

    .hero-content{
        width:100% !important;
        max-width:300px !important;
        margin:0 auto !important;
        text-align:center !important;
        position:relative !important;
        z-index:3 !important;
        color:#fff !important;
    }

    .hero-badge{
        display:inline-flex !important;
        margin:0 auto 14px !important;
        background:rgba(255,255,255,.16) !important;
        color:#fff !important;
        border:1px solid rgba(255,255,255,.28) !important;
        box-shadow:none !important;
    }

    .hero-title{
        font-size:clamp(3.2rem, 16vw, 5.3rem) !important;
        line-height:.92 !important;
        color:#fff !important;
        text-align:center !important;
        max-width:100% !important;
        margin:0 auto 18px !important;
        text-shadow:none !important;
    }

    .hero-desc{
        color:#fff !important;
        font-size:1.02rem !important;
        line-height:1.8 !important;
        text-align:center !important;
        max-width:270px !important;
        margin:0 auto 22px !important;
        text-shadow:none !important;
    }

    .hero-actions{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:12px !important;
        width:100% !important;
        max-width:250px !important;
        margin:0 auto !important;
    }

    .hero-actions .btn{
        width:100% !important;
        min-height:54px !important;
        border-radius:999px !important;
        justify-content:center !important;
        font-size:1rem !important;
        font-weight:900 !important;
        box-shadow:none !important;
    }

    .hero-trust.glass-panel,
    .hero-trust{
        display:grid !important;
        grid-template-columns:repeat(3,minmax(0,1fr)) !important;
        gap:.45rem !important;
        margin:22px auto 0 !important;
        padding:1rem .7rem !important;
        max-width:290px !important;
        border-radius:18px !important;
        background:rgba(255,255,255,.10) !important;
        border:1px solid rgba(255,255,255,.18) !important;
        box-shadow:none !important;
    }

    .trust-item strong{
        font-size:1rem !important;
        color:#ff73a9 !important;
    }

    .trust-item span{
        font-size:.72rem !important;
        color:#fff !important;
        line-height:1.4 !important;
    }
}


/* =====================================================
   KERO PRODUCT PAGE WIDE LAYOUT
   ===================================================== */

.product-hero{
    padding:3rem 0 2rem;
}

.product-details{
    grid-template-columns:minmax(0,1.2fr) minmax(520px,0.8fr);
    gap:3rem;
    max-width:1700px;
    margin:0 auto 5rem;
    align-items:start;
}

.product-gallery-shell{
    gap:1.25rem;
}

.product-gallery__main{
    aspect-ratio:1/1;
    min-height:780px;
    padding:1.5rem;
}

.product-gallery__thumb{
    width:92px;
    flex-basis:92px;
}

.product-panel--stack{
    gap:1.5rem;
}

.product-summary-card,
.product-options-card,
.product-benefits-card,
.product-purchase-card{
    padding:1.5rem;
}

.product-summary-card__heading{
    font-size:clamp(2rem,2.8vw,3rem);
    line-height:1.35;
}

.product-summary-price{
    font-size:clamp(2rem,3vw,3.2rem);
}

.product-info-section{
    max-width:1700px;
    margin:0 auto;
}

.product-description-copy,
.product-reviews-panel{
    font-size:1.08rem;
    line-height:2;
}

.direct-order-form{
    gap:1.4rem;
}

.direct-order-form__grid{
    gap:1.1rem;
}

.direct-order-form .form-control{
    min-height:56px;
}

.direct-order-form textarea.form-control{
    min-height:150px;
}

.product-collapse-card{
    max-width:1700px;
    margin-inline:auto;
}



/* ==========================
   TABLET
   ========================== */

@media (max-width:1200px){

    .product-details{
        grid-template-columns:1fr;
        max-width:100%;
        gap:2rem;
    }

    .product-gallery__main{
        min-height:650px;
    }
}



/* ==========================
   MOBILE
   ========================== */

@media (max-width:767px){

    .product-hero{
        padding:1rem 0;
    }

    .product-details{
        gap:1.25rem;
        margin-bottom:2rem;
    }

    .product-gallery__main{
        min-height:420px;
        padding:.75rem;
        border-radius:22px;
    }

    .product-gallery__thumb{
        width:80px;
        flex-basis:80px;
    }

    .product-summary-card,
    .product-options-card,
    .product-benefits-card,
    .product-purchase-card{
        padding:1rem;
        border-radius:22px;
    }

    .direct-order-form__grid{
        grid-template-columns:1fr;
    }

    .container{
        width:min(100% - 12px, 1700px);
    }

    .product-summary-card__heading{
        font-size:1.55rem;
    }

    .product-description-copy,
    .product-reviews-panel{
        font-size:1rem;
        line-height:1.9;
    }
}

/* =========================================
   KERO PRODUCT FIX V2
   ========================================= */

:root{
    --container-width: 1480px !important;
}

.product-details{
    grid-template-columns:minmax(520px, 720px) minmax(420px, 1fr) !important;
    gap:2rem !important;
    max-width:1400px !important;
}

.product-gallery__main{
    min-height:auto !important;
    height:auto !important;
    aspect-ratio:1 / 1.05 !important;
}

.product-gallery-shell{
    max-width:720px;
}

.product-panel--stack{
    min-width:0;
}

.product-summary-card__heading h1{
    font-size:clamp(1.9rem,2.4vw,2.8rem) !important;
}

.product-info-section{
    max-width:1400px !important;
}

.product-collapse-card{
    max-width:1400px !important;
}

@media (max-width:1200px){
    .product-details{
        grid-template-columns:1fr !important;
        max-width:100% !important;
    }

    .product-gallery-shell{
        max-width:100%;
    }
}

@media (max-width:767px){
    .container{
        padding-left:10px !important;
        padding-right:10px !important;
    }

    .product-gallery__main{
        aspect-ratio:1/1 !important;
    }

    .product-details{
        gap:1rem !important;
    }
}


/* =========================================
   KERO PRODUCT SMART INFO CARDS
   ========================================= */

.product-smart-info{
    margin-top:1.35rem;
}

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

.product-smart-card{
    background:rgba(255,255,255,.96);
    border:1px solid rgba(255,112,160,.22);
    border-radius:24px;
    padding:1.15rem;
    box-shadow:0 16px 38px rgba(239,111,159,.08);
}

.product-smart-card h3{
    margin:0 0 .45rem;
    color:#ef5f98;
    font-size:1.05rem;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:.45rem;
}

.product-smart-card p{
    margin:0 0 .8rem;
    color:#756873;
    font-size:.9rem;
    line-height:1.8;
}

.product-smart-card ul{
    list-style:none;
    display:grid;
    gap:.58rem;
    margin:0;
    padding:0;
}

.product-smart-card li{
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:start;
    gap:.5rem;
    color:#332633;
    font-size:.92rem;
    line-height:1.75;
}

.product-smart-card li i{
    color:#ff5f97;
    font-size:.62rem;
    margin-top:.55rem;
}

.product-smart-card--love{
    grid-column:1 / -1;
}

.product-smart-card--love li i{
    font-size:.82rem;
    margin-top:.35rem;
}

@media (max-width:767px){
    .product-smart-info{
        margin-inline:-10px;
        overflow:hidden;
    }

    .product-smart-info__track{
        display:flex;
        gap:.85rem;
        overflow-x:auto;
        padding:0 10px .7rem;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
    }

    .product-smart-info__track::-webkit-scrollbar{
        display:none;
    }

    .product-smart-card,
    .product-smart-card--love{
        flex:0 0 86%;
        grid-column:auto;
        scroll-snap-align:start;
        border-radius:22px;
    }
}


/* =========================================
   KERO PRODUCT SMART INFO CARDS V3
   ========================================= */

.product-smart-info{
    margin:2rem auto 1.5rem;
    max-width:1400px;
}

.product-smart-info__head{
    text-align:center;
    margin-bottom:1.2rem;
}

.product-smart-info__head span{
    color:#ef5f98;
    font-weight:900;
    font-size:.9rem;
}

.product-smart-info__head h2{
    margin:.3rem 0 0;
    color:#ef5f98;
    font-size:clamp(1.6rem,3vw,2.7rem);
    font-weight:900;
}

.product-smart-info__track{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:1rem;
    align-items:stretch;
}

.product-smart-card{
    background:rgba(255,255,255,.97);
    border:1px solid rgba(255,112,160,.18);
    border-radius:24px;
    padding:1.1rem;
    box-shadow:0 16px 38px rgba(239,111,159,.07);
    min-height:100%;
}

.product-smart-card h3{
    margin:0 0 .8rem;
    color:#ef5f98;
    font-size:1.03rem;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:.45rem;
}

.product-smart-card ul{
    list-style:none;
    display:grid;
    gap:.55rem;
    margin:0;
    padding:0;
}

.product-smart-card li{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:.5rem;
    color:#352635;
    font-size:.9rem;
    line-height:1.75;
}

.product-smart-card li i{
    color:#ff5f97;
    font-size:.6rem;
    margin-top:.55rem;
}

@media (max-width:1100px){
    .product-smart-info__track{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:767px){
    .product-smart-info{
        margin-inline:-10px;
        overflow:hidden;
    }

    .product-smart-info__head{
        padding:0 10px;
    }

    .product-smart-info__track{
        display:flex;
        overflow-x:auto;
        gap:.85rem;
        padding:0 10px .8rem;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
    }

    .product-smart-info__track::-webkit-scrollbar{
        display:none;
    }

    .product-smart-card{
        flex:0 0 84%;
        scroll-snap-align:start;
    }
}


/* =========================================
   KERO PRODUCT CARDS POLISH FINAL
   ========================================= */

.product-smart-info{
    margin:2rem auto 2.2rem !important;
    max-width:1420px !important;
}

.product-smart-info__head{
    text-align:center !important;
    margin-bottom:1.4rem !important;
}

.product-smart-info__head h2{
    color:#f35f98 !important;
    font-weight:900 !important;
    font-size:clamp(1.9rem,3.4vw,3.3rem) !important;
    line-height:1.25 !important;
}

.product-smart-info__track{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:1.25rem !important;
    align-items:start !important;
}

.product-smart-card{
    min-height:auto !important;
    height:auto !important;
    padding:1.45rem 1.35rem !important;
    border-radius:24px !important;
    border:1px solid rgba(255,95,151,.25) !important;
    background:linear-gradient(180deg,#fff,#fffafd) !important;
    box-shadow:0 18px 42px rgba(239,111,159,.08) !important;
    text-align:center !important;
}

.product-smart-card h3{
    display:grid !important;
    justify-items:center !important;
    gap:.6rem !important;
    color:#f35f98 !important;
    font-size:1.25rem !important;
    font-weight:900 !important;
    margin:0 0 1.05rem !important;
    padding-bottom:.85rem !important;
    border-bottom:2px solid rgba(255,95,151,.35) !important;
}

.product-smart-card h3 i{
    width:62px !important;
    height:62px !important;
    display:grid !important;
    place-items:center !important;
    border-radius:999px !important;
    background:#fff0f6 !important;
    border:1px solid #ffd1e1 !important;
    color:#f35f98 !important;
    font-size:1.65rem !important;
}

.product-smart-card ul{
    gap:.72rem !important;
}

.product-smart-card li{
    grid-template-columns:1fr auto !important;
    text-align:right !important;
    font-size:.96rem !important;
    line-height:1.85 !important;
    color:#2f2630 !important;
}

.product-smart-card li i{
    width:18px !important;
    height:18px !important;
    border-radius:50% !important;
    display:grid !important;
    place-items:center !important;
    background:#ff5f97 !important;
    color:#fff !important;
    font-size:.55rem !important;
    margin-top:.45rem !important;
}

.product-smart-card li i.fa-check::before{
    content:"\\f00c";
}

.product-smart-card li i.fa-circle::before{
    content:"";
}

.product-smart-card li i.fa-circle{
    width:9px !important;
    height:9px !important;
    margin-top:.75rem !important;
}

@media (max-width:1100px){
    .product-smart-info__track{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }
}

@media (max-width:767px){
    .product-smart-info{
        margin-inline:-10px !important;
        overflow:hidden !important;
    }

    .product-smart-info__track{
        display:flex !important;
        overflow-x:auto !important;
        gap:.9rem !important;
        padding:0 10px 1rem !important;
        scroll-snap-type:x mandatory !important;
    }

    .product-smart-card{
        flex:0 0 84% !important;
        scroll-snap-align:start !important;
    }
}


/* =========================================
   KERO PRODUCT DESCRIPTION INSIDE SUMMARY
   ========================================= */

.product-summary-description{
    margin-top:.25rem;
    padding:1.15rem 1.2rem;
    border-radius:22px;
    background:linear-gradient(180deg,#fffafd,#fff);
    border:1px solid rgba(255,95,151,.18);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.75);
}

.product-summary-description__title{
    display:flex;
    align-items:center;
    gap:.55rem;
    color:#ef5f98;
    font-weight:900;
    margin-bottom:.65rem;
}

.product-summary-description__title i{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff0f6;
    border:1px solid #ffd1e1;
}

.product-summary-description p{
    margin:0;
    color:#352635;
    font-size:.98rem;
    line-height:2;
    text-align:right;
}

@media (min-width:1201px){
    .product-summary-card{
        padding:1.8rem !important;
    }

    .product-summary-description p{
        font-size:1rem;
        line-height:2.05;
    }
}

@media (max-width:767px){
    .product-summary-description{
        padding:1rem;
        border-radius:18px;
    }

    .product-summary-description p{
        font-size:.94rem;
        line-height:1.9;
    }
}


/* =========================================
   KERO PRODUCT PRICE + BADGES ONE ROW
   ========================================= */

.product-summary-topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
    margin-bottom:.35rem;
}

.product-summary-topline .product-summary-card__badges{
    display:flex;
    align-items:center;
    gap:.55rem;
    flex-wrap:wrap;
}

.product-summary-price--top{
    order:2;
    margin-inline-start:auto;
}

.product-summary-card__eyebrow{
    justify-content:center !important;
}

.product-summary-card__category:empty{
    display:none !important;
}

.product-summary-price--top strong{
    font-size:1.25rem !important;
}

.product-summary-price--top span{
    font-size:.82rem !important;
}

@media (max-width:767px){
    .product-summary-topline{
        justify-content:center;
        gap:.7rem;
    }

    .product-summary-topline .product-summary-card__badges{
        justify-content:center;
        order:1;
    }

    .product-summary-price--top{
        order:2;
        margin-inline-start:0;
    }
}


/* =========================================
   KERO DIRECT ORDER + OFFERS UI FIX
   ========================================= */

.product-purchase-card{
    background:#fff !important;
    border:1px solid rgba(255,95,151,.18) !important;
    border-radius:28px !important;
    box-shadow:0 22px 55px rgba(239,111,159,.09) !important;
    padding:1.8rem !important;
}

.product-purchase-card .product-card-section__head{
    text-align:right !important;
    margin-bottom:1.4rem !important;
}

.product-purchase-card .product-card-section__head h3{
    color:#ef5f98 !important;
    font-size:1.35rem !important;
    font-weight:900 !important;
}

.product-purchase-card .product-card-section__head p{
    color:#756873 !important;
    font-size:.96rem !important;
}

.direct-order-form__selection{
    background:linear-gradient(180deg,#fffafd,#fff) !important;
    border:1px solid rgba(255,95,151,.16) !important;
    border-radius:24px !important;
    padding:1.2rem !important;
    box-shadow:0 14px 35px rgba(239,111,159,.06) !important;
}

.product-offers-list,
.product-offers-list--compact{
    display:grid !important;
    gap:1rem !important;
}

.product-offer-option{
    background:#fff !important;
    border:1.5px solid rgba(255,95,151,.22) !important;
    border-radius:22px !important;
    padding:1rem !important;
    box-shadow:0 12px 28px rgba(239,111,159,.06) !important;
    display:grid !important;
    gap:.8rem !important;
}

.product-offer-option.is-active{
    border-color:#ef5f98 !important;
    box-shadow:0 16px 35px rgba(239,111,159,.14), inset 0 0 0 1px rgba(239,95,152,.2) !important;
}

.product-offer-option__content{
    min-width:0 !important;
}

.product-offer-option__main,
.product-offer-option__top{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:1rem !important;
}

.product-offer-option__title{
    color:#ef5f98 !important;
    font-size:1rem !important;
    font-weight:900 !important;
    margin:0 !important;
}

.product-offer-option__price,
.product-offer-option__price-line{
    display:flex !important;
    align-items:center !important;
    gap:.55rem !important;
    flex-wrap:wrap !important;
}

.product-offer-option__price strong,
.product-offer-option__price-line strong{
    color:#ef5f98 !important;
    font-size:1.15rem !important;
    font-weight:900 !important;
}

.product-offer-option__meta,
.product-offer-option__meta-row{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:.45rem !important;
    margin:.5rem 0 0 !important;
}

.product-offer-option__meta span,
.product-offer-option__meta-row span,
.product-offer-option__badges .badge,
.product-offer-option__save{
    background:#fff0f6 !important;
    color:#ef5f98 !important;
    border-radius:999px !important;
    padding:.38rem .7rem !important;
    font-size:.82rem !important;
    font-weight:800 !important;
}

.direct-order-form__grid{
    background:#fff !important;
    border-radius:24px !important;
    gap:1rem !important;
}

.direct-order-form__field{
    display:grid !important;
    gap:.45rem !important;
}

.direct-order-form__field > span,
.direct-order-form__quantity > span{
    color:#2f2630 !important;
    font-weight:900 !important;
    font-size:.95rem !important;
}

.direct-order-form__field .form-control,
.direct-order-form__quantity .form-control,
.direct-order-form select.form-control,
.direct-order-form textarea.form-control{
    background:#fff7fb !important;
    border:1px solid rgba(255,95,151,.14) !important;
    border-radius:18px !important;
    min-height:54px !important;
    color:#2f2630 !important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.7) !important;
}

.direct-order-form textarea.form-control{
    min-height:135px !important;
}

.direct-order-form__field > i{
    color:#ef5f98 !important;
    opacity:.9 !important;
}

.direct-order-form__extras{
    gap:1rem !important;
}

.direct-order-form__coupon-box,
.direct-order-form__summary{
    background:#fff !important;
    border:1px solid rgba(255,95,151,.16) !important;
    border-radius:22px !important;
    box-shadow:0 12px 30px rgba(239,111,159,.06) !important;
}

.direct-order-form .btn-primary,
.product-purchase-card .btn-primary{
    min-height:58px !important;
    border-radius:22px !important;
    background:linear-gradient(135deg,#ef5f98,#6f344d) !important;
    box-shadow:0 16px 32px rgba(239,95,152,.22) !important;
    font-weight:900 !important;
}

/* Mobile */
@media (max-width:767px){
    .product-purchase-card{
        padding:1rem !important;
        border-radius:22px !important;
    }

    .direct-order-form__selection{
        padding:.9rem !important;
        border-radius:20px !important;
    }

    .product-offer-option{
        padding:.9rem !important;
        border-radius:18px !important;
    }

    .product-offer-option__main,
    .product-offer-option__top{
        align-items:flex-start !important;
        flex-direction:column !important;
    }

    .product-offer-option__price,
    .product-offer-option__price-line{
        width:100% !important;
        justify-content:space-between !important;
    }

    .product-offer-option__badges,
    .product-offer-option__meta,
    .product-offer-option__meta-row{
        width:100% !important;
        justify-content:flex-start !important;
    }

    .direct-order-form__grid{
        grid-template-columns:1fr !important;
        gap:.85rem !important;
    }

    .direct-order-form__field .form-control,
    .direct-order-form__quantity .form-control,
    .direct-order-form select.form-control{
        min-height:52px !important;
        border-radius:16px !important;
    }

    .direct-order-form textarea.form-control{
        min-height:120px !important;
    }
}


/* =========================================
   KERO MOBILE OFFER SPLIT UI
   ========================================= */

.direct-order-form__selection{
    background:#fff !important;
    border:1px solid rgba(255,95,151,.22) !important;
    border-radius:26px !important;
    padding:1rem !important;
    margin-bottom:1.2rem !important;
    box-shadow:0 18px 42px rgba(239,95,152,.10) !important;
}

.direct-order-form__selection .product-card-section__head{
    text-align:center !important;
    margin-bottom:1rem !important;
}

.direct-order-form__selection .product-card-section__head h3{
    color:#ef5f98 !important;
    font-weight:900 !important;
    font-size:1.25rem !important;
}

.direct-order-form__selection .product-card-section__head p{
    color:#756873 !important;
    font-size:.9rem !important;
}

.product-offers-list--compact{
    display:grid !important;
    gap:1rem !important;
}

.product-offers-list--compact .product-offer-option{
    position:relative !important;
    display:grid !important;
    place-items:center !important;
    gap:.75rem !important;
    padding:1.4rem 1rem !important;
    min-height:190px !important;
    border-radius:24px !important;
    border:2px solid rgba(255,95,151,.38) !important;
    background:
        radial-gradient(circle at top right, rgba(255,240,246,.9), transparent 42%),
        #fff !important;
    box-shadow:0 18px 40px rgba(239,95,152,.12) !important;
    text-align:center !important;
}

.product-offers-list--compact .product-offer-option.is-active{
    border-color:#ef5f98 !important;
    box-shadow:0 22px 48px rgba(239,95,152,.18) !important;
}

.product-offers-list--compact .product-offer-option__radio{
    position:absolute !important;
    top:1rem !important;
    right:1rem !important;
    width:30px !important;
    height:30px !important;
    border-radius:50% !important;
    background:#2fc36b !important;
    border:0 !important;
    display:grid !important;
    place-items:center !important;
}

.product-offers-list--compact .product-offer-option__radio::before{
    content:"✓" !important;
    color:#fff !important;
    font-weight:900 !important;
    font-size:1rem !important;
}

.product-offers-list--compact .product-offer-option__content,
.product-offers-list--compact .product-offer-option__main{
    display:grid !important;
    justify-items:center !important;
    text-align:center !important;
    gap:.55rem !important;
}

.product-offers-list--compact .product-offer-option__title{
    color:#ef5f98 !important;
    font-weight:900 !important;
    font-size:1.05rem !important;
    margin:0 !important;
}

.product-offers-list--compact .product-offer-option__price-line{
    display:grid !important;
    justify-items:center !important;
    gap:.25rem !important;
}

.product-offers-list--compact .product-offer-option__price-line strong{
    color:#ef5f98 !important;
    font-size:1.55rem !important;
    font-weight:900 !important;
}

.product-offers-list--compact .product-offer-option__price-line span{
    color:#ef5f98 !important;
    font-size:.9rem !important;
}

.product-offers-list--compact .product-offer-option__meta-row{
    justify-content:center !important;
    gap:.5rem !important;
}

.product-offers-list--compact .product-offer-option__meta-row span,
.product-offers-list--compact .product-offer-option__save{
    background:#fff0f6 !important;
    color:#ef5f98 !important;
    border-radius:999px !important;
    padding:.45rem .75rem !important;
    font-weight:900 !important;
    font-size:.86rem !important;
}

.product-offers-list--compact .product-offer-option__save{
    position:static !important;
    order:10 !important;
}

.direct-order-form__grid{
    background:#fff !important;
    border:1px solid rgba(255,95,151,.12) !important;
    border-radius:26px !important;
    padding:1rem !important;
    box-shadow:0 18px 42px rgba(239,95,152,.08) !important;
}

/* Mobile polish */
@media (max-width:767px){
    .product-purchase-card{
        background:#fff !important;
        padding:.85rem !important;
    }

    .direct-order-form__selection{
        margin-bottom:1.25rem !important;
        padding:1rem !important;
        border-radius:24px !important;
    }

    .product-offers-list--compact .product-offer-option{
        min-height:220px !important;
        padding:1.7rem 1rem 1.25rem !important;
    }

    .product-offers-list--compact .product-offer-option__title{
        font-size:1rem !important;
    }

    .product-offers-list--compact .product-offer-option__price-line strong{
        font-size:1.65rem !important;
    }

    .direct-order-form__grid{
        padding:1rem !important;
        border-radius:24px !important;
        background:#fff !important;
    }

    .direct-order-form__field{
        margin-bottom:.45rem !important;
    }
}


/* =========================================
   KERO OFFER CARDS SEPARATED UI
   ========================================= */

.direct-order-form__selection{
    background:#fff !important;
    border:1px solid rgba(255,95,151,.16) !important;
    box-shadow:0 18px 42px rgba(239,95,152,.08) !important;
}

.product-offers-list--compact{
    display:grid !important;
    gap:.85rem !important;
}

.product-offers-list--compact .product-offer-option{
    position:relative !important;
    display:grid !important;
    grid-template-columns:auto 1fr auto !important;
    align-items:center !important;
    gap:.85rem !important;
    min-height:unset !important;
    padding:1rem 1rem !important;
    border-radius:18px !important;
    border:1.5px solid rgba(239,95,152,.20) !important;
    background:#fff !important;
    box-shadow:0 10px 24px rgba(239,95,152,.055) !important;
    text-align:right !important;
}

.product-offers-list--compact .product-offer-option.is-active{
    border-color:#ef5f98 !important;
    box-shadow:0 12px 30px rgba(239,95,152,.13) !important;
}

.product-offers-list--compact .product-offer-option__radio{
    position:static !important;
    width:24px !important;
    height:24px !important;
    border-radius:50% !important;
    background:#fff !important;
    border:1.5px solid rgba(239,95,152,.28) !important;
    display:grid !important;
    place-items:center !important;
    order:3 !important;
}

.product-offers-list--compact .product-offer-option.is-active .product-offer-option__radio{
    background:#25c46b !important;
    border-color:#25c46b !important;
}

.product-offers-list--compact .product-offer-option__radio::before{
    content:"" !important;
}

.product-offers-list--compact .product-offer-option.is-active .product-offer-option__radio::before{
    content:"✓" !important;
    color:#fff !important;
    font-weight:900 !important;
    font-size:.85rem !important;
}

.product-offers-list--compact .product-offer-option__content{
    display:grid !important;
    gap:.35rem !important;
    justify-items:start !important;
    text-align:right !important;
    order:2 !important;
}

.product-offers-list--compact .product-offer-option__main{
    display:block !important;
}

.product-offers-list--compact .product-offer-option__title{
    margin:0 !important;
    color:#221a22 !important;
    font-size:1rem !important;
    font-weight:900 !important;
    line-height:1.5 !important;
}

.product-offers-list--compact .product-offer-option__price-line{
    display:none !important;
}

.product-offers-list--compact .product-offer-option__meta-row{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:flex-start !important;
    gap:.4rem !important;
    margin:0 !important;
}

.product-offers-list--compact .product-offer-option__meta-row span{
    background:#f7f8fb !important;
    color:#3b3340 !important;
    border-radius:999px !important;
    padding:.28rem .55rem !important;
    font-size:.78rem !important;
    font-weight:800 !important;
}

.product-offers-list--compact .product-offer-option__meta-row span:nth-child(n+3){
    display:none !important;
}

.product-offers-list--compact .product-offer-option__save{
    position:static !important;
    order:1 !important;
    justify-self:start !important;
    align-self:start !important;
    background:#ef5f98 !important;
    color:#fff !important;
    border-radius:999px !important;
    padding:.42rem .7rem !important;
    font-size:.78rem !important;
    font-weight:900 !important;
    white-space:nowrap !important;
}

/* نخفي أي سعر متكرر جوه العرض ونسيب العنوان + التوفير + الكمية */
.product-offers-list--compact .product-offer-option__description,
.product-offers-list--compact .product-offer-option__price{
    display:none !important;
}

/* Desktop: كروت مستقلة بعرض مريح */
@media (min-width:768px){
    .product-offers-list--compact{
        grid-template-columns:1fr !important;
    }

    .product-offers-list--compact .product-offer-option{
        max-width:100% !important;
    }
}

/* Mobile: شبه المثال */
@media (max-width:767px){
    .direct-order-form__selection{
        padding:.85rem !important;
        border-radius:22px !important;
    }

    .direct-order-form__selection .product-card-section__head{
        margin-bottom:.75rem !important;
        text-align:right !important;
    }

    .direct-order-form__selection .product-card-section__head h3{
        font-size:1.05rem !important;
        color:#221a22 !important;
    }

    .direct-order-form__selection .product-card-section__head p{
        display:none !important;
    }

    .product-offers-list--compact .product-offer-option{
        grid-template-columns:auto 1fr auto !important;
        padding:.85rem !important;
        border-radius:16px !important;
        gap:.65rem !important;
    }

    .product-offers-list--compact .product-offer-option__title{
        font-size:.92rem !important;
    }

    .product-offers-list--compact .product-offer-option__save{
        font-size:.72rem !important;
        padding:.35rem .55rem !important;
    }

    .product-offers-list--compact .product-offer-option__meta-row span{
        font-size:.7rem !important;
        padding:.24rem .45rem !important;
    }
}


/* =========================================
   KERO OFFERS OUTSIDE FORM FRAME - FINAL
   ========================================= */

.product-purchase-card{
    background:#fff !important;
    border:1px solid rgba(255,95,151,.18) !important;
    padding:1.2rem !important;
}

/* افصل فريم العروض عن فريم بيانات العميل */
.direct-order-form{
    display:block !important;
}

.direct-order-form__selection{
    margin:0 0 1.35rem !important;
    padding:0 !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
}

.direct-order-form__selection .product-card-section__head{
    text-align:right !important;
    margin:0 0 .65rem !important;
}

.direct-order-form__selection .product-card-section__head h3{
    color:#211821 !important;
    font-size:1.05rem !important;
    font-weight:900 !important;
    margin:0 !important;
}

.direct-order-form__selection .product-card-section__head p{
    display:none !important;
}

/* خلي كل عرض فريم مستقل */
.product-offers-list--compact{
    display:grid !important;
    gap:.75rem !important;
    margin:0 !important;
    padding:0 !important;
}

.product-offers-list--compact .product-offer-option{
    position:relative !important;
    display:grid !important;
    grid-template-columns:auto 1fr auto !important;
    align-items:center !important;
    gap:.8rem !important;
    width:100% !important;
    min-height:90px !important;
    padding:.85rem .95rem !important;
    border-radius:16px !important;
    background:#fff !important;
    border:1.5px solid #e8edf5 !important;
    box-shadow:0 8px 22px rgba(20,20,40,.035) !important;
    text-align:right !important;
}

.product-offers-list--compact .product-offer-option.is-active{
    border-color:#ff2f73 !important;
    background:#fffafb !important;
    box-shadow:0 12px 28px rgba(255,47,115,.10) !important;
}

/* بادج وفر */
.product-offers-list--compact .product-offer-option__save{
    position:static !important;
    order:1 !important;
    align-self:start !important;
    justify-self:start !important;
    background:#d9273d !important;
    color:#fff !important;
    padding:.38rem .62rem !important;
    border-radius:999px !important;
    font-size:.74rem !important;
    font-weight:900 !important;
    white-space:nowrap !important;
}

/* محتوى العرض */
.product-offers-list--compact .product-offer-option__content{
    order:2 !important;
    display:grid !important;
    gap:.35rem !important;
    min-width:0 !important;
    justify-items:start !important;
    text-align:right !important;
}

.product-offers-list--compact .product-offer-option__main{
    display:block !important;
}

.product-offers-list--compact .product-offer-option__title{
    color:#1f2633 !important;
    font-size:.98rem !important;
    font-weight:900 !important;
    line-height:1.45 !important;
    margin:0 !important;
}

/* نخفي السعر المكرر القديم */
.product-offers-list--compact .product-offer-option__price-line,
.product-offers-list--compact .product-offer-option__price,
.product-offers-list--compact .product-offer-option__description{
    display:none !important;
}

.product-offers-list--compact .product-offer-option__meta-row{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:.35rem !important;
    margin:0 !important;
    justify-content:flex-start !important;
}

.product-offers-list--compact .product-offer-option__meta-row span{
    background:#f5f7fb !important;
    color:#303949 !important;
    padding:.26rem .5rem !important;
    border-radius:999px !important;
    font-size:.75rem !important;
    font-weight:800 !important;
}

/* خليك مختصر زي المثال */
.product-offers-list--compact .product-offer-option__meta-row span:nth-child(n+3){
    display:none !important;
}

/* علامة الاختيار */
.product-offers-list--compact .product-offer-option__radio{
    order:3 !important;
    position:static !important;
    width:22px !important;
    height:22px !important;
    border-radius:50% !important;
    border:1.5px solid #d8dee9 !important;
    background:#fff !important;
    display:grid !important;
    place-items:center !important;
}

.product-offers-list--compact .product-offer-option__radio::before{
    content:"" !important;
}

.product-offers-list--compact .product-offer-option.is-active .product-offer-option__radio{
    background:#22c55e !important;
    border-color:#22c55e !important;
}

.product-offers-list--compact .product-offer-option.is-active .product-offer-option__radio::before{
    content:"✓" !important;
    color:#fff !important;
    font-size:.82rem !important;
    font-weight:900 !important;
}

/* فريم بيانات العميل مستقل */
.direct-order-form__grid{
    margin-top:1.15rem !important;
    padding:1rem !important;
    background:#fff !important;
    border:1px solid rgba(255,95,151,.14) !important;
    border-radius:24px !important;
    box-shadow:0 14px 34px rgba(239,95,152,.07) !important;
}

/* موبايل */
@media (max-width:767px){
    .product-purchase-card{
        padding:.85rem !important;
    }

    .product-offers-list--compact .product-offer-option{
        min-height:92px !important;
        padding:.8rem !important;
        gap:.6rem !important;
        grid-template-columns:auto 1fr auto !important;
    }

    .product-offers-list--compact .product-offer-option__title{
        font-size:.9rem !important;
    }

    .product-offers-list--compact .product-offer-option__save{
        font-size:.68rem !important;
        padding:.34rem .52rem !important;
    }

    .product-offers-list--compact .product-offer-option__meta-row span{
        font-size:.68rem !important;
    }

    .direct-order-form__grid{
        margin-top:1rem !important;
        padding:.9rem !important;
        border-radius:22px !important;
    }
}


/* =========================================
   KERO PRODUCT OFFERS + ACTIONS FINAL
   ========================================= */

.product-options-card.product-offers-card,
.direct-order-form__selection{
    background:#fff !important;
    border:1px solid rgba(255,95,151,.18) !important;
    border-radius:26px !important;
    padding:1.2rem !important;
    margin:1rem 0 !important;
    box-shadow:0 18px 42px rgba(239,95,152,.08) !important;
}

.product-options-card .product-card-section__head{
    text-align:right !important;
    margin-bottom:1rem !important;
}

.product-offers-list{
    display:grid !important;
    gap:.85rem !important;
}

.product-offers-list .product-offer-option{
    display:grid !important;
    grid-template-columns:auto 1fr auto !important;
    align-items:center !important;
    gap:.8rem !important;
    min-height:auto !important;
    padding:.95rem !important;
    border-radius:17px !important;
    background:#fff !important;
    border:1.5px solid #e8edf5 !important;
    box-shadow:0 8px 22px rgba(20,20,40,.04) !important;
    text-align:right !important;
}

.product-offers-list .product-offer-option.is-active{
    border-color:#ff2f73 !important;
    background:#fffafb !important;
}

.product-offers-list .product-offer-option__save{
    position:static !important;
    order:1 !important;
    background:#d9273d !important;
    color:#fff !important;
    border-radius:999px !important;
    padding:.38rem .62rem !important;
    font-size:.74rem !important;
    font-weight:900 !important;
    white-space:nowrap !important;
}

.product-offers-list .product-offer-option__content{
    order:2 !important;
    display:grid !important;
    gap:.35rem !important;
    justify-items:start !important;
    text-align:right !important;
}

.product-offers-list .product-offer-option__main{
    display:block !important;
}

.product-offers-list .product-offer-option__title{
    color:#1f2633 !important;
    font-size:.98rem !important;
    font-weight:900 !important;
    line-height:1.45 !important;
    margin:0 !important;
}

.product-offers-list .product-offer-option__price-line,
.product-offers-list .product-offer-option__price,
.product-offers-list .product-offer-option__description{
    display:none !important;
}

.product-offers-list .product-offer-option__meta-row{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:.35rem !important;
    margin:0 !important;
}

.product-offers-list .product-offer-option__meta-row span{
    background:#f5f7fb !important;
    color:#303949 !important;
    padding:.26rem .5rem !important;
    border-radius:999px !important;
    font-size:.75rem !important;
    font-weight:800 !important;
}

.product-offers-list .product-offer-option__meta-row span:nth-child(n+3){
    display:none !important;
}

.product-offers-list .product-offer-option__radio{
    order:3 !important;
    position:static !important;
    width:22px !important;
    height:22px !important;
    border-radius:50% !important;
    border:1.5px solid #d8dee9 !important;
    background:#fff !important;
    display:grid !important;
    place-items:center !important;
}

.product-offers-list .product-offer-option__radio::before{
    content:"" !important;
}

.product-offers-list .product-offer-option.is-active .product-offer-option__radio{
    background:#22c55e !important;
    border-color:#22c55e !important;
}

.product-offers-list .product-offer-option.is-active .product-offer-option__radio::before{
    content:"✓" !important;
    color:#fff !important;
    font-size:.82rem !important;
    font-weight:900 !important;
}

.product-purchase-card{
    background:#fff !important;
    border:1px solid rgba(255,95,151,.18) !important;
    border-radius:26px !important;
    padding:1.2rem !important;
    box-shadow:0 18px 42px rgba(239,95,152,.08) !important;
}

.product-purchase-card .product-card-section__head{
    text-align:center !important;
    margin-bottom:1rem !important;
}

.product-actions-grid{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:.85rem !important;
}

.product-actions-grid .btn{
    min-height:56px !important;
    border-radius:20px !important;
    font-weight:900 !important;
}

.product-actions-grid .btn-primary{
    background:linear-gradient(135deg,#ef5f98,#6f344d) !important;
    box-shadow:0 16px 32px rgba(239,95,152,.22) !important;
}

@media (max-width:767px){
    .product-options-card.product-offers-card,
    .product-purchase-card{
        padding:.9rem !important;
        border-radius:22px !important;
    }

    .product-offers-list .product-offer-option{
        grid-template-columns:auto 1fr auto !important;
        padding:.82rem !important;
        gap:.6rem !important;
        border-radius:16px !important;
    }

    .product-offers-list .product-offer-option__title{
        font-size:.9rem !important;
    }

    .product-actions-grid{
        grid-template-columns:1fr 1fr !important;
        gap:.65rem !important;
    }

    .product-actions-grid .btn{
        min-height:52px !important;
        font-size:.88rem !important;
        padding:.7rem .5rem !important;
    }
}


/* =========================================
   KERO INLINE ACTIONS UNDER DESCRIPTION
   ========================================= */

.product-inline-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:.85rem;
    margin-top:1.15rem;
}

.product-inline-action{
    min-height:58px !important;
    border-radius:20px !important;
    font-weight:900 !important;
    gap:.55rem !important;
    position:relative;
    overflow:hidden;
}

.product-inline-action--cart{
    background:linear-gradient(135deg,#ef5f98,#6f344d) !important;
    color:#fff !important;
    box-shadow:0 16px 32px rgba(239,95,152,.22) !important;
}

.product-inline-action--order{
    background:#fff !important;
    color:#ef5f98 !important;
    border:1.5px solid rgba(239,95,152,.45) !important;
}

.product-inline-action.is-loading{
    pointer-events:none;
    opacity:.85;
}

.product-inline-action.is-loading::after{
    content:"";
    width:18px;
    height:18px;
    border-radius:50%;
    border:2px solid currentColor;
    border-top-color:transparent;
    animation:keroSpin .7s linear infinite;
}

.product-inline-action.is-done{
    animation:keroDone .45s ease;
}

.kero-product-toast{
    position:fixed;
    left:50%;
    bottom:28px;
    transform:translateX(-50%) translateY(20px);
    background:#211821;
    color:#fff;
    padding:.9rem 1.25rem;
    border-radius:999px;
    box-shadow:0 18px 42px rgba(0,0,0,.22);
    z-index:999999;
    opacity:0;
    transition:.25s ease;
    font-weight:900;
}

.kero-product-toast.is-show{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}

@keyframes keroSpin{
    to{transform:rotate(360deg)}
}

@keyframes keroDone{
    0%{transform:scale(1)}
    45%{transform:scale(.96)}
    100%{transform:scale(1)}
}

.product-purchase-card{
    display:none !important;
}

@media(max-width:767px){
    .product-inline-actions{
        grid-template-columns:1fr 1fr;
        gap:.65rem;
    }

    .product-inline-action{
        min-height:52px !important;
        font-size:.88rem !important;
        padding:.65rem .45rem !important;
    }
}


/* =========================================
   KERO SITE TOAST + ACTIONS INSIDE OFFERS
   ========================================= */

.kero-site-toast{
    position:fixed;
    left:50%;
    bottom:28px;
    transform:translateX(-50%) translateY(25px);
    z-index:9999999;
    display:flex;
    align-items:center;
    gap:.7rem;
    padding:.9rem 1.25rem;
    border-radius:999px;
    background:#211821;
    color:#fff;
    box-shadow:0 22px 55px rgba(0,0,0,.25);
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
    font-weight:900;
}

.kero-site-toast.is-show{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}

.kero-site-toast__icon{
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
}

.product-inline-actions--inside-offers{
    margin-top:1rem !important;
    padding-top:1rem !important;
    border-top:1px solid rgba(255,95,151,.14) !important;
}

.product-options-card.product-offers-card .product-inline-actions{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:.85rem !important;
}

.product-options-card.product-offers-card .product-inline-action{
    min-height:56px !important;
    border-radius:18px !important;
    font-weight:900 !important;
}

.product-options-card.product-offers-card .product-inline-action--cart{
    background:linear-gradient(135deg,#ef5f98,#6f344d) !important;
    color:#fff !important;
}

.product-options-card.product-offers-card .product-inline-action--order{
    background:#fff !important;
    color:#ef5f98 !important;
    border:1.5px solid rgba(239,95,152,.5) !important;
}

.product-inline-action.is-loading{
    pointer-events:none !important;
    opacity:.85 !important;
}

.product-inline-action.is-loading::after{
    content:"";
    width:16px;
    height:16px;
    border-radius:50%;
    border:2px solid currentColor;
    border-top-color:transparent;
    animation:keroSpin .7s linear infinite;
}

@keyframes keroSpin{
    to{transform:rotate(360deg)}
}

@media(max-width:767px){
    .kero-site-toast{
        width:calc(100% - 28px);
        justify-content:center;
        bottom:18px;
        border-radius:18px;
        text-align:center;
    }

    .product-options-card.product-offers-card .product-inline-actions{
        grid-template-columns:1fr 1fr !important;
        gap:.65rem !important;
    }

    .product-options-card.product-offers-card .product-inline-action{
        min-height:52px !important;
        font-size:.86rem !important;
        padding:.65rem .45rem !important;
    }
}


/* KERO cart drawer shipping text polish */
.kero-cart-shipping-note{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:.25rem;
    padding:.3rem .65rem;
    border-radius:999px;
    background:#fff0f6;
    color:#ef5f98;
    font-size:.78rem;
    font-weight:900;
}
.kero-cart-shipping-note.is-free{
    background:#ecfdf3;
    color:#16a34a;
}

/* =========================================
   KERO OFFERS FULL WIDTH UNDER TOP
   ========================================= */

.product-options-card.product-offers-card{
    grid-column:1 / -1 !important;
    width:100% !important;
    max-width:1400px !important;
    margin:1.8rem auto 1.5rem !important;
    padding:1.25rem !important;
    border-radius:28px !important;
    background:#fff !important;
    border:1px solid rgba(255,95,151,.18) !important;
    box-shadow:0 18px 42px rgba(239,95,152,.08) !important;
}

.product-options-card.product-offers-card .product-card-section__head{
    text-align:center !important;
    margin-bottom:1.15rem !important;
}

.product-options-card.product-offers-card .product-card-section__head h3{
    font-size:1.35rem !important;
    color:#ef5f98 !important;
    font-weight:900 !important;
}

.product-options-card.product-offers-card .product-card-section__head p{
    color:#756873 !important;
}

.product-options-card.product-offers-card .product-offers-list{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:1rem !important;
}

.product-options-card.product-offers-card .product-inline-actions{
    max-width:720px !important;
    margin:1.2rem auto 0 !important;
}

@media(max-width:767px){
    .product-options-card.product-offers-card{
        margin:1.2rem 0 !important;
        padding:.9rem !important;
        border-radius:22px !important;
    }

    .product-options-card.product-offers-card .product-offers-list{
        grid-template-columns:1fr !important;
        gap:.8rem !important;
    }

    .product-options-card.product-offers-card .product-card-section__head{
        text-align:right !important;
    }

    .product-options-card.product-offers-card .product-inline-actions{
        max-width:100% !important;
    }
}


/* =========================================
   KERO OFFERS BLOCK OUTSIDE DESCRIPTION FRAME
   ========================================= */

.product-details + .product-options-card.product-offers-card,
.product-options-card.product-offers-card{
    width:100% !important;
    max-width:1400px !important;
    margin:1.7rem auto 2rem !important;
    padding:1.3rem !important;
    border-radius:28px !important;
    background:#fff !important;
    border:1px solid rgba(255,95,151,.18) !important;
    box-shadow:0 18px 42px rgba(239,95,152,.08) !important;
}

.product-options-card.product-offers-card .product-card-section__head{
    text-align:center !important;
    margin-bottom:1.15rem !important;
}

.product-options-card.product-offers-card .product-card-section__head h3{
    color:#ef5f98 !important;
    font-size:1.45rem !important;
    font-weight:900 !important;
}

.product-options-card.product-offers-card .product-card-section__head p{
    color:#756873 !important;
}

.product-options-card.product-offers-card .product-offers-list{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:1rem !important;
}

.product-options-card.product-offers-card .product-inline-actions{
    max-width:760px !important;
    margin:1.15rem auto 0 !important;
}

@media(max-width:767px){
    .product-options-card.product-offers-card{
        margin:1rem 0 1.5rem !important;
        padding:.9rem !important;
        border-radius:22px !important;
    }

    .product-options-card.product-offers-card .product-card-section__head{
        text-align:right !important;
    }

    .product-options-card.product-offers-card .product-offers-list{
        grid-template-columns:1fr !important;
        gap:.8rem !important;
    }

    .product-options-card.product-offers-card .product-inline-actions{
        max-width:100% !important;
    }
}


/* =========================================
   FORCE OFFERS TO SPAN FULL PRODUCT GRID
   ========================================= */

.product-details{
    grid-auto-flow: dense !important;
}

.product-gallery-shell{
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.product-panel--stack{
    display: contents !important;
}

.product-summary-card{
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self:start !important;
}

.product-options-card.product-offers-card{
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width:100% !important;
    max-width:none !important;
    margin:1.6rem 0 1.8rem !important;
    padding:1.35rem !important;
    border-radius:28px !important;
    background:#fff !important;
    border:1px solid rgba(255,95,151,.18) !important;
    box-shadow:0 18px 42px rgba(239,95,152,.08) !important;
}

.product-options-card.product-offers-card .product-offers-list{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:1rem !important;
}

.product-options-card.product-offers-card .product-inline-actions{
    max-width:760px !important;
    margin:1.15rem auto 0 !important;
}

.product-purchase-card{
    display:none !important;
}

@media(max-width:1200px){
    .product-gallery-shell,
    .product-summary-card,
    .product-options-card.product-offers-card{
        grid-column:1 !important;
        grid-row:auto !important;
    }

    .product-panel--stack{
        display:grid !important;
    }
}

@media(max-width:767px){
    .product-options-card.product-offers-card{
        margin:1rem 0 1.4rem !important;
        padding:.95rem !important;
        border-radius:22px !important;
    }

    .product-options-card.product-offers-card .product-offers-list{
        grid-template-columns:1fr !important;
    }
}


/* =========================================
   KERO REVIEWS SLIDER CARDS
   ========================================= */

.product-reviews-slider-section{
    margin:2.2rem auto 4rem;
    max-width:1400px;
    background:#fff;
    border:1px solid rgba(255,95,151,.16);
    border-radius:30px;
    padding:1.5rem;
    box-shadow:0 20px 50px rgba(239,95,152,.08);
}

.product-reviews-slider__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
    margin-bottom:1.2rem;
}

.product-reviews-slider__head span{
    color:#ef5f98;
    font-weight:900;
}

.product-reviews-slider__head h2{
    margin:0;
    color:#ef5f98;
    font-size:clamp(1.45rem,2.5vw,2.4rem);
    font-weight:900;
}

.product-reviews-score--slider{
    flex-shrink:0;
}

.product-reviews-slider{
    display:flex;
    gap:1rem;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding:.35rem .1rem 1rem;
    -webkit-overflow-scrolling:touch;
}

.product-reviews-slider::-webkit-scrollbar{
    height:8px;
}

.product-reviews-slider::-webkit-scrollbar-track{
    background:#fff0f6;
    border-radius:999px;
}

.product-reviews-slider::-webkit-scrollbar-thumb{
    background:#ef5f98;
    border-radius:999px;
}

.product-review-slide{
    flex:0 0 min(390px, 86vw);
    scroll-snap-align:start;
    background:linear-gradient(180deg,#fffafd,#fff);
    border:1px solid rgba(255,95,151,.20);
    border-radius:24px;
    padding:1.2rem;
    box-shadow:0 15px 34px rgba(239,95,152,.07);
    display:grid;
    gap:.8rem;
}

.product-review-slide__top{
    display:flex;
    align-items:center;
    gap:.75rem;
}

.product-review-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#fff0f6;
    border:1px solid #ffd1e1;
    color:#ef5f98;
    font-weight:900;
    font-size:1.25rem;
}

.product-review-slide__top strong{
    display:block;
    color:#241a24;
    font-weight:900;
}

.product-review-slide__top span{
    display:block;
    color:#756873;
    font-size:.86rem;
    margin-top:.15rem;
}

.product-review-slide__stars{
    color:#ffb020;
    letter-spacing:.08em;
    font-size:1.1rem;
}

.product-review-slide p{
    margin:0;
    color:#352635;
    line-height:1.9;
    font-size:.96rem;
}

.product-review-slide__verified{
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    width:max-content;
    padding:.35rem .65rem;
    border-radius:999px;
    background:#ecfdf3;
    color:#16a34a;
    font-weight:900;
    font-size:.82rem;
}

@media(max-width:767px){
    .product-reviews-slider-section{
        margin:1.5rem 0 3rem;
        padding:1rem;
        border-radius:22px;
    }

    .product-reviews-slider__head{
        display:grid;
        text-align:right;
    }

    .product-review-slide{
        flex-basis:86%;
        border-radius:20px;
    }
}


/* KERO reviews auto slider polish */
.product-reviews-slider-section .product-reviews-slider__head h2::after{
    content:"";
    display:block;
    width:74px;
    height:4px;
    border-radius:999px;
    background:#ef5f98;
    margin:.55rem 0 0 auto;
}

.product-reviews-slider{
    scroll-behavior:smooth;
}

.product-review-slide{
    flex-basis:min(360px, 84vw) !important;
}

@media(max-width:767px){
    .product-reviews-slider-section .product-reviews-slider__head h2::after{
        margin-inline:auto;
    }
}

/* =========================================
   KERO REVIEWS AUTO + MOUSE DRAG
   ========================================= */

.product-reviews-slider{
    cursor:grab !important;
    user-select:none !important;
    scroll-behavior:smooth !important;
    scroll-snap-type:x mandatory !important;
}

.product-reviews-slider.is-dragging{
    cursor:grabbing !important;
    scroll-snap-type:none !important;
    scroll-behavior:auto !important;
}

.product-reviews-slider.is-dragging *{
    pointer-events:none !important;
}

.product-review-slide{
    scroll-snap-align:start !important;
}


/* =========================================
   KERO PRODUCT GALLERY THUMBS DRAG
   ========================================= */

.product-gallery__thumbs{
    cursor:grab !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-behavior:smooth !important;
    -webkit-overflow-scrolling:touch !important;
    touch-action:pan-x !important;
    user-select:none !important;
    padding-bottom:.65rem !important;
}

.product-gallery__thumbs.is-dragging{
    cursor:grabbing !important;
    scroll-behavior:auto !important;
}

.product-gallery__thumbs.is-dragging .product-gallery__thumb{
    pointer-events:none !important;
}

.product-gallery__thumb{
    flex:0 0 82px !important;
}

@media(max-width:767px){
    .product-gallery__thumbs{
        margin-inline:-8px !important;
        padding-inline:8px !important;
        gap:.65rem !important;
    }

    .product-gallery__thumb{
        flex:0 0 76px !important;
        width:76px !important;
    }
}


/* =========================================
   KERO REAL GALLERY CAROUSEL
   ========================================= */

.product-gallery-carousel{
    position:relative !important;
    display:grid !important;
    grid-template-columns:42px minmax(0, 392px) 42px !important;
    align-items:center !important;
    justify-content:center !important;
    gap:.6rem !important;
    margin-top:1rem !important;
}

.product-gallery-carousel .product-gallery__thumbs{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:.65rem !important;
    max-width:392px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-behavior:smooth !important;
    scrollbar-width:none !important;
    -webkit-overflow-scrolling:touch !important;
    touch-action:pan-x !important;
    user-select:none !important;
    padding:.25rem 0 .45rem !important;
}

.product-gallery-carousel .product-gallery__thumbs::-webkit-scrollbar{
    display:none !important;
}

.product-gallery-carousel .product-gallery__thumb{
    flex:0 0 86px !important;
    width:86px !important;
    height:86px !important;
}

.product-gallery-carousel__arrow{
    width:42px !important;
    height:42px !important;
    border-radius:50% !important;
    border:1px solid rgba(255,95,151,.25) !important;
    background:#fff !important;
    color:#ef5f98 !important;
    box-shadow:0 12px 28px rgba(239,95,152,.10) !important;
    display:grid !important;
    place-items:center !important;
    cursor:pointer !important;
}

.product-gallery-carousel__arrow:hover{
    background:#fff0f6 !important;
}

.product-gallery-carousel .product-gallery__thumbs.is-dragging{
    cursor:grabbing !important;
    scroll-behavior:auto !important;
}

@media(max-width:767px){
    .product-gallery-carousel{
        grid-template-columns:36px minmax(0, 292px) 36px !important;
        gap:.45rem !important;
    }

    .product-gallery-carousel .product-gallery__thumbs{
        max-width:292px !important;
        gap:.55rem !important;
    }

    .product-gallery-carousel .product-gallery__thumb{
        flex-basis:66px !important;
        width:66px !important;
        height:66px !important;
        border-radius:14px !important;
    }

    .product-gallery-carousel__arrow{
        width:36px !important;
        height:36px !important;
    }
}


/* =========================================
   KERO MAIN IMAGE FRAME SLIDER
   ========================================= */

.product-gallery-main-slider{
    position:relative !important;
    overflow:hidden !important;
    padding:0 !important;
    cursor:grab !important;
}

.product-gallery-main-slider.is-dragging{
    cursor:grabbing !important;
}

.product-gallery-main-slider__track{
    display:flex !important;
    width:100% !important;
    height:100% !important;
    transition:transform .45s ease !important;
    will-change:transform !important;
}

.product-gallery-main-slider__slide{
    flex:0 0 100% !important;
    width:100% !important;
    height:100% !important;
    padding:1rem !important;
}

.product-gallery-main-slider__slide img,
.product-gallery-main-slider__slide iframe{
    width:100% !important;
    height:100% !important;
    display:block !important;
    object-fit:cover !important;
    border-radius:calc(var(--radius-lg) + 2px) !important;
}

.product-gallery-main-slider__arrow{
    position:absolute !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    width:44px !important;
    height:44px !important;
    border-radius:50% !important;
    border:1px solid rgba(255,95,151,.25) !important;
    background:rgba(255,255,255,.92) !important;
    color:#ef5f98 !important;
    display:grid !important;
    place-items:center !important;
    box-shadow:0 16px 34px rgba(239,95,152,.12) !important;
    z-index:5 !important;
}

.product-gallery-main-slider__arrow--prev{
    right:1rem !important;
}

.product-gallery-main-slider__arrow--next{
    left:1rem !important;
}

.product-gallery-main-slider__dots{
    position:absolute !important;
    left:50% !important;
    bottom:1rem !important;
    transform:translateX(-50%) !important;
    display:flex !important;
    gap:.35rem !important;
    z-index:6 !important;
}

.product-gallery-main-slider__dots button{
    width:9px !important;
    height:9px !important;
    border-radius:999px !important;
    border:0 !important;
    background:rgba(255,255,255,.75) !important;
    box-shadow:0 0 0 1px rgba(239,95,152,.25) !important;
}

.product-gallery-main-slider__dots button.is-active{
    width:24px !important;
    background:#ef5f98 !important;
}

@media(max-width:767px){
    .product-gallery-main-slider__arrow{
        width:38px !important;
        height:38px !important;
    }

    .product-gallery-main-slider__slide{
        padding:.65rem !important;
    }
}


/* =========================================
   KERO SIMPLE MAIN IMAGE AUTO SWITCH
   ========================================= */

.product-gallery__main{
    position:relative !important;
}

#product-main-image{
    transition:opacity .24s ease, transform .24s ease !important;
}

#product-main-image.is-switching{
    opacity:.25 !important;
    transform:scale(.985) !important;
}

.product-main-nav{
    position:absolute !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    width:42px !important;
    height:42px !important;
    border-radius:50% !important;
    border:1px solid rgba(255,95,151,.22) !important;
    background:rgba(255,255,255,.92) !important;
    color:#ef5f98 !important;
    box-shadow:0 14px 30px rgba(239,95,152,.13) !important;
    z-index:10 !important;
    display:grid !important;
    place-items:center !important;
}

.product-main-nav--prev{
    right:1rem !important;
}

.product-main-nav--next{
    left:1rem !important;
}

.product-gallery-carousel__arrow,
.product-gallery-main-slider__arrow,
.product-gallery-main-slider__dots{
    display:none !important;
}

.product-gallery__thumbs{
    display:flex !important;
    flex-wrap:nowrap !important;
    justify-content:center !important;
    overflow-x:auto !important;
    scrollbar-width:none !important;
    gap:.65rem !important;
}

.product-gallery__thumbs::-webkit-scrollbar{
    display:none !important;
}

@media(max-width:767px){
    .product-main-nav{
        width:36px !important;
        height:36px !important;
    }
}


/* =========================================
   KERO MAIN GALLERY DRAG ONLY
   ========================================= */

.product-gallery__main{
    cursor:grab !important;
    touch-action:pan-y !important;
    user-select:none !important;
}

.product-gallery__main.is-dragging-main{
    cursor:grabbing !important;
}

#product-main-image{
    will-change:opacity, transform !important;
    transition:opacity .22s ease, transform .22s ease !important;
}

#product-main-image.is-switching{
    opacity:.18 !important;
    transform:scale(.985) !important;
}

.product-gallery__main.slide-next #product-main-image{
    animation:keroMainSlideNext .42s ease both;
}

.product-gallery__main.slide-prev #product-main-image{
    animation:keroMainSlidePrev .42s ease both;
}

@keyframes keroMainSlideNext{
    0%{opacity:.15; transform:translateX(24px) scale(.985);}
    100%{opacity:1; transform:translateX(0) scale(1);}
}

@keyframes keroMainSlidePrev{
    0%{opacity:.15; transform:translateX(-24px) scale(.985);}
    100%{opacity:1; transform:translateX(0) scale(1);}
}

.product-gallery__thumb.is-active{
    border-color:#ef5f98 !important;
    box-shadow:0 0 0 2px rgba(239,95,152,.18), 0 14px 30px rgba(239,95,152,.12) !important;
}


/* =========================================
   KERO GALLERY MOUSE DRAG FIX
   ========================================= */

.product-gallery__main{
    cursor:grab !important;
    user-select:none !important;
    -webkit-user-select:none !important;
    touch-action:pan-y !important;
}

.product-gallery__main.is-dragging-main{
    cursor:grabbing !important;
}

.product-gallery__main img{
    user-select:none !important;
    -webkit-user-drag:none !important;
    pointer-events:auto !important;
}

#product-main-image{
    transition:opacity .22s ease, transform .22s ease !important;
}

#product-main-image.is-switching{
    opacity:.18 !important;
    transform:scale(.985) !important;
}

.product-gallery__main.slide-next #product-main-image{
    animation:keroMainSlideNext .42s ease both;
}

.product-gallery__main.slide-prev #product-main-image{
    animation:keroMainSlidePrev .42s ease both;
}

@keyframes keroMainSlideNext{
    0%{opacity:.15; transform:translateX(24px) scale(.985);}
    100%{opacity:1; transform:translateX(0) scale(1);}
}

@keyframes keroMainSlidePrev{
    0%{opacity:.15; transform:translateX(-24px) scale(.985);}
    100%{opacity:1; transform:translateX(0) scale(1);}
}


/* =========================================
   KERO GALLERY PINK ARROWS
   ========================================= */

.product-main-nav{
    background:linear-gradient(135deg,#ff6aa3,#ef5f98) !important;
    color:#fff !important;
    border:0 !important;
    width:48px !important;
    height:48px !important;
    box-shadow:0 16px 34px rgba(239,95,152,.28) !important;
    transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease !important;
}

.product-main-nav:hover{
    transform:translateY(-50%) scale(1.08) !important;
    box-shadow:0 20px 42px rgba(239,95,152,.38) !important;
}

.product-main-nav i{
    font-size:1rem !important;
}

.product-main-nav--prev{
    right:.85rem !important;
}

.product-main-nav--next{
    left:.85rem !important;
}

@media(max-width:767px){
    .product-main-nav{
        width:40px !important;
        height:40px !important;
    }

    .product-main-nav--prev{
        right:.55rem !important;
    }

    .product-main-nav--next{
        left:.55rem !important;
    }
}


/* =========================================
   KERO PRODUCT CLEAN FRAME + MOBILE ROWS
   ========================================= */

/* شيل الفريم/الخلفية اللي ورا البوكس وخلي البوكس الأبيض الأساسي فقط */
.product-panel--stack{
    background:transparent !important;
    box-shadow:none !important;
    border:0 !important;
    padding:0 !important;
}

.product-summary-card{
    background:#fff !important;
    border:1px solid rgba(255,95,151,.18) !important;
    box-shadow:0 20px 48px rgba(239,95,152,.08) !important;
}

/* خفف الفريم الداخلي بتاع الوصف عشان ميظهرش كأنه بوكس جوه بوكس تقيل */
.product-summary-description{
    background:#fff !important;
    box-shadow:none !important;
    border:1px solid rgba(255,95,151,.16) !important;
}

/* Mobile: السعر والباجات في صف واحد */
@media(max-width:767px){

    .product-summary-card{
        padding:1rem !important;
        border-radius:22px !important;
    }

    .product-summary-topline{
        display:grid !important;
        grid-template-columns:1fr auto !important;
        align-items:center !important;
        gap:.55rem !important;
        margin-bottom:.7rem !important;
    }

    .product-summary-topline .product-summary-card__badges{
        display:flex !important;
        align-items:center !important;
        gap:.35rem !important;
        flex-wrap:nowrap !important;
        overflow:hidden !important;
        justify-content:flex-start !important;
        min-width:0 !important;
    }

    .product-summary-topline .badge{
        white-space:nowrap !important;
        font-size:.68rem !important;
        padding:.3rem .48rem !important;
        border-radius:999px !important;
    }

    .product-summary-price--top{
        margin:0 !important;
        justify-self:end !important;
        white-space:nowrap !important;
        padding:.35rem .55rem !important;
        border-radius:999px !important;
    }

    .product-summary-price--top strong{
        font-size:.95rem !important;
        line-height:1 !important;
    }

    .product-summary-price--top span{
        font-size:.62rem !important;
        display:block !important;
        margin-top:.15rem !important;
    }

    /* التقييم ورمز المنتج في سطر واحد */
    .product-summary-card__meta{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        align-items:center !important;
        gap:.55rem !important;
        margin-top:.75rem !important;
    }

    .rating-row--soft,
    .product-summary-card__sku{
        min-height:48px !important;
        margin:0 !important;
        padding:.55rem .65rem !important;
        border-radius:16px !important;
        background:#fff8fb !important;
        border:1px solid rgba(255,95,151,.14) !important;
        justify-content:center !important;
        text-align:center !important;
    }

    .rating-row--soft{
        display:flex !important;
        gap:.25rem !important;
        font-size:.78rem !important;
    }

    .product-summary-card__sku span{
        display:block !important;
        font-size:.62rem !important;
        color:#8a7a86 !important;
        margin-bottom:.12rem !important;
    }

    .product-summary-card__sku strong{
        display:block !important;
        font-size:.65rem !important;
        line-height:1.25 !important;
        word-break:break-word !important;
    }

    .product-summary-card__heading{
        text-align:center !important;
    }

    .product-summary-card__heading h1{
        font-size:1.45rem !important;
        line-height:1.35 !important;
    }
}


/* KERO_HOME_BRANDS_MARQUEE_V1 */
.kero-brand-marquee-section {
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
    margin-bottom: 0;
    padding: clamp(2.2rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem);
    border-radius: 0;
    background:
        radial-gradient(circle at 5% 18%, rgba(255, 88, 126, .18), transparent 12rem),
        radial-gradient(circle at 96% 90%, rgba(255, 88, 126, .20), transparent 12rem),
        linear-gradient(135deg, #fff 0%, #fff3f6 45%, #ffe5ec 100%);
    isolation: isolate;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.kero-brand-marquee-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.kero-brand-bg-orb {
    position: absolute;
    width: 105px;
    height: 105px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(231, 58, 98, .35), rgba(231, 58, 98, 0) 68%);
    filter: blur(2px);
    pointer-events: none;
    z-index: -1;
    animation: keroBrandFloat 7s ease-in-out infinite;
}

.kero-brand-bg-orb--1 {
    top: 1rem;
    right: 1.2rem;
}

.kero-brand-bg-orb--2 {
    bottom: .8rem;
    left: 1.4rem;
    animation-delay: -2s;
}

@keyframes keroBrandFloat {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(0,-14px,0) scale(1.06); }
}

.kero-brand-head {
    text-align: center;
    margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.kero-brand-head h2 {
    margin: 0;
    color: #17151a;
    font-size: clamp(1.6rem, 3.5vw, 2.55rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.kero-brand-head h2 span {
    color: #e94f74;
}

.kero-brand-head p {
    margin: .55rem auto 0;
    max-width: 620px;
    color: #6f5d66;
    font-size: clamp(.95rem, 1.5vw, 1.08rem);
    line-height: 1.9;
}


/* KERO HOME BRAND TRUE SEAMLESS GROUP LOOP */
.kero-brand-marquee-section{
    overflow:hidden !important;
    text-align:center !important;
    padding-top:clamp(2rem,4vw,4rem) !important;
    padding-bottom:clamp(2rem,4vw,4rem) !important;
}

.kero-brand-head{
    width:min(1180px,calc(100% - 2rem)) !important;
    margin:0 auto 1.35rem !important;
    text-align:center !important;
}

.kero-brand-viewport{
    width:min(960px,calc(100% - 1rem)) !important;
    margin-inline:auto !important;
    overflow:hidden !important;
    padding:.35rem 0 1.1rem !important;
    -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%) !important;
    mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%) !important;
}

.kero-brand-track{
    width:max-content !important;
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:0 !important;
    will-change:transform !important;
    animation:keroBrandTrueSeamlessGroupLoop 11s linear infinite !important;
}

.kero-brand-viewport:hover .kero-brand-track{
    animation-play-state:paused !important;
}

.kero-brand-group{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:1rem !important;
    flex:0 0 auto !important;
    padding-inline:.5rem !important;
}

.kero-brand-card{
    flex:0 0 128px !important;
    width:128px !important;
    min-height:122px !important;
    text-decoration:none !important;
}

.kero-brand-card *{ pointer-events:none !important; }

@keyframes keroBrandTrueSeamlessGroupLoop{
    from{transform:translate3d(0,0,0);}
    to{transform:translate3d(-50%,0,0);}
}

@media(max-width:768px){
    .kero-brand-track{ animation-duration:8s !important; }
    .kero-brand-group{ gap:.85rem !important; padding-inline:.425rem !important; }
    .kero-brand-card{ flex-basis:116px !important; width:116px !important; min-height:118px !important; }
}
