
/* ════════════════════════════════════════════════════
   DESIGN TOKENS & UTILITIES
════════════════════════════════════════════════════ */
:root {
    --off-white:      #F8F6F0;
    --off-white-2:    #F2EFE8;
    --off-white-3:    #EAE7DF;
    --dark-gold:      #8A681F;
    --deep-gold:      #6F5218;
    --gold-light:     #B8921F;
    --gold-pale:      #F5EDD6;
    --platinum:       #C8C8C8;
    --soft-platinum:  #E5E3DE;
    --dark-text:      #24211C;
    --mid-text:       #5A5348;
    --light-text:     #9A9490;

    --font-serif:     'Cinzel', serif;
    --font-sans:      'Inter', 'Montserrat', sans-serif;

    --header-h:       64px;
    --bottom-bar-h:   68px;
    --radius-card:    12px;
    --radius-sm:      6px;
    --transition:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card:    0 2px 20px rgba(0,0,0,0.06);
    --shadow-hover:   0 12px 36px rgba(138,104,31,0.14);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--off-white);
    font-family: var(--font-sans);
    color: var(--dark-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ════════════════════════════════════════════════════
   PAGE WRAPPER & LAYOUT
════════════════════════════════════════════════════ */
.page-wrapper {
    padding-top: 0;
    padding-bottom: calc(var(--bottom-bar-h, 44px) + 16px);
    min-height: 100vh;
}
@media (min-width: 1024px) {
    .page-wrapper { padding-top: 0; padding-bottom: 0; }
}

.shop-layout {
    display: block;
}
@media (min-width: 1024px) {
    .shop-layout {
        display: flex;
        align-items: flex-start;
    }
}

/* ════════════════════════════════════════════════════
   HERO PROMO BANNER SLIDER (Auto Sizing & Fluid Layout)
════════════════════════════════════════════════════ */
.hero-banner-section {
    padding: clamp(4px, 1.5vw, 12px) clamp(8px, 2vw, 24px) 2px;
    background: #FAF8F4;
    position: relative;
}
.hero-banner-container {
    position: relative;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    border-radius: clamp(8px, 2vw, 12px);
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(138, 104, 31, 0.12);
    border: 1px solid rgba(138, 104, 31, 0.2);
}
.hero-banner-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    touch-action: pan-y;
}
.hero-banner-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: clamp(105px, 26vw, 165px);
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(8px, 2.2vw, 20px) clamp(10px, 2.8vw, 32px);
    color: #FFFFFF;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
}
.hero-slide-1 { background: linear-gradient(135deg, #1F150C 0%, #452D14 55%, #8A681F 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #12211C 0%, #224236 55%, #7C5E1B 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #2D0F18 0%, #52182B 55%, #946F1D 100%); }

.hero-slide-content {
    display: flex;
    flex-direction: column;
    gap: clamp(2px, 0.6vw, 4px);
    z-index: 2;
    max-width: 66%;
    padding-right: 6px;
}
.hero-slide-tag {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(0.48rem, 1.6vw, 0.65rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F8D67A;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1.1;
}
.hero-slide-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: clamp(0.82rem, 2.8vw, 1.38rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.18;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.hero-slide-desc {
    font-size: clamp(0.56rem, 1.8vw, 0.8rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}
.hero-slide-btn {
    align-self: flex-start;
    margin-top: clamp(2px, 0.8vw, 6px);
    padding: clamp(2px, 0.6vw, 5px) clamp(8px, 2vw, 14px);
    border-radius: 14px;
    background: #F8D67A;
    color: #382506;
    border: none;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(0.54rem, 1.6vw, 0.7rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}
.hero-slide-btn:hover {
    background: #FFFFFF;
    transform: translateX(2px);
}

.hero-slide-img-wrap {
    height: clamp(90px, 23vw, 135px);
    width: clamp(68px, 17vw, 105px);
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid rgba(248, 214, 122, 0.4);
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    flex-shrink: 0;
    z-index: 2;
}
.hero-slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}
.hero-banner-slide:hover .hero-slide-img-wrap img {
    transform: scale(1.06);
}

/* Banner Dots */
.hero-banner-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
}
.hero-banner-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.25s ease;
}
.hero-banner-dot.active {
    width: 14px;
    border-radius: 3px;
    background: #F8D67A;
    box-shadow: 0 0 6px rgba(248, 214, 122, 0.8);
}

/* Banner Navigation Arrows (Hidden on mobile, shown on desktop) */
.hero-banner-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}
.hero-banner-arrow:hover {
    background: var(--dark-gold, #8A681F);
    color: #FFFFFF;
}
.hero-banner-arrow.prev { left: 8px; }
.hero-banner-arrow.next { right: 8px; }
.hero-banner-arrow svg {
    width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.2; fill: none;
}

@media (min-width: 768px) {
    .hero-banner-arrow { display: flex; }
    .hero-banner-dot { width: 6px; height: 6px; }
    .hero-banner-dot.active { width: 18px; }
}

/* ════════════════════════════════════════════════════
   ROUND SUB-CATEGORY SLIDER
════════════════════════════════════════════════════ */
.cat-slider-section {
    background: #FAF8F4;
    border-bottom: 1px solid var(--soft-platinum, #E5E3DE);
    padding: 10px 0 8px;
    position: relative;
}

.cat-slider-track {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
scrollbar-width: none;
    padding: 2px 14px 4px;
}
.cat-slider-track::-webkit-scrollbar { display: none; }

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: pointer;
    padding: 0 8px;
    background: none;
    border: none;
    font-family: var(--font-sans);
    transition: transform var(--transition);
}
.cat-item:active { transform: scale(0.93); }
.cat-item:hover .cat-ring { border-color: var(--dark-gold); }
.cat-item:hover .cat-label { color: var(--dark-gold); }

.cat-ring {
    width: clamp(48px, 13vw, 62px);
    height: clamp(48px, 13vw, 62px);
    border-radius: 50%;
    border: 2px solid var(--soft-platinum, #E5E3DE);
    padding: 2.5px;
    transition: all 0.25s ease;
    position: relative;
}
.cat-item.active .cat-ring {
    border-color: var(--dark-gold, #8A681F);
    box-shadow: 0 0 0 2px rgba(138,104,31,0.3);
}

.cat-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: var(--off-white-2, #F5F2EB);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    transition: transform 0.4s ease;
}
.cat-item:hover .cat-circle img { transform: scale(1.1); }

.cat-circle.gradient-1  { background: linear-gradient(135deg, #D4AF6A 0%, #8A681F 100%); }
.cat-circle.gradient-6  { background: linear-gradient(135deg, #E8D4A0 0%, #B8921F 100%); }

.cat-icon {
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    opacity: 0.95;
}

.cat-item.active .cat-ring::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dark-gold, #8A681F);
    border: 1px solid #FFFFFF;
}

.cat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--mid-text, #5A5348);
    letter-spacing: 0.04em;
    text-align: center;
    white-space: nowrap;
    transition: color var(--transition);
    max-width: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat-item.active .cat-label {
    color: var(--dark-gold, #8A681F);
    font-weight: 800;
}

@media (min-width: 768px) {
    .main-cat-slider-track { padding: 4px 28px; gap: 10px; }
    .main-cat-tab { font-size: 0.78rem; padding: 7px 18px; }
    .cat-slider-track { padding: 4px 28px 6px; gap: 8px; }
    .cat-ring { width: 68px; height: 68px; }
    .cat-item { padding: 0 10px; }
    .cat-label { font-size: 0.7rem; }
}

/* ════════════════════════════════════════════════════
   DESKTOP STICKY SIDEBAR FILTER
════════════════════════════════════════════════════ */
.filter-sidebar {
    display: none;
}
@media (min-width: 1024px) {
    .filter-sidebar {
        display: flex;
        flex-direction: column;
        width: 260px;
        flex-shrink: 0;
        border-right: 1px solid var(--soft-platinum);
        position: sticky;
        top: var(--header-h);
        height: calc(100vh - var(--header-h));
        overflow-y: auto;
        background: var(--off-white);
        scrollbar-width: thin;
        scrollbar-color: var(--soft-platinum) transparent;
    }
    .filter-sidebar::-webkit-scrollbar { width: 4px; }
    .filter-sidebar::-webkit-scrollbar-thumb { background: var(--soft-platinum); border-radius: 2px; }
}

.sf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--soft-platinum);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: rgba(248,246,240,0.96);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 5;
}
.sf-title {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sf-title-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--dark-gold);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
}
.sf-clear-all {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-sans);
    transition: color var(--transition);
}
.sf-clear-all:hover { color: var(--deep-gold); text-decoration: underline; }

.sf-section {
    border-bottom: 1px solid var(--soft-platinum);
}
.sf-section-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background var(--transition);
    text-align: left;
}
.sf-section-btn:hover { background: var(--off-white-2); }
.sf-section-title-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sf-sec-badge {
    font-size: 0.65rem;
    color: var(--dark-gold);
    font-weight: 700;
    background: var(--gold-pale);
    padding: 2px 6px;
    border-radius: 10px;
    display: none;
}
.sf-section.has-active .sf-sec-badge { display: inline-block; }

.sf-chevron {
    width: 15px; height: 15px;
    stroke: var(--mid-text); fill: none; stroke-width: 2.5;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.sf-section.open .sf-chevron { transform: rotate(180deg); }
.sf-section-body {
    display: none;
    padding: 4px 20px 16px;
}
.sf-section.open .sf-section-body { display: block; }

/* Filter chips */
.sf-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.sf-chip {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--soft-platinum);
    background: var(--off-white);
    font-size: 0.73rem; font-weight: 500;
    color: var(--mid-text);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.04em;
}
.sf-chip:hover { border-color: var(--dark-gold); color: var(--dark-gold); background: var(--gold-pale); }
.sf-chip.active { border-color: var(--dark-gold); background: var(--dark-gold); color: var(--off-white); font-weight: 600; }

/* Swatches */
.sf-swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.sf-swatch-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 16px;
    border: 1px solid var(--soft-platinum);
    cursor: pointer;
    transition: all var(--transition);
    background: var(--off-white);
}
.sf-swatch-wrapper:hover { border-color: var(--dark-gold); }
.sf-swatch-wrapper.active { border-color: var(--dark-gold); background: var(--gold-pale); }

.sf-swatch-circle {
    width: 18px; height: 18px; border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
}
.sf-swatch-text {
    font-size: 0.7rem; font-weight: 500; color: var(--dark-text);
}

/* Luxury Price Display Card & Presets */
.price-display-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gold-pale);
    border: 1px solid rgba(138, 104, 31, 0.28);
    border-radius: 10px;
    padding: 8px 14px;
    margin: 6px 0 16px;
    box-shadow: inset 0 1px 3px rgba(138,104,31,0.06);
}
.price-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price-pill-lbl {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--mid-text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.price-pill-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark-gold);
    font-family: var(--font-sans);
}
.price-pill-sep {
    font-size: 0.85rem;
    color: var(--dark-gold);
    font-weight: 600;
    opacity: 0.5;
}

.sf-range-track {
    position: relative;
    height: 10px;
    background: #E2DFD7;
    border: 1px solid #D4D0C5;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    margin: 26px 4px 20px 4px;
}
.sf-range-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #6F5218 0%, #8A681F 50%, #B8921F 100%);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(138, 104, 31, 0.45);
    left: 0%; right: 0%;
    transition: left 0.08s ease, right 0.08s ease;
}
input[type=range].sf-range {
    position: absolute;
    top: -7px; left: 0;
    width: 100%; height: 10px;
    appearance: none;
    background: transparent;
    cursor: pointer;
    pointer-events: none;
    z-index: 3;
}
input[type=range].sf-range::-webkit-slider-thumb {
    pointer-events: auto;
    appearance: none;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3.5px solid var(--dark-gold);
    box-shadow: 0 3px 12px rgba(138, 104, 31, 0.45), 0 1px 3px rgba(0,0,0,0.15);
    cursor: grab;
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease, border-color 0.2s ease;
}
input[type=range].sf-range::-webkit-slider-thumb:hover,
input[type=range].sf-range::-webkit-slider-thumb:active {
    transform: scale(1.25);
    box-shadow: 0 0 0 7px rgba(138, 104, 31, 0.22), 0 4px 14px rgba(0, 0, 0, 0.22);
    border-color: var(--deep-gold);
    cursor: grabbing;
}
input[type=range].sf-range::-moz-range-thumb {
    pointer-events: auto;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3.5px solid var(--dark-gold);
    box-shadow: 0 3px 12px rgba(138, 104, 31, 0.45);
    cursor: grab;
}

.price-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.price-preset-chip {
    flex: 1 1 calc(50% - 6px);
    padding: 6px 6px;
    border-radius: 6px;
    border: 1px solid var(--soft-platinum);
    background: var(--off-white);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--mid-text);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}
.price-preset-chip:hover {
    border-color: var(--dark-gold);
    color: var(--dark-gold);
    background: var(--gold-pale);
}
.price-preset-chip.active {
    border-color: var(--dark-gold);
    background: var(--dark-gold);
    color: var(--off-white);
    box-shadow: 0 2px 8px rgba(138,104,31,0.25);
}

/* ════════════════════════════════════════════════════
   PRODUCTS AREA & GRID
════════════════════════════════════════════════════ */
.products-area {
    flex: 1;
    min-width: 0;
}

/* Desktop Sort Header */
.products-top-bar {
    display: none;
}
@media (min-width: 1024px) {
    .products-top-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px;
        border-bottom: 1px solid var(--soft-platinum);
        background: var(--off-white);
    }
    .ptb-count { font-size: 0.8rem; font-weight: 600; color: var(--mid-text); letter-spacing: 0.04em; }
    .ptb-sort-wrap { display: flex; align-items: center; gap: 8px; }
    .ptb-sort-label { font-size: 0.74rem; color: var(--light-text); font-weight: 500; }
    .ptb-sort-select {
        padding: 7px 14px;
        border-radius: 6px; border: 1.5px solid var(--soft-platinum);
        background: var(--off-white); color: var(--dark-text);
        font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
        outline: none; cursor: pointer; transition: border-color var(--transition);
    }
    .ptb-sort-select:focus { border-color: var(--dark-gold); }
}

.products-section { padding: 16px 12px 24px; }
@media (min-width: 600px) { .products-section { padding: 20px 20px; } }
@media (min-width: 1024px) { .products-section { padding: 24px 28px; } }

/* Active filter bar tags */
.active-filter-bar {
    display: none;
    align-items: center; gap: 8px;
    padding: 4px 0 16px; overflow-x: auto; scrollbar-width: none;
}
.active-filter-bar.has-tags { display: flex; }
.active-filter-bar::-webkit-scrollbar { display: none; }
.active-filter-label { font-size: 0.72rem; color: var(--light-text); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; flex-shrink: 0; }
.active-filter-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 20px;
    background: var(--gold-pale); border: 1px solid rgba(138,104,31,0.25);
    font-size: 0.72rem; font-weight: 600; color: var(--dark-gold);
    white-space: nowrap; flex-shrink: 0;
}
.active-filter-tag button {
    display: flex; align-items: center; justify-content: center;
    width: 14px; height: 14px; border-radius: 50%;
    color: var(--dark-gold); background: rgba(138,104,31,0.15);
    font-size: 0.65rem; border: none; cursor: pointer; transition: background 0.2s;
}
.active-filter-tag button:hover { background: var(--dark-gold); color: #fff; }

/* ═════════════════════════════════════════════════════════════════════
   TRENDING NOW: 1-LINE CONTINUOUS HORIZONTAL SCROLL RAIL
   • Desktop: Exactly 6 visible product cards (flex: calc((100% - 5*14px)/6))
   • Tablet / Medium Desktop: 3.2 - 4.2 visible product cards
   • Mobile: Exactly 2 full cards + 1 half peeking card (2.35 ratio)
   • Zig-Zag Rhythmic Cadence: Alternating soft champagne cadence
═════════════════════════════════════════════════════════════════════ */
.home-trending-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.home-trending-arrows-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trending-scroll-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid var(--soft-platinum, #E5E3DE);
    color: var(--dark-gold, #8A681F);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(138, 104, 31, 0.08);
    transition: all 0.22s ease;
    outline: none;
    flex-shrink: 0;
}

.trending-scroll-arrow:hover:not(:disabled) {
    background: linear-gradient(135deg, #8A681F 0%, #6F5218 100%);
    color: #FFFFFF;
    border-color: #8A681F;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(138, 104, 31, 0.22);
}

.trending-scroll-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.trending-scroll-arrow svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2.4;
    fill: none;
}

.trending-rail-container {
    position: relative;
    width: 100%;
}

.products-grid.products-scroll-rail,
.products-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 4px 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

/* ── Product Card Structure in 1-Line Rail ── */
.products-grid .product-card {
    scroll-snap-align: start;
    flex-shrink: 0 !important;
    user-select: none;
    border: 1.5px solid var(--soft-platinum, #E5E3DE);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

/* ── Zig-Zag Alternating Rhythmic Styling ── */
.products-grid .product-card:nth-child(even) {
    background: #FFFCF7;
    border-color: rgba(138, 104, 31, 0.22);
}

.products-grid .product-card:nth-child(odd) {
    background: #FFFFFF;
}

.products-grid .product-card:hover {
    transform: translateY(-5px);
    border-color: var(--dark-gold, #8A681F);
    box-shadow: 0 10px 24px rgba(138, 104, 31, 0.16);
    z-index: 3;
}

/* Desktop: Exactly 6 cards visible at once */
@media (min-width: 1100px) {
    .products-grid .product-card {
        flex: 0 0 calc((100% - (5 * 14px)) / 6) !important;
        min-width: calc((100% - (5 * 14px)) / 6) !important;
        max-width: calc((100% - (5 * 14px)) / 6) !important;
    }
}

/* Medium Desktop / Laptop: 4.2 cards visible */
@media (min-width: 820px) and (max-width: 1099px) {
    .products-grid .product-card {
        flex: 0 0 calc((100% - (3 * 12px)) / 4.2) !important;
        min-width: calc((100% - (3 * 12px)) / 4.2) !important;
        max-width: calc((100% - (3 * 12px)) / 4.2) !important;
    }
}

/* Tablet: 3.2 cards visible */
@media (min-width: 601px) and (max-width: 819px) {
    .products-grid .product-card {
        flex: 0 0 calc((100% - (2 * 10px)) / 3.2) !important;
        min-width: calc((100% - (2 * 10px)) / 3.2) !important;
        max-width: calc((100% - (2 * 10px)) / 3.2) !important;
    }
}

/* Trending Tag Upper Side Refining */
.home-section-tag.trending-tag {
    font-size: 0.60rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--dark-gold, #8A681F);
    margin-bottom: 2px;
    display: inline-block;
}

/* Mobile: Exactly 2 full cards + 1 half peeking card (2.35 ratio) */
@media (max-width: 600px) {
    .home-trending-section {
        padding: 16px 0 12px;
    }
    .home-trending-section-header {
        margin-bottom: 8px;
    }
    .home-section-tag.trending-tag {
        font-size: 0.54rem;
        letter-spacing: 0.06em;
        margin-bottom: 1px;
    }
    .home-trending-section .home-section-title {
        font-size: 1.12rem;
        line-height: 1.2;
    }
    .products-grid.products-scroll-rail,
    .products-grid {
        gap: 8px;
        padding: 2px 2px 12px;
    }
    .products-grid .product-card {
        flex: 0 0 calc((100% - 12px) / 2.35) !important;
        min-width: calc((100% - 12px) / 2.35) !important;
        max-width: calc((100% - 12px) / 2.35) !important;
        border-radius: 12px;
    }
    .products-grid .product-card .card-body {
        padding: 7px 6px 8px;
    }
    .products-grid .product-card .card-sku-text {
        font-size: 0.54rem;
    }
    .products-grid .product-card .card-rating-badge {
        font-size: 0.54rem;
        padding: 1px 3px;
    }
    .products-grid .product-card .card-name {
        font-size: 0.72rem;
        line-height: 1.25;
        margin-bottom: 2px;
    }
    .products-grid .product-card .card-info-text-row {
        font-size: 0.58rem;
        margin-bottom: 2px;
    }
    .products-grid .product-card .card-price {
        font-size: 0.82rem;
    }
    .products-grid .product-card .card-old-price {
        font-size: 0.65rem;
    }
    .products-grid .product-card .card-price-discount {
        font-size: 0.58rem;
    }
    .products-grid .product-card .card-add-cart-btn {
        height: 28px;
        font-size: 0.64rem;
    }
    .home-trending-arrows-group {
        display: none;
    }
}

/* No products found state */
.no-products-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--off-white-2);
    border-radius: 12px;
    border: 1px dashed var(--soft-platinum);
}
.np-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--dark-text); font-weight: 600; margin-bottom: 6px; }
.np-desc { font-size: 0.8rem; color: var(--mid-text); margin-bottom: 16px; }
.np-reset-btn {
    padding: 8px 20px; border-radius: 20px; background: var(--dark-gold); color: #fff;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ════════════════════════════════════════════════════
   PRODUCT CARD DESIGN & TYPOGRAPHY STYLES
════════════════════════════════════════════════════ */
.product-card {
    position: relative;
    background: #FFFFFF;
    border-radius: var(--radius-card);
    border: 1px solid var(--soft-platinum);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: rgba(138,104,31,0.3);
}

.card-image-wrap {
    position: relative; overflow: hidden;
    background: #FAF8F4;
    aspect-ratio: 3 / 3.75;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.card-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover .card-img { transform: scale(1.05); }

.card-badge {
    position: absolute; bottom: 8px; left: 8px; top: auto;
    padding: 3px 8px; border-radius: 12px;
    font-size: 0.52rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    z-index: 2; background: rgba(138, 104, 31, 0.85); color: #FFFFFF;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    width: auto; max-width: calc(100% - 40px);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    line-height: 1.2;
}
@media (min-width: 600px) {
    .card-badge {
        top: 10px; left: 10px; bottom: auto;
        padding: 3.5px 9px; border-radius: 14px;
        font-size: 0.56rem; letter-spacing: 0.1em;
    }
}
.card-badge.badge-new       { background: rgba(248, 246, 240, 0.92); color: var(--dark-gold); border-color: rgba(138,104,31,0.4); }
.card-badge.badge-bridal    { background: rgba(122, 40, 77, 0.88); color: #ffffff; border-color: rgba(255,255,255,0.35); }
.card-badge.badge-heritage  { background: rgba(94, 67, 20, 0.88); color: #ffffff; border-color: rgba(255,255,255,0.35); }
.card-badge.badge-bestseller{ background: rgba(36, 33, 28, 0.85); color: #ffffff; border-color: rgba(255,255,255,0.3); }
.card-badge.badge-trending  { background: rgba(184, 107, 40, 0.88); color: #ffffff; border-color: rgba(255,255,255,0.35); }

/* ── Wishlist Button ── */
.card-wishlist-btn {
    position: absolute;
    top: clamp(4px, 1.5vw, 8px);
    right: clamp(4px, 1.5vw, 8px);
    width: clamp(24px, 7.5vw, 32px);
    height: clamp(24px, 7.5vw, 32px);
    border-radius: 50%;
    background: rgba(248,246,240,0.88);
    border: 1px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all var(--transition);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.card-wishlist-btn:hover { background: var(--gold-pale); border-color: var(--dark-gold); transform: scale(1.08); }
.card-wishlist-btn.active { background: #FDE8E8; border-color: #E57373; }
.card-wishlist-btn svg {
    width: clamp(10px, 3.2vw, 14px);
    height: clamp(10px, 3.2vw, 14px);
    stroke: var(--dark-gold);
    stroke-width: 2;
    fill: none;
    transition: all var(--transition);
}
.card-wishlist-btn.active svg { stroke: #E53935; fill: #E53935; }

/* ── Mobile Quick View Icon Button (Stacked directly below Wishlist on Mobile) ── */
.card-mobile-qv-btn {
    position: absolute;
    top: clamp(32px, 10vw, 44px);
    right: clamp(4px, 1.5vw, 8px);
    width: clamp(24px, 7.5vw, 32px) !important;
    height: clamp(24px, 7.5vw, 32px) !important;
    min-width: clamp(24px, 7.5vw, 32px) !important;
    min-height: clamp(24px, 7.5vw, 32px) !important;
    max-width: clamp(24px, 7.5vw, 32px) !important;
    max-height: clamp(24px, 7.5vw, 32px) !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(248,246,240,0.88);
    border: 1px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all var(--transition);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    cursor: pointer;
}
.card-mobile-qv-btn:hover, .card-mobile-qv-btn:active { background: var(--gold-pale); border-color: var(--dark-gold); transform: scale(1.08); }
.card-mobile-qv-btn svg {
    width: clamp(10px, 3.2vw, 14px);
    height: clamp(10px, 3.2vw, 14px);
    stroke: var(--dark-gold);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .card-wishlist-btn {
        top: 8px; right: 8px;
        width: 34px; height: 34px;
        background: rgba(248,246,240,0.92);
        border-color: var(--soft-platinum);
    }
    .card-wishlist-btn svg { width: 14px; height: 14px; }
    .card-mobile-qv-btn { display: none !important; }
}

@media (max-width: 1023px) {
    .card-quick-view { display: none !important; }
}
.card-quick-view {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 10px 12px;
    background: linear-gradient(to top, rgba(32,28,22,0.75) 0%, transparent 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(6px); transition: all var(--transition); z-index: 2;
}
.product-card:hover .card-quick-view { opacity: 1; transform: translateY(0); }
.quick-view-btn {
    font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--dark-text); padding: 7px 18px; border-radius: 20px;
    border: 1px solid rgba(138,104,31,0.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all var(--transition); cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.quick-view-btn:hover { background: var(--dark-gold); color: #fff; border-color: var(--dark-gold); }

.card-body {
    padding: clamp(7px, 1.8vw, 10px);
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.card-fabric-tag {
    font-size: clamp(0.5rem, 1.5vw, 0.58rem);
    font-weight: 600;
    color: var(--dark-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-name {
    font-family: var(--font-serif);
    font-size: clamp(0.72rem, 2.1vw, 0.82rem);
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.25;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-height: 0;
    margin-bottom: 2px;
    transition: color var(--transition);
}
.product-card:hover .card-name { color: var(--dark-gold); }

.card-cat-photo-tag {
    position: absolute;
    bottom: 6px;
    right: 6px;
    font-family: var(--font-sans);
    font-size: clamp(0.46rem, 1.3vw, 0.54rem);
    font-weight: 700;
    color: var(--dark-gold);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(138, 104, 31, 0.38);
    border-radius: 4px;
    padding: 2px 5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 2;
    pointer-events: none;
}

/* ── Share Icon Button on Product Photo (Directly above Category Tag) ── */
.card-share-btn {
    position: absolute;
    bottom: 28px;
    right: 6px;
    width: clamp(22px, 6.8vw, 28px);
    height: clamp(22px, 6.8vw, 28px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(138, 104, 31, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gold);
    cursor: pointer;
    z-index: 3;
    transition: all var(--transition);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.card-share-btn:hover, .card-share-btn:active {
    background: var(--dark-gold);
    color: #FFFFFF;
    border-color: var(--dark-gold);
    transform: scale(1.1);
}
.card-share-btn svg {
    width: clamp(10px, 3vw, 13px);
    height: clamp(10px, 3vw, 13px);
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
}

.card-info-text-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(0.54rem, 1.6vw, 0.64rem);
    color: var(--mid-text);
    font-weight: 600;
    margin: 1px 0 3px;
    gap: 4px;
    white-space: nowrap;
}
.card-colors-text {
    color: var(--dark-gold);
    font-weight: 700;
    font-size: inherit;
    white-space: nowrap;
}
.card-sizes-text {
    color: var(--light-text);
    font-size: inherit;
    white-space: nowrap;
}

.card-price-row {
    display: flex;
    align-items: baseline;
    gap: clamp(3px, 1.2vw, 6px);
    margin-top: auto;
    padding-top: 2px;
    flex-wrap: wrap;
}
.card-price {
    font-family: var(--font-sans);
    font-size: clamp(0.78rem, 2.3vw, 0.90rem);
    font-weight: 700;
    color: var(--dark-gold);
}
.card-old-price {
    font-size: clamp(0.60rem, 1.7vw, 0.68rem);
    color: var(--light-text);
    text-decoration: line-through;
}
.card-price-discount {
    font-size: clamp(0.48rem, 1.4vw, 0.56rem);
    font-weight: 700;
    color: #2E7D32;
    background: #E8F5E9;
    padding: 1.5px 4.5px;
    border-radius: 3px;
    margin-left: auto;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   MYNTRA-STYLE QUICK VIEW MODAL & DESKTOP STYLES
════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(20, 18, 14, 0.68);
    z-index: 3000;
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.quick-modal {
    width: 100%; max-width: 500px; background: var(--off-white);
    border-radius: 20px 20px 0 0;
    transform: translateY(100%) scale(0.96);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
    position: relative;
}
.modal-overlay.open .quick-modal { transform: translateY(0) scale(1); }

@media (min-width: 1024px) {
    .modal-overlay {
        align-items: center;
        padding: 40px 20px;
    }
    .quick-modal {
        max-width: 860px;
        border-radius: 16px;
        transform: scale(0.92);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.3s ease;
        max-height: 86vh;
        border: 1px solid var(--soft-platinum);
    }
    .modal-overlay.open .quick-modal {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-handle { width: 36px; height: 4px; background: var(--soft-platinum); border-radius: 2px; margin: 12px auto 4px; }
@media (min-width: 1024px) { .modal-handle { display: none; } }

.modal-close-btn {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--soft-platinum); background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    color: var(--mid-text); cursor: pointer; transition: all var(--transition);
    z-index: 10;
}
.modal-close-btn:hover { border-color: var(--dark-gold); color: var(--dark-gold); transform: rotate(90deg); }
.modal-close-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

.modal-content { padding: 20px 20px 30px; position: relative; }
@media (min-width: 1024px) {
    .modal-content {
        padding: 32px 36px;
        display: grid;
        grid-template-columns: 340px 1fr;
        gap: 32px;
        align-items: center;
    }
}

.modal-image-wrap {
    border-radius: 12px; overflow: hidden;
    background: var(--off-white-2); aspect-ratio: 3/4;
    position: relative; box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.modal-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.modal-badge-tag {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px; border-radius: 4px;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--dark-gold); color: var(--off-white);
}

.modal-details {
    display: flex; flex-direction: column; gap: 10px; text-align: left;
}

.modal-brand-name {
    font-size: 0.72rem; font-weight: 700; color: var(--dark-gold);
    letter-spacing: 0.22em; text-transform: uppercase;
}
.modal-name {
    font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600;
    color: var(--dark-text); line-height: 1.25; margin-top: -2px;
}

/* Myntra Rating Box Pill */
.modal-rating-box {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 4px;
    border: 1px solid var(--soft-platinum);
    background: var(--off-white-2); width: fit-content;
    font-size: 0.73rem; font-weight: 600; color: var(--dark-text);
}
.m-rating-num { color: var(--dark-gold); font-weight: 700; }
.m-rating-sep { color: var(--platinum); font-size: 0.7rem; }
.m-rating-count { color: var(--mid-text); font-weight: 500; font-size: 0.7rem; }

.modal-divider { width: 100%; height: 1px; background: var(--soft-platinum); margin: 2px 0; }

/* Myntra Price Block */
.modal-price-block { display: flex; flex-direction: column; gap: 2px; }
.modal-price-row { display: flex; align-items: baseline; gap: 10px; }
.modal-price { font-size: 1.45rem; font-weight: 700; color: var(--dark-text); font-family: var(--font-sans); }
.modal-mrp { font-size: 0.85rem; color: var(--light-text); font-weight: 500; }
.modal-old-price { text-decoration: line-through; }
.modal-discount-tag { font-size: 0.85rem; font-weight: 700; color: #C07B39; letter-spacing: 0.04em; }
.modal-tax-note { font-size: 0.68rem; font-weight: 600; color: #2E7D32; letter-spacing: 0.05em; text-transform: uppercase; }

/* Myntra Size Selection */
.modal-size-section { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.modal-size-header { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 0.75rem; font-weight: 700; color: var(--dark-text); letter-spacing: 0.12em; text-transform: uppercase; }
.modal-product-details-btn {
    font-size: 0.68rem;
    color: var(--dark-gold);
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
    margin-left: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.modal-product-details-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--dark-gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
    transform-origin: left;
}
.modal-product-details-btn:hover {
    color: var(--deep-gold);
    transform: translateX(2px);
}
.modal-product-details-btn:hover::after {
    background: var(--deep-gold);
    transform: scaleX(1.1);
}
.modal-product-details-btn:active {
    transform: scale(0.96);
}
.modal-size-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.m-size-btn {
    min-width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid var(--soft-platinum); background: var(--off-white);
    font-size: 0.75rem; font-weight: 700; color: var(--dark-text);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--transition);
    padding: 0 10px;
}
.m-size-btn:hover { border-color: var(--dark-gold); color: var(--dark-gold); }
.m-size-btn.active { border-color: var(--dark-gold); background: var(--dark-gold); color: var(--off-white); box-shadow: 0 2px 8px rgba(138,104,31,0.25); }

/* Myntra Dual Action Buttons (Add to Bag + Wishlist) */
.modal-actions-myntra { display: flex; gap: 12px; margin-top: 8px; }
.modal-add-bag-btn {
    flex: 2; padding: 14px 16px; border-radius: 6px;
    background: var(--dark-gold); color: var(--off-white);
    font-family: var(--font-sans); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: all var(--transition); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.modal-add-bag-btn:hover { background: var(--deep-gold); box-shadow: 0 4px 18px rgba(138,104,31,0.32); }
.modal-add-bag-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

.modal-wishlist-btn {
    flex: 1; padding: 14px 14px; border-radius: 6px;
    background: var(--off-white); color: var(--dark-text);
    border: 1.5px solid var(--soft-platinum);
    font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    transition: all var(--transition); cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.modal-wishlist-btn:hover { border-color: var(--dark-gold); color: var(--dark-gold); background: var(--gold-pale); }
.modal-wishlist-btn.active { border-color: #E53935; color: #E53935; background: #FDE8E8; }
.modal-wishlist-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.modal-wishlist-btn.active svg { fill: #E53935; }

/* Myntra Delivery Perks */
.modal-perks { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; padding-top: 10px; border-top: 1px dashed var(--soft-platinum); }
.m-perk-item { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--mid-text); font-weight: 500; }
.m-perk-item svg { width: 14px; height: 14px; stroke: var(--dark-gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── Luxury Product Details Modal (Gold Theme & Line Accents) ── */
.product-details-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000; opacity: 0; visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); padding: 16px;
}
.product-details-backdrop.active { opacity: 1; visibility: visible; }
.product-details-content {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF6EE 100%); width: 100%; max-width: 560px;
    border-radius: 16px; border: 1.5px solid rgba(138,104,31,0.35);
    border-top: 4px solid var(--dark-gold);
    box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 20px rgba(138,104,31,0.15); overflow: hidden;
    transform: translateY(24px) scale(0.96); transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-details-backdrop.active .product-details-content { transform: translateY(0) scale(1); }
.pd-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; border-bottom: 2px solid var(--dark-gold);
    background: #FFFFFF;
}
.pd-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--dark-gold); font-weight: 700; margin: 0; letter-spacing: 0.04em; }
.pd-subtitle { font-size: 0.68rem; color: var(--mid-text); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-top: 2px; }
.pd-close-btn { background: none; border: none; font-size: 1.6rem; color: var(--dark-gold); cursor: pointer; transition: all 0.25s; line-height: 1; padding: 0 4px; }
.pd-close-btn:hover { color: var(--dark-text); transform: scale(1.15) rotate(90deg); }
.pd-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; max-height: 80vh; overflow-y: auto; }

.pd-hero-box { display: flex; gap: 16px; background: #FFFFFF; padding: 16px; border-radius: 12px; border: 1px solid rgba(138,104,31,0.25); border-left: 3px solid var(--dark-gold); align-items: center; box-shadow: 0 4px 12px rgba(138,104,31,0.06); }
.pd-hero-img { width: 92px; height: 118px; object-fit: cover; border-radius: 8px; border: 1.5px solid rgba(138,104,31,0.25); flex-shrink: 0; }
.pd-hero-info { display: flex; flex-direction: column; gap: 7px; flex: 1; }

.pd-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pd-price { font-size: 1.4rem; font-weight: 800; color: var(--dark-gold); font-family: var(--font-sans); }
.pd-old-price { font-size: 0.82rem; color: var(--light-text); text-decoration: line-through; }
.pd-tag { font-size: 0.68rem; font-weight: 700; color: #8A681F; background: #FAF3E0; padding: 3px 10px; border-radius: 12px; border: 1px solid rgba(138,104,31,0.35); }

.pd-meta-row { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; flex-wrap: wrap; }
.pd-meta-label { font-weight: 700; color: var(--dark-gold); text-transform: uppercase; font-size: 0.65rem; letter-spacing: 0.08em; }
.pd-size-pills { display: flex; gap: 5px; flex-wrap: wrap; }
.pd-size-pill { font-size: 0.65rem; font-weight: 700; background: #FAF3E0; color: var(--dark-gold); padding: 3px 10px; border-radius: 12px; border: 1px solid rgba(138,104,31,0.3); }
.pd-color-badge { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--dark-text); }
.pd-color-dot { width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.25); display: inline-block; box-shadow: 0 0 4px rgba(0,0,0,0.2); }

.pd-desc-box { background: #FFFFFF; padding: 16px; border-radius: 12px; border: 1px solid rgba(138,104,31,0.25); border-left: 3px solid var(--dark-gold); }
.pd-section-title { font-size: 0.8rem; font-weight: 700; color: var(--dark-gold); text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 8px; border-bottom: 1.5px solid rgba(138,104,31,0.2); padding-bottom: 5px; }
.pd-full-desc { font-size: 0.8rem; color: var(--dark-text); margin: 0; line-height: 1.65; }

.pd-specs-section { background: #FFFFFF; padding: 16px; border-radius: 12px; border: 1px solid rgba(138,104,31,0.25); border-left: 3px solid var(--dark-gold); }
.pd-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pd-spec-item { display: flex; flex-direction: column; gap: 2px; }
.pd-spec-label { font-size: 0.65rem; color: var(--dark-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pd-spec-val { font-size: 0.8rem; color: var(--dark-text); font-weight: 600; }
.pd-assurance-box { display: flex; flex-direction: column; gap: 9px; background: rgba(138,104,31,0.06); border: 1.5px solid rgba(138,104,31,0.25); border-radius: 12px; padding: 14px 16px; }
.pd-assure-item { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: var(--dark-text); font-weight: 700; }
.pd-assure-item svg { width: 15px; height: 15px; stroke: var(--dark-gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── Cart Drawer & Wishlist Drawer Modals ── */
.cart-drawer-backdrop, .wishlist-drawer-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: flex-end;
    z-index: 999999 !important; opacity: 0; visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer-backdrop.active, .wishlist-drawer-backdrop.active { opacity: 1; visibility: visible; }

.cart-drawer-content, .wishlist-drawer-content {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF6EE 100%);
    width: 100%; max-width: 440px; height: 100%;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid var(--dark-gold);
}
.cart-drawer-backdrop.active .cart-drawer-content,
.wishlist-drawer-backdrop.active .wishlist-drawer-content {
    transform: translateX(0);
}

.cd-header, .wd-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 2px solid var(--dark-gold); background: #FFFFFF; }
.cd-title, .wd-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--dark-gold); font-weight: 700; margin: 0; }
.cd-subtitle, .wd-subtitle { font-size: 0.68rem; color: var(--mid-text); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-top: 2px; }
.cd-close-btn, .wd-close-btn { background: none; border: none; font-size: 1.6rem; color: var(--dark-gold); cursor: pointer; transition: all 0.2s; line-height: 1; }
.cd-close-btn:hover, .wd-close-btn:hover { color: var(--dark-text); transform: rotate(90deg); }

.cd-body, .wd-body { padding: 18px 22px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }

.cd-item, .wd-item { display: flex; gap: 14px; background: #FFFFFF; padding: 12px; border-radius: 12px; border: 1px solid rgba(138,104,31,0.2); align-items: center; }
.cd-item-img, .wd-item-img { width: 72px; height: 94px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(138,104,31,0.2); flex-shrink: 0; }
.cd-item-info, .wd-item-info { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.cd-item-title, .wd-item-title { font-family: var(--font-serif); font-size: 0.92rem; font-weight: 700; color: var(--dark-text); margin: 0; }
.cd-item-meta, .wd-item-meta { font-size: 0.7rem; color: var(--mid-text); font-weight: 500; }
.cd-price-row { display: flex; align-items: baseline; gap: 8px; }
.cd-item-price, .wd-item-price { font-size: 0.95rem; font-weight: 800; color: var(--dark-gold); }
.cd-item-old, .wd-item-old { font-size: 0.75rem; color: var(--light-text); text-decoration: line-through; }

.cd-qty-wrap { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.cd-qty-btn { width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--dark-gold); background: #FAF3E0; color: var(--dark-gold); font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.cd-qty-num { font-size: 0.8rem; font-weight: 700; color: var(--dark-text); min-width: 16px; text-align: center; }
.cd-remove-btn, .wd-remove-btn { border: none; background: none; color: #E53935; font-size: 0.72rem; font-weight: 600; cursor: pointer; margin-left: auto; }
.wd-actions { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.wd-move-bag-btn { padding: 6px 12px; border-radius: 6px; background: var(--dark-gold); color: #FFF; border: none; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; cursor: pointer; }

.cd-footer { padding: 18px 22px; border-top: 2px solid var(--dark-gold); background: #FFFFFF; display: flex; flex-direction: column; gap: 10px; }
.cd-summary-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; font-weight: 700; color: var(--dark-text); }
.cd-total-val { font-size: 1.2rem; color: var(--dark-gold); }
.cd-shipping { font-size: 0.75rem; color: var(--mid-text); font-weight: 500; }
.cd-free-txt { color: #2E7D32; font-weight: 700; }
.cd-checkout-btn { width: 100%; padding: 14px; border-radius: 8px; background: var(--dark-gold); color: #FFF; border: none; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 14px rgba(138,104,31,0.25); }
.cd-checkout-btn:hover { background: var(--deep-gold); }

.modal-content { padding: 20px 20px 30px; position: relative; }
@media (min-width: 1024px) {
    .modal-content {
        padding: 32px 36px;
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 28px;
        align-items: center;
    }
}

.modal-image-wrap {
    border-radius: 12px; overflow: hidden;
    background: var(--off-white-2); aspect-ratio: 3/4;
    position: relative; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.modal-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.modal-desc { font-size: 0.8rem; color: var(--mid-text); line-height: 1.65; margin-bottom: 18px; }
.modal-atc-btn {
    width: 100%; padding: 13px; border-radius: 8px;
    background: var(--dark-gold); color: var(--off-white);
    font-family: var(--font-sans); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.modal-atc-btn:hover { background: var(--deep-gold); }
.modal-atc-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── Luxury Designer Notification Toast Suite ── */
.ws-toast-container,
.toast-container {
    position: fixed !important;
    bottom: calc(var(--bottom-bar-h, 60px) + 16px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    pointer-events: none !important;
    width: auto !important;
    max-width: min(92vw, 440px) !important;
}

.ws-toast,
.toast {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 245, 235, 0.98) 100%) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important;
    color: #1C1917 !important;
    padding: 10px 14px 10px 12px !important;
    border-radius: 20px !important;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    box-shadow: 0 12px 36px rgba(138, 104, 31, 0.18), 0 4px 12px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    pointer-events: auto !important;
    animation: luxuryToastEntrance 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: normal !important;
    max-width: 100% !important;
}

@keyframes luxuryToastEntrance {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.92);
    }
    70% {
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ws-toast.hide,
.toast.hide {
    opacity: 0 !important;
    transform: translateY(12px) scale(0.92) !important;
}

/* Animated Icon Badge Pill */
.ws-toast-icon-badge,
.toast-icon-badge {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 8px rgba(138, 104, 31, 0.15) !important;
}

.ws-toast-icon-badge.badge-cart,
.toast-icon-badge.badge-cart {
    background: linear-gradient(135deg, #FAF5E8 0%, #F5ECCE 100%) !important;
    border: 1.2px solid rgba(212, 175, 55, 0.6) !important;
    color: #8A681F !important;
}

.ws-toast-icon-badge.badge-wishlist,
.toast-icon-badge.badge-wishlist {
    background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%) !important;
    border: 1.2px solid rgba(244, 63, 94, 0.4) !important;
    color: #E11D48 !important;
}

.ws-toast-icon-badge.badge-filter,
.toast-icon-badge.badge-filter {
    background: linear-gradient(135deg, #FAF5E8 0%, #FDF4DC 100%) !important;
    border: 1.2px solid rgba(212, 175, 55, 0.6) !important;
    color: #8A681F !important;
}

.ws-toast-icon-badge.badge-success,
.toast-icon-badge.badge-success {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%) !important;
    border: 1.2px solid rgba(34, 197, 94, 0.4) !important;
    color: #15803D !important;
}

.ws-toast-icon-badge.badge-order,
.toast-icon-badge.badge-order {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%) !important;
    border: 1.2px solid rgba(59, 130, 246, 0.4) !important;
    color: #1D4ED8 !important;
}

/* SVG Icon Micro-Animations */
.toast-svg-cart {
    width: 17px !important;
    height: 17px !important;
    stroke: #8A681F !important;
    animation: toastCartBounce 1.4s infinite ease-in-out !important;
}
@keyframes toastCartBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2.5px) scale(1.08); }
}

.toast-svg-heart {
    width: 17px !important;
    height: 17px !important;
    fill: #E11D48 !important;
    stroke: #BE123C !important;
    animation: toastHeartPulse 1.2s infinite cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
@keyframes toastHeartPulse {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.22); }
    28% { transform: scale(1.05); }
    42% { transform: scale(1.18); }
    70% { transform: scale(1); }
}

.toast-svg-sparkle {
    width: 17px !important;
    height: 17px !important;
    stroke: #8A681F !important;
    animation: toastSparkleSpin 3s infinite linear !important;
}
@keyframes toastSparkleSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.12); }
    100% { transform: rotate(360deg) scale(1); }
}

.toast-svg-check {
    width: 17px !important;
    height: 17px !important;
    stroke: #15803D !important;
    animation: toastCheckPop 0.5s ease forwards !important;
}
@keyframes toastCheckPop {
    0% { transform: scale(0.6); opacity: 0; }
    70% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.toast-svg-package {
    width: 17px !important;
    height: 17px !important;
    stroke: #1D4ED8 !important;
    animation: toastPackageFloat 1.6s infinite ease-in-out !important;
}
@keyframes toastPackageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* Toast Content Message */
.ws-toast-msg,
.toast-msg {
    color: #1C1917 !important;
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    flex: 1 !important;
}
.ws-toast-msg strong,
.toast-msg strong {
    color: var(--gold-deep, #5A4210) !important;
}

/* 1-Tap Dismiss Button */
.ws-toast-close-btn,
.toast-close-btn {
    background: transparent !important;
    border: none !important;
    color: #8C827A !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 4px !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
}
.ws-toast-close-btn:hover,
.toast-close-btn:hover {
    background: rgba(138, 104, 31, 0.12) !important;
    color: #5A4210 !important;
    transform: scale(1.1) !important;
}

/* Shimmering Progress Countdown Line */
.ws-toast-progress,
.toast-progress {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 2.5px !important;
    width: 100% !important;
    background: linear-gradient(90deg, #D4AF37 0%, #8A681F 50%, #E6CA65 100%) !important;
    transform-origin: left !important;
    animation: toastDrainProgress var(--toast-duration, 3.2s) linear forwards !important;
}
@keyframes toastDrainProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* ═════════════════════════════════════════════════════════════════════
   31 HOME PAGE SECTIONS — LUXURY MEESHO-STYLE STOREFRONT SUITE
═════════════════════════════════════════════════════════════════════ */

/* ── Section Container & Shared Headers ── */
.home-section-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(10px, 2.5vw, 24px);
}

.home-section {
    padding: clamp(24px, 4vw, 44px) 0;
    position: relative;
}

.home-section-soft-bg {
    background: #FAF8F4;
    border-top: 1px solid rgba(138, 104, 31, 0.12);
    border-bottom: 1px solid rgba(138, 104, 31, 0.12);
}

.home-section-gold-bg {
    background: linear-gradient(180deg, #FEFAF0 0%, #FAF5E8 100%);
    border-top: 1.5px solid rgba(212, 175, 55, 0.35);
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.35);
}

.home-section-dark-gold {
    background: linear-gradient(135deg, #1E1B18 0%, #2A241C 50%, #1A1612 100%);
    border-top: 2px solid #8A681F;
    border-bottom: 2px solid #8A681F;
    color: #FFF9EE;
}

.home-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: clamp(14px, 2.5vw, 24px);
    gap: 12px;
    flex-wrap: wrap;
}

.home-section-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--dark-gold, #8A681F);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.home-section-tag.gold-tag {
    background: #FEF3C7;
    color: #92400E;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #FDE68A;
}

.home-section-tag.dark-gold-tag {
    background: rgba(212, 175, 55, 0.2);
    color: #FFE699;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.home-section-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: clamp(1.15rem, 2.8vw, 1.65rem);
    font-weight: 700;
    color: var(--dark-text, #1E1B18);
    line-height: 1.25;
}

.home-section-desc {
    font-size: clamp(0.76rem, 1.6vw, 0.86rem);
    color: var(--mid-text, #5A5348);
    margin-top: 4px;
    max-width: 680px;
    line-height: 1.45;
}

.home-section-sub-link {
    font-size: 0.80rem;
    font-weight: 800;
    color: var(--dark-gold, #8A681F);
    cursor: pointer;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.home-section-sub-link:hover {
    color: var(--deep-gold, #6F5218);
    text-decoration: underline;
}

.home-btn-gold {
    background: linear-gradient(135deg, #8A681F 0%, #6F5218 100%);
    color: #FFFFFF !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(138, 104, 31, 0.25);
    transition: all 0.2s ease;
}

.home-btn-gold:hover {
    background: linear-gradient(135deg, #9C7726 0%, #805E1C 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(138, 104, 31, 0.35);
}

.home-btn-white-gold {
    background: #FFFFFF;
    color: #8A681F !important;
    border: 1.5px solid #D4AF37;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.home-btn-white-gold:hover {
    background: #FEFAF0;
    transform: translateY(-1px);
}

/* ── Section 2: Category Navigation Strip (Integrated Inside Sticky Header) ── */
.home-cat-nav-bar {
    background: #FFFFFF;
    border-top: 1px solid rgba(138, 104, 31, 0.12);
    border-bottom: 1.5px solid var(--soft-platinum, #E5E3DE);
    padding: 6px 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ── Mobile Home Header: Completely Remove Search Bar & Search Trigger ── */
@media (max-width: 767px) {
    .shop-header .mobile-search-trigger-btn,
    .shop-header #mobileSearchTriggerBtn,
    .shop-header .mobile-full-search-bar,
    .shop-header #mobileFullSearchBar,
    .shop-header .header-search-bar,
    .shop-header #headerSearchBar {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    .shop-header .header-normal-view {
        display: flex !important;
        height: 52px;
        padding: 0 14px;
    }
}

.home-cat-nav-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px clamp(10px, 2.5vw, 24px);
    white-space: nowrap;
}

.home-cat-nav-scroll::-webkit-scrollbar {
    display: none;
}

.home-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #FAF8F4;
    border: 1px solid rgba(138, 104, 31, 0.2);
    font-size: 0.76rem;
    font-weight: 700;
    color: #2C251E;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.home-cat-pill:hover,
.home-cat-pill.active {
    background: linear-gradient(135deg, #8A681F 0%, #6F5218 100%);
    color: #FFFFFF !important;
    border-color: #6F5218;
    box-shadow: 0 2px 8px rgba(138, 104, 31, 0.25);
}

.home-cat-pill.hot-pill {
    border-color: #F87171;
    background: #FEF2F2;
    color: #991B1B;
}

.home-cat-pill.offer-pill {
    border-color: #FBBF24;
    background: #FFFBEB;
    color: #92400E;
}

.home-cat-pill.reseller-pill {
    border-color: #34D399;
    background: #ECFDF5;
    color: #065F46;
}

.home-cat-pill.wholesale-pill {
    border-color: #60A5FA;
    background: #EFF6FF;
    color: #1E40AF;
}

/* ── Section 3: Hero Slide Buttons ── */
.hero-slide-btn-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: clamp(8px, 1.5vw, 14px);
    flex-wrap: wrap;
}

.hero-slide-btn-alt {
    padding: clamp(6px, 1.2vw, 9px) clamp(12px, 2vw, 18px);
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid #8A681F;
    border-radius: 6px;
    color: #8A681F;
    font-size: clamp(0.70rem, 1.4vw, 0.80rem);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-slide-btn-alt:hover {
    background: #FFFFFF;
    transform: translateY(-1px);
}

/* ═════════════════════════════════════════════════════════════════════
   SECTION 2: QUICK ACCESS BAR (ULTRA-LUXURY & 2-COLUMN RESPONSIVE)
═════════════════════════════════════════════════════════════════════ */
.home-quick-access-section {
    padding: clamp(12px, 2vw, 18px) 0;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(138, 104, 31, 0.12);
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1.5px solid rgba(138, 104, 31, 0.18);
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F4 100%);
    box-shadow: 0 2px 8px rgba(138, 104, 31, 0.05);
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(138, 104, 31, 0.14);
    border-color: #8A681F;
    background: #FFFFFF;
}

/* Icon Container with Custom Gradients */
.quick-card-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.quick-card:hover .quick-card-icon-wrap {
    transform: scale(1.08);
}

.quick-card-icon-wrap.icon-shop {
    background: linear-gradient(135deg, #FFF5E6 0%, #FEEBC8 100%);
    color: #8A681F;
    border: 1px solid rgba(138, 104, 31, 0.25);
}

.quick-card-icon-wrap.icon-reseller {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.quick-card-icon-wrap.icon-wholesale {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #4F46E5;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.quick-card-icon-wrap.icon-offers {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.quick-card-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
}

/* Information Container */
.quick-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.quick-card-badge {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.quick-card-badge.badge-shop { color: #8A681F; }
.quick-card-badge.badge-reseller { color: #059669; }
.quick-card-badge.badge-wholesale { color: #4F46E5; }
.quick-card-badge.badge-offers { color: #DC2626; }

.quick-card-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--dark-text, #1E1B18);
    line-height: 1.25;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-card-sub {
    font-size: 0.68rem;
    color: var(--mid-text, #5A5348);
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Trailing Animated Arrow */
.quick-card-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(138, 104, 31, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gold, #8A681F);
    flex-shrink: 0;
    margin-left: auto;
    transition: all 0.22s ease;
}

.quick-card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.quick-card:hover .quick-card-arrow {
    background: #8A681F;
    color: #FFFFFF;
    transform: translateX(3px);
}

/* Tablet & Mobile: Exactly 2 cards per row (1 line has 2 cards) */
@media (max-width: 900px) {
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
    .quick-card {
        padding: 9px 10px;
        gap: 8px;
        border-radius: 12px;
    }
    .quick-card-icon-wrap {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }
    .quick-card-svg {
        width: 17px;
        height: 17px;
    }
    .quick-card-badge {
        font-size: 0.52rem;
        margin-bottom: 1px;
    }
    .quick-card-title {
        font-size: 0.78rem;
        margin-bottom: 1px;
    }
    .quick-card-sub {
        font-size: 0.60rem;
    }
    .quick-card-arrow {
        width: 20px;
        height: 20px;
    }
    .quick-card-arrow svg {
        width: 11px;
        height: 11px;
    }
}

/* ═════════════════════════════════════════════════════════════════════
   SECTION 5: SHOP BY CATEGORY (SMART LUXURY SCROLL RAIL & CAROUSEL)
═════════════════════════════════════════════════════════════════════ */
.home-category-section {
    position: relative;
    padding: clamp(20px, 3.5vw, 36px) 0 clamp(16px, 2.5vw, 26px);
    background: #FAF8F4;
    border-top: 1px solid rgba(138, 104, 31, 0.12);
    border-bottom: 1px solid rgba(138, 104, 31, 0.12);
}

.home-cat-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: clamp(14px, 2vw, 22px);
    flex-wrap: wrap;
}

.home-section-subtitle {
    font-size: clamp(0.72rem, 1.8vw, 0.84rem);
    color: var(--mid-text, #5A5348);
    font-weight: 500;
    margin-top: 4px;
    max-width: 620px;
    line-height: 1.4;
}

.home-cat-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.home-cat-arrows-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-cat-scroll-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid var(--soft-platinum, #E5E3DE);
    color: var(--dark-gold, #8A681F);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(138, 104, 31, 0.08);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    flex-shrink: 0;
}

.home-cat-scroll-arrow:hover:not(:disabled) {
    background: linear-gradient(135deg, #8A681F 0%, #6F5218 100%);
    color: #FFFFFF;
    border-color: #8A681F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(138, 104, 31, 0.25);
}

.home-cat-scroll-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.home-cat-scroll-arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.4;
    fill: none;
}

/* ── Smart Carousel Track ── */
.home-cat-carousel-wrap {
    position: relative;
    width: 100%;
}

.home-cat-scroll-track {
    display: flex;
    gap: clamp(12px, 1.8vw, 18px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 4px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.home-cat-scroll-track::-webkit-scrollbar {
    display: none;
}

/* ── Category Card Styling ── */
.home-cat-card {
    flex: 0 0 clamp(155px, 22vw, 195px);
    max-width: 210px;
    background: #FFFFFF;
    border: 1.5px solid rgba(138, 104, 31, 0.2);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    scroll-snap-align: start;
    box-shadow: 0 4px 14px rgba(138, 104, 31, 0.07);
    display: flex;
    flex-direction: column;
    position: relative;
    user-select: none;
}

.home-cat-card:hover,
.home-cat-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--dark-gold, #8A681F);
    box-shadow: 0 14px 32px rgba(138, 104, 31, 0.18);
}

.home-cat-card:active {
    transform: scale(0.97);
}

/* Card Image & Vignette */
.home-cat-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4.8;
    overflow: hidden;
    background: #F4EFE6;
}

.home-cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-cat-card:hover .home-cat-card-img {
    transform: scale(1.09);
}

.home-cat-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 40%, rgba(20, 16, 12, 0.62) 100%);
    pointer-events: none;
}

/* Floating Badges */
.home-cat-floating-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(24, 20, 16, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #F8D67A;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 2px 7px;
    border-radius: 20px;
    border: 1px solid rgba(248, 214, 122, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.home-cat-icon-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(4px);
    border: 1.5px solid rgba(138, 104, 31, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
    transition: transform 0.25s ease;
}

.home-cat-card:hover .home-cat-icon-badge {
    transform: rotate(12deg) scale(1.1);
}

/* Starting Price Pill */
.home-cat-price-chip {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: linear-gradient(135deg, #FAF5E8 0%, #FFFFFF 100%);
    border: 1px solid rgba(138, 104, 31, 0.4);
    color: #6F5218;
    font-size: 0.64rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Card Body */
.home-cat-card-body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    background: #FFFFFF;
}

.home-cat-card-name {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 0.92rem;
    font-weight: 800;
    color: #1E1B18;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.home-cat-card:hover .home-cat-card-name {
    color: var(--dark-gold, #8A681F);
}

.home-cat-card-tagline {
    font-size: 0.65rem;
    color: var(--light-text, #8C827A);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.home-cat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed rgba(138, 104, 31, 0.18);
}

.home-cat-card-count {
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--dark-gold, #8A681F);
    background: #FAF5E8;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(138, 104, 31, 0.18);
}

.home-cat-explore-btn {
    font-size: 0.66rem;
    font-weight: 800;
    color: var(--mid-text, #5A5348);
    transition: all 0.2s ease;
}

.home-cat-card:hover .home-cat-explore-btn {
    color: var(--dark-gold, #8A681F);
    transform: translateX(2px);
}

/* Custom Thin Gold Scrollbar Track */
.home-cat-scrollbar-track {
    width: min(320px, 60%);
    height: 3px;
    background: rgba(138, 104, 31, 0.15);
    border-radius: 3px;
    margin: 4px auto 0;
    overflow: hidden;
    position: relative;
}

.home-cat-scrollbar-thumb {
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, #8A681F, #D4AF37);
    border-radius: 3px;
    transition: transform 0.1s ease-out;
}

@media (max-width: 767px) {
    .home-category-section {
        padding: 16px 0 12px;
    }
    .home-cat-card {
        flex: 0 0 135px;
        max-width: 140px;
        border-radius: 12px;
    }
    .home-cat-card-body {
        padding: 6px 8px 8px;
    }
    .home-cat-card-name {
        font-size: 0.78rem;
    }
    .home-cat-card-tagline {
        display: none;
    }
    .home-cat-card-footer {
        margin-top: 2px;
        padding-top: 4px;
    }
    .home-cat-card-count {
        font-size: 0.58rem;
        padding: 1px 4px;
    }
    .home-cat-explore-btn {
        font-size: 0.58rem;
    }
    .home-cat-arrows-group {
        display: none;
    }
    .home-cat-scrollbar-track {
        width: 140px;
    }
}

/* ── Section 6: Main Product Card Rating & Actions ── */
.card-sku-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.card-sku-text {
    font-size: 0.62rem;
    font-weight: 800;
    color: #78716C;
}

.card-rating-badge {
    font-size: 0.62rem;
    font-weight: 800;
    color: #059669;
    background: #ECFDF5;
    padding: 1px 5px;
    border-radius: 4px;
    border: 1px solid #A7F3D0;
}

.card-btn-row {
    margin-top: 8px;
}

.card-add-cart-btn {
    width: 100%;
    height: 32px;
    background: linear-gradient(135deg, #8A681F 0%, #6F5218 100%);
    color: #FFFFFF;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.card-add-cart-btn:hover {
    background: linear-gradient(135deg, #9C7726 0%, #805E1C 100%);
    transform: translateY(-1px);
}

/* ── Section 7: Reseller Special Grid ── */
.home-reseller-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home-reseller-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(138, 104, 31, 0.08);
    transition: all 0.25s ease;
}

.home-reseller-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(138, 104, 31, 0.16);
    border-color: #8A681F;
}

.home-reseller-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #FAF8F4;
    overflow: hidden;
}

.home-reseller-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reseller-margin-pill {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.home-reseller-card-body {
    padding: 10px 12px 14px;
}

.home-reseller-sku-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.reseller-sku-badge {
    font-size: 0.62rem;
    font-weight: 800;
    color: #8A681F;
    background: #FEF3C7;
    padding: 1px 6px;
    border-radius: 4px;
}

.reseller-stock-text {
    font-size: 0.62rem;
    font-weight: 700;
    color: #059669;
}

.home-reseller-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--dark-text, #1E1B18);
    line-height: 1.25;
    min-height: 2.1em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.home-reseller-pricing-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FEFAF0;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    padding: 6px 8px;
    margin-bottom: 10px;
}

.reseller-price-col {
    display: flex;
    flex-direction: column;
}

.r-lbl {
    font-size: 0.54rem;
    font-weight: 700;
    color: #78716C;
    text-transform: uppercase;
}

.r-val-cost {
    font-size: 0.78rem;
    font-weight: 800;
    color: #44403C;
}

.r-val-sell {
    font-size: 0.78rem;
    font-weight: 800;
    color: #8A681F;
}

.r-val-profit {
    font-size: 0.82rem;
    font-weight: 900;
    color: #059669;
}

.reseller-sep {
    color: #D4AF37;
    font-weight: 800;
    font-size: 0.74rem;
}

.home-reseller-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.reseller-btn-wa {
    height: 32px;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.reseller-btn-wa:hover {
    background: #D1FAE5;
}

.reseller-btn-order {
    height: 32px;
    background: linear-gradient(135deg, #8A681F 0%, #6F5218 100%);
    color: #FFFFFF !important;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.reseller-btn-order:hover {
    background: linear-gradient(135deg, #9C7726 0%, #805E1C 100%);
}

/* ── Section 8: High Margin Strips ── */
.high-margin-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.high-margin-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1.5px solid rgba(138, 104, 31, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.2s ease;
}

.high-margin-strip:hover {
    border-color: #8A681F;
    box-shadow: 0 4px 14px rgba(138, 104, 31, 0.1);
}

.hm-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #EAE0C8;
    flex-shrink: 0;
}

.hm-info {
    flex: 1;
}

.hm-sku {
    font-size: 0.64rem;
    font-weight: 800;
    color: #8A681F;
}

.hm-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--dark-text, #1E1B18);
    margin-top: 1px;
}

.hm-math-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
    font-size: 0.74rem;
    color: #5A5348;
}

.hm-arrow {
    color: #8A681F;
    font-weight: 800;
}

.hm-profit-badge {
    background: #ECFDF5;
    color: #059669;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #A7F3D0;
}

/* ── Section 9: Ready to Share Grid ── */
.ready-share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ready-share-card {
    background: #FFFFFF;
    border: 1px solid rgba(138, 104, 31, 0.18);
    border-radius: 12px;
    overflow: hidden;
}

.ready-share-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.ready-share-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ready-share-float-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #FFFFFF;
    border: 1.5px solid #25D366;
    color: #065F46;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.ready-share-float-btn:hover {
    background: #25D366;
    color: #FFFFFF;
}

.ready-share-body {
    padding: 8px 10px 10px;
}

.ready-share-title {
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ready-share-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.70rem;
    margin-top: 3px;
    color: #5A5348;
}

.ready-share-profit {
    font-weight: 800;
    color: #059669;
}

/* ── Section 10: Reseller Promo Banner ── */
.home-banner-strip-section {
    padding: clamp(14px, 2vw, 20px) 0;
}

.reseller-promo-banner {
    background: linear-gradient(135deg, #FAF5E8 0%, #FEFAF0 50%, #F5EDD6 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 14px;
    padding: clamp(16px, 3vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: 0 6px 24px rgba(138, 104, 31, 0.1);
}

.rpb-tag {
    font-size: 0.66rem;
    font-weight: 800;
    color: #8A681F;
    letter-spacing: 0.08em;
}

.rpb-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #1E1B18;
    margin: 3px 0 10px;
}

.rpb-steps-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rpb-step {
    font-size: 0.76rem;
    font-weight: 700;
    color: #44403C;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rpb-step span {
    background: #8A681F;
    color: #FFFFFF;
    font-size: 0.60rem;
    font-weight: 900;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rpb-arrow {
    color: #D4AF37;
    font-weight: 800;
}

.rpb-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.rpb-btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.3);
}

.rpb-btn-secondary {
    background: #FFFFFF;
    border: 1px solid rgba(138, 104, 31, 0.3);
    color: #8A681F !important;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
}

/* ── Section 11: Deal of the Day ── */
.home-deal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.deal-tag {
    background: #FEF2F2;
    color: #DC2626;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #FECACA;
}

/* ═════════════════════════════════════════════════════════════════════
   SECTION 11: DEAL OF THE DAY (5 DESKTOP / 3 MOBILE 2-LINE GRID)
═════════════════════════════════════════════════════════════════════ */
.home-deals-section {
    background: linear-gradient(180deg, #FFFDF8 0%, #FAF6EE 100%);
    border-top: 1px solid rgba(138, 104, 31, 0.12);
    border-bottom: 1px solid rgba(138, 104, 31, 0.12);
    padding: clamp(20px, 3vw, 32px) 0;
}

.home-deal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: clamp(14px, 2vw, 22px);
    flex-wrap: wrap;
}

.deal-header-left .home-section-tag {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
    font-weight: 800;
}

.deal-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.deal-countdown-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1E1B18;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 30px;
}

.countdown-label {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #FFE699;
    text-transform: uppercase;
}

.countdown-digits {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: monospace;
    font-size: 0.88rem;
    font-weight: 900;
    color: #D4AF37;
}

.cd-box {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
}

.cd-box strong {
    font-size: 0.88rem;
    color: #FFF;
    background: rgba(255, 255, 255, 0.12);
    padding: 1px 4px;
    border-radius: 4px;
}

.cd-box small {
    font-size: 0.52rem;
    color: #D4AF37;
    margin-left: 2px;
}

.deal-slider-arrows {
    display: flex;
    align-items: center;
    gap: 6px;
}

.deal-nav-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(138, 104, 31, 0.3);
    background: #FFFFFF;
    color: var(--dark-gold, #8A681F);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.deal-nav-arrow:hover:not(:disabled) {
    background: #8A681F;
    color: #FFFFFF;
    border-color: #8A681F;
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(138, 104, 31, 0.25);
}

.deal-nav-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: rgba(0, 0, 0, 0.1);
    color: #9CA3AF;
}

/* Desktop: 1-Line Continuous Horizontal Scroll Rail */
.home-deals-grid,
.home-deals-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    width: 100% !important;
    padding: 4px 2px 14px 2px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.home-deals-grid::-webkit-scrollbar,
.home-deals-scroll::-webkit-scrollbar {
    display: none !important;
}

.home-deal-card {
    flex: 0 0 calc((100% - (4 * 14px)) / 5) !important;
    min-width: 0 !important;
    background: #FFFFFF;
    border: 1.5px solid rgba(138, 104, 31, 0.16);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start !important;
}

.home-deal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.12);
    border-color: #DC2626;
}

.deal-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    background: #FAF8F4;
    overflow: hidden;
}

.deal-card-badge-top {
    position: absolute;
    top: 6px;
    left: 6px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #FFFFFF;
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
    z-index: 2;
}

.deal-card-wish-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.deal-card-wish-btn svg {
    width: 13px;
    height: 13px;
    stroke: #5A5348;
    fill: none;
    stroke-width: 2;
}

.deal-card-wish-btn:hover svg {
    stroke: #DC2626;
    fill: #DC2626;
}

.deal-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.home-deal-card:hover .deal-card-img {
    transform: scale(1.06);
}

.deal-card-body {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.deal-sku-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.deal-sku-text {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--dark-gold, #8A681F);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.deal-rating-badge {
    font-size: 0.55rem;
    font-weight: 800;
    color: #B45309;
}

.deal-card-title {
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-card-title a {
    color: #1E1B18;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.15s ease;
}

.deal-card-title a:hover {
    color: #8A681F;
}

.deal-card-prices {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 4px;
}

.deal-sale-price {
    font-size: 0.86rem;
    font-weight: 900;
    color: #DC2626;
}

.deal-mrp {
    font-size: 0.66rem;
    color: #8A847A;
    text-decoration: line-through;
}

.deal-stock-bar-wrap {
    margin-bottom: 6px;
}

.deal-stock-bar {
    height: 3px;
    background: linear-gradient(90deg, #F87171, #DC2626);
    border-radius: 2px;
}

.deal-stock-text {
    font-size: 0.54rem;
    font-weight: 700;
    color: #DC2626;
    display: block;
    margin-top: 2px;
}

.deal-btn-claim {
    width: 100%;
    height: 28px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #FFFFFF;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: auto;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.25);
    transition: all 0.2s ease;
}

.deal-btn-claim:hover {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35);
}

/* Tablet: 4 visible cards in rail */
@media (max-width: 1100px) and (min-width: 768px) {
    .home-deal-card {
        flex: 0 0 calc((100% - (3 * 12px)) / 4) !important;
    }
}

/* Mobile: Exactly 2 Lines (Rows) Synchronized Horizontal Scrolling */
@media (max-width: 767px) {
    .deal-slider-arrows {
        display: none !important;
    }
    .home-deals-grid,
    .home-deals-scroll {
        display: grid !important;
        grid-template-rows: repeat(2, 1fr) !important;
        grid-auto-flow: column !important;
        grid-auto-columns: calc((100% - 10px) / 2.35) !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 8px !important;
        padding: 2px 2px 10px 2px !important;
    }
    .home-deal-card {
        flex: initial !important;
        width: 100% !important;
        border-radius: 8px;
    }
    .deal-card-img-wrap {
        aspect-ratio: 1 / 1.15;
    }
    .deal-card-badge-top {
        font-size: 0.46rem;
        padding: 1px 4px;
        top: 4px;
        left: 4px;
    }
    .deal-card-wish-btn {
        width: 20px;
        height: 20px;
        top: 4px;
        right: 4px;
    }
    .deal-card-wish-btn svg {
        width: 10px;
        height: 10px;
    }
    .deal-card-body {
        padding: 5px 6px 6px;
    }
    .deal-sku-row {
        display: none;
    }
    .deal-card-title {
        font-size: 0.62rem;
        line-height: 1.2;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .deal-card-title a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .deal-sale-price {
        font-size: 0.72rem;
    }
    .deal-mrp {
        font-size: 0.55rem;
    }
    .deal-stock-bar-wrap {
        margin-bottom: 4px;
    }
    .deal-stock-bar {
        height: 2px;
    }
    .deal-stock-text {
        font-size: 0.46rem;
    }
    .deal-btn-claim {
        height: 24px;
        font-size: 0.58rem;
        border-radius: 5px;
    }
    .deal-btn-claim svg {
        display: none;
    }
}

/* ── Section 14 & 15: Wholesale B2B Cards ── */
.home-wholesale-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home-ws-card {
    background: #25201A;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    overflow: hidden;
    color: #FFF9EE;
    transition: all 0.25s ease;
}

.home-ws-card:hover {
    transform: translateY(-3px);
    border-color: #D4AF37;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.home-ws-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.home-ws-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-ws-moq-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #D4AF37;
    color: #14110E;
    font-size: 0.66rem;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 4px;
}

.home-ws-stock-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #34D399;
    font-size: 0.60rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.home-ws-body {
    padding: 10px 12px 14px;
}

.home-ws-sku {
    font-size: 0.62rem;
    color: #D4AF37;
    font-weight: 700;
}

.home-ws-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 2px 0 8px;
}

.home-ws-pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.home-ws-price-lbl {
    font-size: 0.55rem;
    color: #A8A29E;
    display: block;
}

.home-ws-price-val {
    font-size: 0.95rem;
    font-weight: 900;
    color: #FFE699;
}

.home-ws-mrp-val {
    font-size: 0.74rem;
    color: #78716C;
    text-decoration: line-through;
}

.home-ws-tier-tag {
    font-size: 0.60rem;
    color: #D7CDBB;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 6px;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-ws-action-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-ws-qty-box {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: #E5DFD3;
}

.home-ws-qty-input {
    width: 36px;
    height: 28px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #D4AF37;
    background: #14110E;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.75rem;
}

.home-ws-order-btn {
    flex: 1;
    height: 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #8A681F 100%);
    color: #14110E !important;
    border-radius: 4px;
    font-size: 0.70rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Section 16: Bulk Deals ── */
.bulk-deals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bulk-deal-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(138, 104, 31, 0.3);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.bulk-deal-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
}

.bulk-deal-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bulk-thumb {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #EAE0C8;
    flex-shrink: 0;
}

.bulk-deal-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #1E1B18;
}

.bulk-deal-sub {
    font-size: 0.72rem;
    color: #5A5348;
}

.bulk-deal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    background: #FAF8F4;
    padding: 8px 12px;
    border-radius: 8px;
}

.bulk-lbl {
    font-size: 0.60rem;
    color: #78716C;
    display: block;
}

.bulk-val {
    font-size: 1rem;
    font-weight: 900;
    color: #8A681F;
}

.bulk-savings-badge {
    background: #ECFDF5;
    color: #059669;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #A7F3D0;
}

/* ── Section 17: Price Slabs Table ── */
.price-slabs-table-wrap {
    overflow-x: auto;
    background: #FFFFFF;
    border: 1.5px solid rgba(138, 104, 31, 0.25);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.price-slabs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    text-align: left;
}

.price-slabs-table th {
    background: #FEFAF0;
    color: #8A681F;
    font-weight: 800;
    padding: 12px 16px;
    border-bottom: 1.5px solid rgba(138, 104, 31, 0.2);
    white-space: nowrap;
}

.price-slabs-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #F5EFEB;
    color: #2C251E;
    white-space: nowrap;
}

.price-slabs-table tr.highlight-row {
    background: #FFFBEB;
}

.slab-margin-badge {
    background: #ECFDF5;
    color: #059669;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 2px 7px;
    border-radius: 4px;
}

.slab-margin-badge.gold-margin {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

/* ── Section 18: Ultra-Luxury Wholesale Promo Banner (Deep Rich Dark & Crystal Clear Text) ── */
.wholesale-promo-banner {
    position: relative;
    background: linear-gradient(135deg, #181410 0%, #221A13 50%, #15110D 100%);
    border: 1.8px solid #C5A859;
    border-radius: 20px;
    padding: clamp(22px, 3.5vw, 36px);
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 175, 55, 0.3);
    color: #FFF9EE;
}

.wpb-ambient-glow,
.wpb-ambient-mesh {
    display: none !important;
}

.wpb-main-layout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.wpb-left {
    flex: 1;
    min-width: 0;
}

.wpb-tag-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.wpb-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.70rem;
    font-weight: 800;
    color: #FDE68A;
    background: rgba(138, 104, 31, 0.4);
    border: 1.2px solid rgba(212, 175, 55, 0.5);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.08em;
}

.wpb-tag-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
    animation: wpbPulse 1.5s infinite;
}

@keyframes wpbPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.65); opacity: 0.35; }
}

.wpb-tag-gold {
    font-size: 0.65rem;
    font-weight: 800;
    color: #D4AF37;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.45);
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wpb-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    font-weight: 800;
    line-height: 1.28;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
    margin: 0 0 8px 0;
    letter-spacing: 0.02em;
}

.wpb-title-gold {
    color: #F8D882;
    text-shadow: 0 0 12px rgba(248, 216, 130, 0.4);
}

.wpb-desc {
    font-size: 0.88rem;
    color: #EDE5D8;
    line-height: 1.5;
    margin: 0 0 16px 0;
    max-width: 680px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* 4 Value Pillars Grid */
.wpb-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wpb-pillar-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.2px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.wpb-pillar-card:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.wpb-pillar-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #8A681F 0%, #583F0F 100%);
    border: 1.2px solid #C5A859;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wpb-pillar-icon svg {
    width: 17px;
    height: 17px;
    stroke: #FFFFFF;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wpb-pillar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.wpb-pillar-text strong {
    font-size: 0.82rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.wpb-pillar-text span {
    font-size: 0.72rem;
    color: #F5E0A3;
    font-weight: 600;
    line-height: 1.2;
}

/* Right Action Buttons & CTA */
.wpb-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    min-width: 250px;
}

.wpb-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #FDE68A;
    background: rgba(0, 0, 0, 0.55);
    border: 1.2px solid rgba(212, 175, 55, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wpb-cta-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F59E0B;
    box-shadow: 0 0 8px #F59E0B;
}

.wpb-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ECC86A 0%, #C5A859 50%, #8A681F 100%);
    color: #120E08 !important;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(138, 104, 31, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

.wpb-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.55);
}

.wpb-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF !important;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.wpb-btn-secondary:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: #25D366;
    color: #A7F3D0 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* Tablet Layout */
@media (max-width: 991px) and (min-width: 768px) {
    .wpb-main-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
    }
    .wpb-right {
        flex-direction: row;
        align-items: center;
        min-width: 0;
    }
    .wpb-btn-primary, .wpb-btn-secondary {
        flex: 1;
    }
}

/* Mobile Smart Auto-Sizing Layout (Crystal Clear High Visibility) */
@media (max-width: 767px) {
    .wholesale-promo-banner {
        padding: 18px 14px;
        border-radius: 16px;
        background: linear-gradient(135deg, #181410 0%, #201812 100%);
    }
    .wpb-main-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .wpb-tag-row {
        gap: 6px;
        margin-bottom: 8px;
    }
    .wpb-tag {
        font-size: 0.62rem;
        padding: 3px 8px;
    }
    .wpb-tag-gold {
        font-size: 0.58rem;
        padding: 2px 6px;
    }
    .wpb-title {
        font-size: 1.18rem;
        line-height: 1.28;
        margin-bottom: 6px;
        color: #FFFFFF;
    }
    .wpb-desc {
        font-size: 0.78rem;
        line-height: 1.45;
        margin-bottom: 12px;
    }
    .wpb-pillars-grid {
        grid-template-columns: 1fr;
        gap: 7px;
    }
    .wpb-pillar-card {
        padding: 8px 10px;
        border-radius: 10px;
        gap: 9px;
    }
    .wpb-pillar-icon {
        width: 28px;
        height: 28px;
        border-radius: 7px;
    }
    .wpb-pillar-icon svg {
        width: 14px;
        height: 14px;
    }
    .wpb-pillar-text strong {
        font-size: 0.74rem;
    }
    .wpb-pillar-text span {
        font-size: 0.64rem;
    }
    .wpb-right {
        width: 100%;
        min-width: 0;
        gap: 8px;
    }
    .wpb-cta-badge {
        font-size: 0.64rem;
        padding: 4px 8px;
    }
    .wpb-btn-primary {
        padding: 12px 16px;
        font-size: 0.84rem;
        width: 100%;
    }
    .wpb-btn-secondary {
        padding: 11px 14px;
        font-size: 0.82rem;
        width: 100%;
    }
}

/* ── Section 19: Collections Banner Grid ── */
.collections-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.col-banner-card {
    height: 180px;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.col-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(20, 17, 14, 0.8) 100%);
}

.col-banner-card:hover {
    transform: translateY(-3px);
}

.col-bridal { background-image: url('/Frontend/Shop/Asset/images/product6.png'); }
.col-festive { background-image: url('/Frontend/Shop/Asset/images/product1.png'); }
.col-party { background-image: url('/Frontend/Shop/Asset/images/product5.png'); }

.col-banner-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.col-tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #FFE699;
}

.col-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 2px 0 4px;
}

.col-link {
    font-size: 0.72rem;
    font-weight: 800;
    color: #D4AF37;
}

/* ── Section 22: Offers Grid ── */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.offer-coupon-card {
    background: #FFFFFF;
    border: 1.5px dashed rgba(138, 104, 31, 0.4);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.coupon-discount {
    font-size: 0.88rem;
    font-weight: 900;
    color: #8A681F;
    display: block;
}

.coupon-title {
    font-size: 0.80rem;
    font-weight: 800;
    color: #1E1B18;
}

.coupon-terms {
    font-size: 0.65rem;
    color: #78716C;
}

.coupon-code-btn {
    background: #FEFAF0;
    border: 1px solid #D4AF37;
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.coupon-code-btn:hover {
    background: #FDF3D8;
}

.coupon-code-btn code {
    font-family: monospace;
    font-size: 0.82rem;
    font-weight: 900;
    color: #8A681F;
    display: block;
}

.coupon-code-btn span {
    font-size: 0.58rem;
    color: #78716C;
}

/* ── Section 23 & 24: 4-Step Roadmaps ── */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.roadmap-step-card {
    background: #FFFFFF;
    border: 1px solid rgba(138, 104, 31, 0.2);
    border-radius: 12px;
    padding: 16px 14px;
    position: relative;
    text-align: center;
}

.roadmap-num {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 0.90rem;
    font-weight: 900;
    color: rgba(138, 104, 31, 0.25);
    font-family: monospace;
}

.roadmap-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.roadmap-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #1E1B18;
    margin-bottom: 4px;
}

.roadmap-desc {
    font-size: 0.72rem;
    color: #5A5348;
    line-height: 1.4;
}

/* ── Section 25: Why Choose Us (8 Pillars) ── */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.why-card {
    background: #FFFFFF;
    border: 1px solid rgba(138, 104, 31, 0.18);
    border-radius: 12px;
    padding: 14px;
    transition: all 0.2s ease;
}

.why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(138, 104, 31, 0.1);
}

.why-icon {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.why-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #1E1B18;
    margin-bottom: 3px;
}

.why-desc {
    font-size: 0.70rem;
    color: #5A5348;
    line-height: 1.35;
}

/* ── Section 26, 27, 28: Reviews ── */
.reviews-tab-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rev-tab-btn {
    padding: 6px 14px;
    border-radius: 20px;
    background: #FAF8F4;
    border: 1px solid rgba(138, 104, 31, 0.2);
    font-size: 0.74rem;
    font-weight: 700;
    color: #2C251E;
    cursor: pointer;
    transition: all 0.15s ease;
}

.rev-tab-btn.active {
    background: #8A681F;
    color: #FFFFFF;
    border-color: #8A681F;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.review-card {
    background: #FFFFFF;
    border: 1px solid rgba(138, 104, 31, 0.18);
    border-radius: 12px;
    padding: 16px;
}

.rev-stars {
    color: #F59E0B;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.rev-text {
    font-size: 0.78rem;
    color: #44403C;
    line-height: 1.45;
    margin-bottom: 12px;
    font-style: italic;
}

.rev-author-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rev-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #8A681F;
    color: #FFFFFF;
    font-size: 0.70rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rev-name {
    font-size: 0.78rem;
    font-weight: 800;
    color: #1E1B18;
}

.rev-location {
    font-size: 0.64rem;
    color: #78716C;
}

/* ── Section 29: Video Reels ── */
.home-reels-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home-reel-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.home-reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-reel-card:hover img {
    transform: scale(1.05);
}

.reel-play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #FFFFFF;
}

.reel-play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reel-views {
    font-size: 0.68rem;
    font-weight: 700;
}

.reel-caption {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ── Section 30: WhatsApp Concierge Banner ── */
.home-wa-concierge-section {
    padding: clamp(16px, 2.5vw, 24px) 0;
    background: #FAF8F4;
}

.home-wa-card {
    background: linear-gradient(135deg, #065F46 0%, #047857 100%);
    border-radius: 14px;
    padding: clamp(16px, 2.5vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(6, 95, 70, 0.25);
}

.home-wa-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-wa-icon-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-wa-title {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 800;
}

.home-wa-sub {
    font-size: 0.78rem;
    color: #D1FAE5;
    margin-top: 2px;
}

.home-wa-btn {
    background: #FFFFFF;
    color: #065F46 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.home-wa-btn:hover {
    transform: translateY(-2px);
}

/* ═════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE TWEAKS FOR ALL 31 SECTIONS
═════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .home-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-reseller-grid,
    .home-wholesale-grid,
    .ready-share-grid,
    .why-us-grid,
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collections-banner-grid,
    .reviews-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }
    .bulk-deals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .home-cat-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    .home-cat-card-body {
        padding: 4px 2px 6px;
    }
    .home-cat-card-name {
        font-size: 0.66rem;
    }
    .home-cat-card-count {
        font-size: 0.55rem;
    }
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px;
    }
    .quick-card {
        padding: 8px 8px;
        gap: 6px;
        border-radius: 10px;
    }
    .quick-card-icon-wrap {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }
    .quick-card-svg {
        width: 15px;
        height: 15px;
    }
    .quick-card-badge {
        font-size: 0.48rem;
    }
    .quick-card-title {
        font-size: 0.72rem;
    }
    .quick-card-sub {
        font-size: 0.55rem;
    }
    .quick-card-arrow {
        display: none;
    }
    .products-grid,
    .home-reseller-grid,
    .home-wholesale-grid,
    .ready-share-grid,
    .why-us-grid,
    .home-reels-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
    .high-margin-strip {
        flex-direction: column;
        align-items: flex-start;
    }
    .hm-action {
        width: 100%;
    }
    .hm-action button {
        width: 100%;
    }
    .rpb-steps-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .rpb-arrow {
        display: none;
    }
    .home-deal-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .deal-countdown-box {
        width: 100%;
        justify-content: space-between;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 10: LUXURY GLASSMORPHIC RESELLER PROMO BANNER
══════════════════════════════════════════════════════════════════════════ */
.home-banner-strip-section {
    padding: clamp(20px, 4vw, 36px) 0;
    position: relative;
    overflow: hidden;
}

.reseller-promo-banner {
    position: relative;
    border-radius: 24px;
    background: #FFFDF9;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 250, 240, 0.92) 45%, rgba(246, 238, 218, 0.85) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.42);
    box-shadow: 0 20px 48px rgba(138, 104, 31, 0.12), 0 4px 16px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: clamp(20px, 3.5vw, 36px) clamp(16px, 3.5vw, 40px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reseller-promo-banner:hover {
    box-shadow: 0 24px 56px rgba(138, 104, 31, 0.18), 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* Ambient Glow Orbs */
.rpb-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}
.rpb-glow-1 {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -40px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0) 70%);
}
.rpb-glow-2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -30px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0) 70%);
}

.rpb-main-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 40px);
}

.rpb-left {
    flex: 1;
    min-width: 0;
}

.rpb-tag-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.rpb-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #FAF3E0 0%, #F5E5BE 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #705114;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.rpb-tag-icon {
    width: 12px;
    height: 12px;
    stroke: #8A681F;
    fill: #D4AF37;
}

.rpb-pill-badge {
    font-size: 0.60rem;
    font-weight: 700;
    color: #065F46;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    padding: 3.5px 8.5px;
    border-radius: 10px;
    letter-spacing: 0.04em;
}

.rpb-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: #1E1B18;
    background: linear-gradient(135deg, #1E1B18 0%, #5E430F 60%, #8A681F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.rpb-subtitle {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(0.74rem, 1.6vw, 0.85rem);
    color: #5A5348;
    line-height: 1.5;
    margin: 0 0 18px 0;
    max-width: 620px;
}

/* ── 4 Steps Grid with Real Vector SVG Icons ── */
.rpb-steps-grid {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-top: 12px;
}

.rpb-step-card {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 14px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 3px 10px rgba(138, 104, 31, 0.06);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rpb-step-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 6px 16px rgba(138, 104, 31, 0.14);
    background: #FFFFFF;
}

.rpb-step-icon-box {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rpb-step-icon-box svg {
    width: 17px;
    height: 17px;
    stroke-width: 2.2;
    fill: none;
    transition: transform 0.2s ease;
}

.rpb-step-card:hover .rpb-step-icon-box svg {
    transform: scale(1.12);
}

.step-icon-1 {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 1px solid #FCD34D;
    color: #92400E;
}
.step-icon-1 svg { stroke: #B45309; }

.step-icon-2 {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border: 1px solid #6EE7B7;
    color: #065F46;
}
.step-icon-2 svg { stroke: #047857; }

.step-icon-3 {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    border: 1px solid #A5B4FC;
    color: #3730A3;
}
.step-icon-3 svg { stroke: #4338CA; }

.step-icon-4 {
    background: linear-gradient(135deg, #FDF2F8 0%, #FBCFE8 100%);
    border: 1px solid #F472B6;
    color: #9D174D;
}
.step-icon-4 svg { stroke: #BE185D; }

.rpb-step-num {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #181512;
    color: #F5D77F;
    font-size: 0.46rem;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    line-height: 1.2;
}

.rpb-step-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.rpb-step-heading {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.73rem;
    font-weight: 800;
    color: #1E1B18;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rpb-step-desc {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.58rem;
    font-weight: 600;
    color: #78716C;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rpb-connector {
    color: #D4AF37;
    opacity: 0.7;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.rpb-connector svg {
    width: 14px;
    height: 14px;
    stroke: #8A681F;
    stroke-width: 2.5;
    fill: none;
}

/* ── Right Actions ── */
.rpb-right {
    flex-shrink: 0;
}

.rpb-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    min-width: 190px;
}

.rpb-btn-primary {
    width: 100%;
    padding: 12px 20px;
    border-radius: 26px;
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #064E3B 100%);
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 22px rgba(5, 150, 105, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.rpb-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(5, 150, 105, 0.48), 0 4px 10px rgba(0, 0, 0, 0.12);
    color: #FFFFFF;
}

.rpb-btn-arrow {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.2s ease;
}
.rpb-btn-primary:hover .rpb-btn-arrow {
    transform: translateX(3px);
}

.rpb-btn-secondary {
    width: 100%;
    padding: 9px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    color: #705114;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.rpb-btn-secondary:hover {
    background: #FFFFFF;
    border-color: #8A681F;
    color: #8A681F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(138, 104, 31, 0.12);
}

.rpb-info-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.rpb-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.60rem;
    font-weight: 700;
    color: #78716C;
    margin-top: 2px;
}

.rpb-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
    animation: rpbDotPulse 1.8s infinite;
}

@keyframes rpbDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* ── Designer Mobile Responsive Styling ── */
@media (max-width: 991px) {
    .rpb-main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .rpb-steps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .rpb-connector {
        display: none;
    }
    .rpb-cta-box {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .rpb-btn-primary, .rpb-btn-secondary {
        flex: 1;
        min-width: 140px;
    }
    .rpb-trust-pill {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 540px) {
    .reseller-promo-banner {
        border-radius: 18px;
        padding: 16px 14px;
    }
    .rpb-title {
        font-size: 1.12rem;
    }
    .rpb-subtitle {
        font-size: 0.72rem;
        margin-bottom: 12px;
    }
    .rpb-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .rpb-step-card {
        padding: 7px 8px;
        gap: 7px;
        border-radius: 12px;
    }
    .rpb-step-icon-box {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }
    .rpb-step-icon-box svg {
        width: 14px;
        height: 14px;
    }
    .rpb-step-heading {
        font-size: 0.66rem;
    }
    .rpb-step-desc {
        font-size: 0.54rem;
    }
    .rpb-cta-box {
        flex-direction: column;
        gap: 8px;
    }
    .rpb-btn-primary {
        width: 100%;
        padding: 11px 16px;
        font-size: 0.78rem;
    }
    .rpb-btn-secondary {
        width: 100%;
        padding: 8px 14px;
        font-size: 0.74rem;
    }
    .hide-mobile {
        display: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 17: LUXURY GLASSMORPHIC RETAILER BOUTIQUE PROMO BANNER
══════════════════════════════════════════════════════════════════════════ */
.retailer-promo-banner {
    position: relative;
    border-radius: 24px;
    background: #FFFDF9;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 250, 254, 0.92) 45%, rgba(238, 245, 255, 0.85) 100%);
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    box-shadow: 0 20px 48px rgba(30, 58, 138, 0.10), 0 4px 16px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: clamp(20px, 3.5vw, 36px) clamp(16px, 3.5vw, 40px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.retailer-promo-banner:hover {
    box-shadow: 0 24px 56px rgba(30, 58, 138, 0.15), 0 6px 20px rgba(0, 0, 0, 0.05);
}

.ret-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}
.ret-glow-1 {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -40px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0) 70%);
}
.ret-glow-2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -30px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
}

.ret-main-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 40px);
}

.ret-left {
    flex: 1;
    min-width: 0;
}

.ret-tag-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ret-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid rgba(59, 130, 246, 0.45);
    color: #1E40AF;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.ret-tag-icon {
    width: 12px;
    height: 12px;
    stroke: #1D4ED8;
    fill: none;
    stroke-width: 2.2;
}

.ret-pill-badge {
    font-size: 0.60rem;
    font-weight: 700;
    color: #854D0E;
    background: #FEF9C3;
    border: 1px solid #FDE047;
    padding: 3.5px 8.5px;
    border-radius: 10px;
    letter-spacing: 0.04em;
}

.ret-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: #1E1B18;
    background: linear-gradient(135deg, #1E1B18 0%, #1E3A8A 60%, #8A681F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.ret-subtitle {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(0.74rem, 1.6vw, 0.85rem);
    color: #475569;
    line-height: 1.5;
    margin: 0 0 18px 0;
    max-width: 620px;
}

/* ── 4 Retailer Benefit Cards ── */
.ret-steps-grid {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-top: 12px;
}

.ret-step-card {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 14px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.05);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ret-step-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.12);
    background: #FFFFFF;
}

.ret-step-icon-box {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ret-step-icon-box svg {
    width: 17px;
    height: 17px;
    stroke-width: 2.2;
    fill: none;
    transition: transform 0.2s ease;
}

.ret-step-card:hover .ret-step-icon-box svg {
    transform: scale(1.12);
}

.ret-icon-1 {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    color: #1E40AF;
}
.ret-icon-1 svg { stroke: #1D4ED8; }

.ret-icon-2 {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 1px solid #FCD34D;
    color: #92400E;
}
.ret-icon-2 svg { stroke: #B45309; }

.ret-icon-3 {
    background: linear-gradient(135deg, #ECFDF5 0%, #A7F3D0 100%);
    border: 1px solid #6EE7B7;
    color: #065F46;
}
.ret-icon-3 svg { stroke: #047857; }

.ret-icon-4 {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    border: 1px solid #D8B4FE;
    color: #6B21A8;
}
.ret-icon-4 svg { stroke: #7E22CE; }

.ret-step-num {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #0F172A;
    color: #93C5FD;
    font-size: 0.46rem;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    line-height: 1.2;
}

.ret-step-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ret-step-heading {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.73rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ret-step-desc {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.58rem;
    font-weight: 600;
    color: #64748B;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ret-connector {
    color: #3B82F6;
    opacity: 0.6;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.ret-connector svg {
    width: 14px;
    height: 14px;
    stroke: #2563EB;
    stroke-width: 2.5;
    fill: none;
}

/* ── Retailer Banner Right Actions ── */
.ret-right {
    flex-shrink: 0;
}

.ret-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    min-width: 190px;
}

.ret-btn-primary {
    width: 100%;
    padding: 12px 20px;
    border-radius: 26px;
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 50%, #172554 100%);
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 22px rgba(29, 78, 216, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.ret-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(29, 78, 216, 0.48), 0 4px 10px rgba(0, 0, 0, 0.12);
    color: #FFFFFF;
}

.ret-btn-arrow {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.2s ease;
}
.ret-btn-primary:hover .ret-btn-arrow {
    transform: translateX(3px);
}

.ret-btn-secondary {
    width: 100%;
    padding: 9px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.90);
    border: 1.5px solid rgba(37, 211, 102, 0.5);
    color: #065F46;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.ret-btn-secondary:hover {
    background: #25D366;
    border-color: #25D366;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.ret-chat-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.ret-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.60rem;
    font-weight: 700;
    color: #64748B;
    margin-top: 2px;
}

.ret-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3B82F6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
    animation: rpbDotPulse 1.8s infinite;
}

@media (max-width: 991px) {
    .ret-main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .ret-steps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .ret-connector {
        display: none;
    }
    .ret-cta-box {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .ret-btn-primary, .ret-btn-secondary {
        flex: 1;
        min-width: 140px;
    }
    .ret-trust-pill {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 540px) {
    .retailer-promo-banner {
        border-radius: 18px;
        padding: 16px 14px;
    }
    .ret-title {
        font-size: 1.12rem;
    }
    .ret-subtitle {
        font-size: 0.72rem;
        margin-bottom: 12px;
    }
    .ret-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .ret-step-card {
        padding: 7px 8px;
        gap: 7px;
        border-radius: 12px;
    }
    .ret-step-icon-box {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }
    .ret-step-icon-box svg {
        width: 14px;
        height: 14px;
    }
    .ret-step-heading {
        font-size: 0.66rem;
    }
    .ret-step-desc {
        font-size: 0.54rem;
    }
    .ret-cta-box {
        flex-direction: column;
        gap: 8px;
    }
    .ret-btn-primary {
        width: 100%;
        padding: 11px 16px;
        font-size: 0.78rem;
    }
    .ret-btn-secondary {
        width: 100%;
        padding: 8px 14px;
        font-size: 0.74rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   ROADMAP WORKFLOW SECTIONS (Reseller, Retailer & Wholesale Next-Level)
══════════════════════════════════════════════════════════════════════════ */
.workflow-section-reseller {
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, rgba(254, 252, 248, 0.98) 45%, #FDFBF7 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.workflow-section-retailer {
    background: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0.98) 45%, #F7FAF8 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
}

.workflow-section-wholesale {
    background: radial-gradient(circle at 50% 10%, rgba(99, 102, 241, 0.07) 0%, rgba(253, 251, 247, 0.98) 50%, #F8F9FD 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
}

.workflow-tag-reseller {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.workflow-tag-retailer {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.workflow-tag-wholesale {
    background: #EEF2FF;
    color: #3730A3;
    border: 1px solid #C7D2FE;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tag-live-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
}

/* Roadmap Grid & Desktop Progression Track */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
    position: relative;
}

@media (min-width: 992px) {
    .roadmap-grid::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: linear-gradient(90deg, rgba(197, 168, 89, 0.15) 0%, rgba(197, 168, 89, 0.65) 50%, rgba(197, 168, 89, 0.15) 100%);
        z-index: 1;
        pointer-events: none;
    }
}

/* Step Card Styles */
.roadmap-step-card {
    background: #FFFFFF;
    border: 1.5px solid #EDE8DE;
    border-radius: 20px;
    padding: 26px 18px 22px 18px;
    position: relative;
    z-index: 2;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.roadmap-step-card:hover {
    transform: translateY(-8px);
    border-color: #C5A859;
    box-shadow: 0 16px 36px rgba(138, 104, 31, 0.16);
    background: #FFFFFF;
}

.roadmap-num {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.68rem;
    font-weight: 800;
    color: #8A681F;
    background: linear-gradient(135deg, #FAF5E8 0%, #F5ECDA 100%);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(197, 168, 89, 0.4);
    box-shadow: 0 2px 6px rgba(138, 104, 31, 0.08);
}

/* Icon Wrappers */
.roadmap-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.roadmap-step-card:hover .roadmap-icon-wrap {
    transform: scale(1.12) rotate(2deg);
}

.workflow-svg {
    width: 36px;
    height: 36px;
    display: block;
}

/* Specific Step Color Themes */
.rm-icon-reseller-1 { background: #FEF3C7; border: 1.5px solid #FCD34D; }
.rm-icon-reseller-2 { background: #D1FAE5; border: 1.5px solid #6EE7B7; }
.rm-icon-reseller-3 { background: #EEF2FF; border: 1.5px solid #A5B4FC; }
.rm-icon-reseller-4 { background: #FCE7F3; border: 1.5px solid #F472B6; }

.rm-icon-retailer-1 { background: #DBEAFE; border: 1.5px solid #93C5FD; }
.rm-icon-retailer-2 { background: #FEF3C7; border: 1.5px solid #FCD34D; }
.rm-icon-retailer-3 { background: #D1FAE5; border: 1.5px solid #6EE7B7; }
.rm-icon-retailer-4 { background: #EDE9FE; border: 1.5px solid #C4B5FD; }

.rm-icon-wholesale-1 { background: #FFEDD5; border: 1.5px solid #FDBA74; }
.rm-icon-wholesale-2 { background: #D1FAE5; border: 1.5px solid #6EE7B7; }
.rm-icon-wholesale-3 { background: #DBEAFE; border: 1.5px solid #93C5FD; }
.rm-icon-wholesale-4 { background: #F3E8FF; border: 1.5px solid #D8B4FE; }

/* SVG Micro Animations */
.svg-anim-float {
    animation: svgFloatAnim 3s infinite ease-in-out;
}

.svg-anim-bounce {
    animation: svgBounceAnim 2.8s infinite ease-in-out;
}

.svg-anim-pulse {
    animation: svgPulseAnim 2.5s infinite ease-in-out;
}

.svg-anim-sparkle {
    transform-origin: center;
    animation: svgSparkleAnim 2s infinite ease-in-out;
}

@keyframes svgFloatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes svgBounceAnim {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.03); }
}

@keyframes svgPulseAnim {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes svgSparkleAnim {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.25) rotate(15deg); opacity: 0.8; }
}

/* Typography */
.roadmap-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.94rem;
    font-weight: 800;
    color: #1E1B18;
    margin: 0 0 6px 0;
    line-height: 1.25;
}

.roadmap-desc {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.74rem;
    color: #6B6359;
    line-height: 1.45;
    margin: 0;
}

/* ════════════ NEXT-LEVEL 3D GOLD CTA BUTTON ════════════ */
.workflow-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #8A681F 0%, #C5A859 50%, #705417 100%);
    color: #FFFFFF !important;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 28px rgba(138, 104, 31, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.workflow-cta-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(25deg);
    animation: ctaShimmer 3.5s infinite ease-in-out;
}

@keyframes ctaShimmer {
    0% { left: -60%; }
    100% { left: 140%; }
}

.workflow-cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 36px rgba(138, 104, 31, 0.48), 0 0 20px rgba(197, 168, 89, 0.5);
    color: #FFFFFF !important;
}

.workflow-cta-btn .btn-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transition: transform 0.3s ease;
}

.workflow-cta-btn:hover .btn-arrow-icon {
    transform: translateX(4px);
}

/* Responsive Overrides */
@media (max-width: 991px) and (min-width: 768px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
    .roadmap-step-card {
        padding: 20px 14px;
    }
}

@media (max-width: 767px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-top: 20px;
    }
    .roadmap-step-card {
        padding: 16px 10px 14px 10px;
        border-radius: 14px;
    }
    .roadmap-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .workflow-svg {
        width: 24px;
        height: 24px;
    }
    .roadmap-title {
        font-size: 0.80rem;
        margin-bottom: 3px;
    }
    .roadmap-desc {
        font-size: 0.62rem;
        line-height: 1.35;
    }
    .roadmap-num {
        font-size: 0.56rem;
        top: 8px;
        right: 8px;
        padding: 1px 5px;
    }
    .workflow-cta-btn {
        width: 100%;
        max-width: 320px;
        padding: 12px 20px;
        font-size: 0.84rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 25: WHY CHOOSE US (8 VALUE PILLARS - LUXURY DESIGN)
═══════════════════════════════════════════════════════════════════ */
.section-why-us-luxury {
    background: radial-gradient(circle at 50% 15%, rgba(212, 175, 55, 0.08) 0%, rgba(254, 252, 248, 0.98) 45%, #FDFBF7 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
    position: relative;
    overflow: hidden;
}

.why-section-tag {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.why-us-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(138, 104, 31, 0.16);
    border-radius: 18px;
    padding: 24px 18px 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.why-us-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C5A859, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-6px);
    border-color: #C5A859;
    box-shadow: 0 16px 36px rgba(138, 104, 31, 0.12);
}

.why-us-card:hover::after {
    opacity: 1;
}

.why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-us-card:hover .why-icon-wrap {
    transform: scale(1.12) rotate(3deg);
}

.why-us-svg {
    width: 30px;
    height: 30px;
    display: block;
}

/* Specific Why Icon Color Themes */
.why-icon-gold { background: #FEF3C7; border: 1.5px solid #FCD34D; }
.why-icon-amber { background: #FFEDD5; border: 1.5px solid #FDBA74; }
.why-icon-emerald { background: #D1FAE5; border: 1.5px solid #6EE7B7; }
.why-icon-indigo { background: #EEF2FF; border: 1.5px solid #A5B4FC; }
.why-icon-rose { background: #FCE7F3; border: 1.5px solid #F472B6; }
.why-icon-cyan { background: #CFFAFE; border: 1.5px solid #67E8F9; }
.why-icon-green { background: #DCFCE7; border: 1.5px solid #86EFAC; }
.why-icon-purple { background: #F3E8FF; border: 1.5px solid #D8B4FE; }

.why-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.94rem;
    font-weight: 800;
    color: #1E1B18;
    margin: 0 0 6px 0;
    line-height: 1.25;
}

.why-desc {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.74rem;
    color: #6B6359;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 991px) and (min-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
    .why-us-card {
        padding: 18px 14px;
    }
}

@media (max-width: 767px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-top: 20px;
    }
    .why-us-card {
        padding: 14px 10px 12px 10px;
        border-radius: 14px;
    }
    .why-icon-wrap {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .why-us-svg {
        width: 22px;
        height: 22px;
    }
    .why-title {
        font-size: 0.80rem;
        margin-bottom: 3px;
    }
    .why-desc {
        font-size: 0.62rem;
        line-height: 1.35;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 26: VERIFIED BUYER FEEDBACK (1-LINE LUXURY CAROUSEL)
═══════════════════════════════════════════════════════════════════ */
.section-reviews-luxury {
    background: linear-gradient(180deg, #FAF8F5 0%, #FFFFFF 50%, #FAF8F5 100%);
    position: relative;
    overflow: hidden;
    padding: 48px 0 54px 0;
}

.rev-section-tag {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rev-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.rev-header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.reviews-tab-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(235, 230, 220, 0.6);
    padding: 4px;
    border-radius: 40px;
    border: 1px solid rgba(138, 104, 31, 0.18);
}

.rev-tab-pill {
    background: transparent;
    border: none;
    border-radius: 30px;
    padding: 8px 18px;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    color: #6B6359;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.rev-tab-pill:hover {
    color: #8A681F;
    transform: translateY(-1px);
}

.rev-tab-pill.active {
    background: linear-gradient(135deg, #8A681F 0%, #C5A859 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(138, 104, 31, 0.3);
    transform: scale(1.03);
}

.rev-nav-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rev-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(138, 104, 31, 0.25);
    background: #FFFFFF;
    color: #8A681F;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    line-height: 1;
    padding-bottom: 2px;
}

.rev-arrow-btn:hover {
    background: #8A681F;
    color: #FFFFFF;
    border-color: #8A681F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(138, 104, 31, 0.3);
}

.reviews-track-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 4px;
}

.reviews-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 4px 18px 4px;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    background: #FFFFFF;
    border: 1.5px solid rgba(138, 104, 31, 0.16);
    border-radius: 20px;
    padding: 24px 22px 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C5A859, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: #C5A859;
    box-shadow: 0 18px 40px rgba(138, 104, 31, 0.16);
}

.review-card:hover::before {
    opacity: 1;
}

.rev-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.rev-stars-box {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rev-stars {
    color: #F59E0B;
    letter-spacing: 2px;
    font-size: 1rem;
    line-height: 1;
}

.rev-score-badge {
    background: #FEF3C7;
    color: #B45309;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid #FDE68A;
}

.rev-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #D1FAE5;
    color: #065F46;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid #A7F3D0;
}

.rev-verified-badge svg {
    width: 12px;
    height: 12px;
    fill: #059669;
}

.rev-badge-retailer {
    background: #ECFDF5;
    color: #047857;
    border-color: #A7F3D0;
}

.rev-badge-retailer svg {
    fill: #059669;
}

.rev-badge-reseller {
    background: #FEF3C7;
    color: #92400E;
    border-color: #FDE68A;
}

.rev-badge-reseller svg {
    fill: #D97706;
}

.rev-badge-wholesale {
    background: #EEF2FF;
    color: #3730A3;
    border-color: #C7D2FE;
}

.rev-badge-wholesale svg {
    fill: #4F46E5;
}

.rev-product-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F8F6F0;
    border: 1px solid rgba(138, 104, 31, 0.12);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #574F44;
    margin-bottom: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.rev-product-pill svg {
    width: 13px;
    height: 13px;
    stroke: #8A681F;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.rev-pill-profit {
    background: #ECFDF5;
    border-color: #A7F3D0;
    color: #047857;
}

.rev-pill-profit svg {
    stroke: #059669;
}

.rev-pill-b2b {
    background: #F0F9FF;
    border-color: #BAE6FD;
    color: #0369A1;
}

.rev-pill-b2b svg {
    stroke: #0284C7;
}

.rev-text {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.84rem;
    line-height: 1.55;
    color: #2D2823;
    font-style: italic;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.rev-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 14px;
    position: relative;
}

.rev-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-weight: 800;
    font-size: 0.88rem;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.rev-av-gold { background: linear-gradient(135deg, #F59E0B, #B45309); }
.rev-av-amber { background: linear-gradient(135deg, #EA580C, #C2410C); }
.rev-av-emerald { background: linear-gradient(135deg, #10B981, #047857); }
.rev-av-indigo { background: linear-gradient(135deg, #6366F1, #4338CA); }
.rev-av-rose { background: linear-gradient(135deg, #EC4899, #BE185D); }
.rev-av-cyan { background: linear-gradient(135deg, #06B6D4, #0E7490); }
.rev-av-purple { background: linear-gradient(135deg, #A855F7, #7E22CE); }

.rev-author-meta {
    flex-grow: 1;
    min-width: 0;
}

.rev-name {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.88rem;
    font-weight: 800;
    color: #1E1B18;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rev-location {
    font-size: 0.70rem;
    color: #7A7267;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rev-quote-watermark {
    font-size: 2.4rem;
    line-height: 1;
    color: rgba(138, 104, 31, 0.12);
    font-family: serif;
    user-select: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.review-card:hover .rev-quote-watermark {
    transform: scale(1.15) rotate(-6deg);
    color: rgba(138, 104, 31, 0.22);
}

.rev-scrollbar-track {
    width: 140px;
    height: 4px;
    background: rgba(138, 104, 31, 0.15);
    border-radius: 4px;
    margin: 20px auto 0 auto;
    overflow: hidden;
    position: relative;
}

.rev-scrollbar-thumb {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, #8A681F, #C5A859);
    border-radius: 4px;
    transition: transform 0.1s ease;
}

@media (max-width: 991px) and (min-width: 768px) {
    .review-card {
        flex: 0 0 calc((100% - 18px) / 2) !important;
    }
}

@media (max-width: 767px) {
    .rev-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .rev-header-controls {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .reviews-tab-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }
    .rev-tab-pill {
        padding: 6px 12px;
        font-size: 0.74rem;
    }
    .rev-nav-arrows {
        display: none;
    }
    .reviews-track {
        gap: 12px;
        padding: 6px 2px 14px 2px;
    }
    .review-card {
        flex: 0 0 calc((100% - 16px) / 1.16) !important;
        padding: 16px 14px 14px 14px;
        border-radius: 16px;
    }
    .rev-text {
        font-size: 0.78rem;
        margin-bottom: 14px;
        line-height: 1.45;
    }
    .rev-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.78rem;
    }
    .rev-name {
        font-size: 0.82rem;
    }
    .rev-location {
        font-size: 0.65rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 29: REAL PRODUCT VIDEOS & INSTAGRAM REELS (6 DESKTOP • 3 MOBILE)
═══════════════════════════════════════════════════════════════════ */
.section-reels-luxury {
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.08) 0%, rgba(254, 252, 248, 0.98) 45%, #FDFBF7 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
    position: relative;
    overflow: hidden;
    padding: 48px 0 54px 0;
}

.reels-section-tag {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.reels-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.reels-header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reels-open-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8A681F 0%, #C5A859 100%);
    color: #FFFFFF !important;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(138, 104, 31, 0.28);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

.reels-open-all-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(138, 104, 31, 0.4);
}

.reels-nav-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reels-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(138, 104, 31, 0.25);
    background: #FFFFFF;
    color: #8A681F;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    line-height: 1;
    padding-bottom: 2px;
}

.reels-arrow-btn:hover {
    background: #8A681F;
    color: #FFFFFF;
    border-color: #8A681F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(138, 104, 31, 0.3);
}

.reels-track-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 4px;
}

.home-reels-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 4px 18px 4px;
}

.home-reels-strip::-webkit-scrollbar {
    display: none;
}

/* Desktop: 6 Full Cards per line */
.home-reel-card {
    flex: 0 0 calc((100% - 60px) / 6);
    min-width: 0;
    scroll-snap-align: start;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid rgba(138, 104, 31, 0.18);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #000000;
}

.home-reel-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #C5A859;
    box-shadow: 0 18px 36px rgba(138, 104, 31, 0.28);
}

.reel-media-box {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 15;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-reel-card:hover .reel-img {
    transform: scale(1.08);
}

/* Gradient Vignette Overlays */
.reel-media-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.reel-media-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Top Bar: Live tag & Views */
.reel-top-bar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 0 10px;
    gap: 4px;
}

.reel-live-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(220, 38, 38, 0.9);
    color: #FFFFFF;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 3px 7px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.reel-tag-loom {
    background: rgba(180, 83, 9, 0.9);
}

.reel-tag-trend {
    background: rgba(225, 29, 72, 0.9);
}

.reel-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
    animation: liveDotPulse 1.4s infinite;
}

.reel-pulse-dot.gold {
    background: #FDE68A;
}

.reel-pulse-dot.fire {
    background: #FEF08A;
}

@keyframes liveDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

.reel-views-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.55);
    color: #FFFFFF;
    font-size: 0.64rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Center Animated Glowing Play Button */
.reel-center-play {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.reel-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: reelPulse 2.8s infinite;
}

.reel-play-svg {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
    margin-left: 2px;
}

.home-reel-card:hover .reel-play-btn {
    transform: scale(1.18);
    background: linear-gradient(135deg, #8A681F, #C5A859);
    border-color: #FFFFFF;
    box-shadow: 0 0 24px rgba(197, 168, 89, 0.8);
}

@keyframes reelPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Bottom Caption Info */
.reel-info-overlay {
    position: relative;
    z-index: 3;
    padding: 0 12px 12px 12px;
}

.reel-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.80rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.reel-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.reel-fabric {
    font-size: 0.66rem;
    font-weight: 600;
    color: #FDE68A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-price {
    font-size: 0.76rem;
    font-weight: 900;
    color: #FFFFFF;
    background: rgba(212, 175, 55, 0.35);
    padding: 1px 6px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.6);
}

/* Progress Scrollbar Track */
.reels-scrollbar-track {
    width: 140px;
    height: 4px;
    background: rgba(138, 104, 31, 0.15);
    border-radius: 4px;
    margin: 20px auto 0 auto;
    overflow: hidden;
    position: relative;
}

.reels-scrollbar-thumb {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, #8A681F, #C5A859);
    border-radius: 4px;
    transition: transform 0.1s ease;
}

/* Tablet: 4 Cards per line */
@media (max-width: 991px) and (min-width: 768px) {
    .home-reel-card {
        flex: 0 0 calc((100% - 36px) / 4) !important;
    }
}

/* Mobile: Exactly 3 Cards per line */
@media (max-width: 767px) {
    .reels-header-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 16px;
    }
    .reels-open-all-btn {
        padding: 6px 12px;
        font-size: 0.72rem;
    }
    .reels-nav-arrows {
        display: none;
    }
    .home-reels-strip {
        gap: 8px;
        padding: 4px 2px 14px 2px;
    }
    .home-reel-card {
        flex: 0 0 calc((100% - 16px) / 3) !important;
        border-radius: 12px;
    }
    .reel-media-box {
        aspect-ratio: 9 / 15;
    }
    .reel-top-bar {
        padding: 6px 6px 0 6px;
    }
    .reel-live-tag {
        font-size: 0.52rem;
        padding: 2px 4px;
        gap: 3px;
    }
    .reel-views-pill {
        font-size: 0.52rem;
        padding: 2px 4px;
    }
    .reel-views-pill svg {
        width: 8px;
        height: 8px;
    }
    .reel-play-btn {
        width: 28px;
        height: 28px;
        border-width: 1.5px;
    }
    .reel-play-svg {
        width: 11px;
        height: 11px;
    }
    .reel-info-overlay {
        padding: 0 6px 6px 6px;
    }
    .reel-title {
        font-size: 0.62rem;
        margin-bottom: 2px;
        line-height: 1.15;
        -webkit-line-clamp: 2;
    }
    .reel-fabric {
        font-size: 0.54rem;
    }
    .reel-price {
        font-size: 0.60rem;
        padding: 0 3px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 21: RECENTLY VIEWED PRODUCTS (1-LINE HORIZONTAL SCROLL)
   Desktop: 6 Cards per Line • Tablet: 4 Cards • Mobile: 3 Full Cards
   ═══════════════════════════════════════════════════════════════════ */
.recently-viewed-rail-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.recently-viewed-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px 2px 14px 2px;
}

.recently-viewed-track::-webkit-scrollbar {
    display: none;
}

.recently-viewed-card {
    flex: 0 0 calc((100% - 50px) / 6);
    width: calc((100% - 50px) / 6);
    min-width: 150px;
    max-width: calc((100% - 50px) / 6);
    background: #FFFFFF;
    border: 1.5px solid #EDE8DE;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    box-sizing: border-box;
}

.recently-viewed-card:hover {
    border-color: #C5A859;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(138, 104, 31, 0.16);
}

.rv-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.18;
    overflow: hidden;
    background: #FAF7F2;
}

.rv-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.rv-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.recently-viewed-card:hover .rv-card-img {
    transform: scale(1.06);
}

.rv-discount-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #FFFFFF;
    font-size: 0.56rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.35);
}

.rv-quick-view-btn {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid #EDE8DE;
    color: #1C1917;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.rv-quick-view-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.rv-quick-view-btn:hover {
    background: #8A681F;
    color: #FFFFFF;
    border-color: #8A681F;
    transform: scale(1.1);
}

.rv-card-body {
    padding: 8px 8px 10px 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    background: #FFFFFF;
}

.rv-card-cat {
    font-size: 0.55rem;
    font-weight: 800;
    color: #8A681F;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rv-card-title {
    font-size: 0.74rem;
    font-weight: 700;
    color: #1C1917;
    margin: 0 0 5px 0;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rv-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rv-card-title a:hover {
    color: #8A681F;
}

.rv-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 7px;
}

.rv-price-curr {
    font-size: 0.82rem;
    font-weight: 800;
    color: #1C1917;
}

.rv-price-old {
    font-size: 0.64rem;
    color: #8C827A;
    text-decoration: line-through;
    font-weight: 600;
}

.rv-add-btn {
    width: 100%;
    height: 26px;
    border-radius: 6px;
    border: 1.5px solid #8A681F;
    background: #FAF5E8;
    color: #8A681F;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rv-add-btn:hover {
    background: #8A681F;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(138, 104, 31, 0.25);
}

.rv-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #EDE8DE;
    background: #FFFFFF;
    color: #1C1917;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.rv-nav-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
}

.rv-nav-btn:hover {
    background: #8A681F;
    color: #FFFFFF;
    border-color: #8A681F;
    transform: scale(1.06);
}

.rv-scrollbar-track {
    width: 100%;
    height: 4px;
    background: #EDE8DE;
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
    position: relative;
}

.rv-scrollbar-thumb {
    height: 100%;
    width: 20%;
    background: #8A681F;
    border-radius: 2px;
    transition: transform 0.1s ease;
}

/* ── Tablet Responsive (4 Cards in 1 Line) ── */
@media (max-width: 1023px) and (min-width: 768px) {
    .recently-viewed-card {
        flex: 0 0 calc((100% - 30px) / 4);
        width: calc((100% - 30px) / 4);
        max-width: calc((100% - 30px) / 4);
        min-width: 140px;
    }
}

/* ── Mobile Responsive (EXACTLY 3 FULL CARDS in 1 Line) ── */
@media (max-width: 767px) {
    .recently-viewed-track {
        gap: 8px;
        padding-bottom: 8px;
    }

    .recently-viewed-card {
        flex: 0 0 calc((100% - 16px) / 3);
        width: calc((100% - 16px) / 3);
        max-width: calc((100% - 16px) / 3);
        min-width: 92px;
        border-radius: 10px;
        border-width: 1px;
    }

    .rv-img-box {
        aspect-ratio: 1 / 1.12;
    }

    .rv-discount-badge {
        font-size: 0.48rem;
        padding: 1px 3px;
        top: 4px;
        left: 4px;
        border-radius: 3px;
    }

    .rv-quick-view-btn {
        width: 20px;
        height: 20px;
        bottom: 4px;
        right: 4px;
    }

    .rv-quick-view-btn svg {
        width: 11px;
        height: 11px;
    }

    .rv-card-body {
        padding: 5px 5px 6px 5px;
    }

    .rv-card-cat {
        font-size: 0.48rem;
        margin-bottom: 1px;
    }

    .rv-card-title {
        font-size: 0.65rem;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .rv-price-wrap {
        gap: 3px;
        margin-bottom: 4px;
    }

    .rv-price-curr {
        font-size: 0.72rem;
    }

    .rv-price-old {
        font-size: 0.56rem;
    }

    .rv-add-btn {
        height: 22px;
        font-size: 0.60rem;
        border-radius: 4px;
        gap: 2px;
    }

    .rv-add-btn svg {
        width: 10px;
        height: 10px;
    }

    .rv-scroll-nav-btns {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 20: RECOMMENDED FOR YOU (2-LINE HORIZONTAL SCROLL)
   Desktop: 5 Cards / Row (10 Visible) • Mobile: 2 Cards / Row (4 Visible)
   ═══════════════════════════════════════════════════════════════════ */
.rec-section {
    background: radial-gradient(circle at 12% 25%, rgba(197, 168, 89, 0.09) 0%, rgba(253, 250, 245, 0.96) 45%, #FAF7F2 100%);
    position: relative;
    overflow: hidden;
    padding: 44px 0 48px 0;
    border-top: 1px solid #EDE8DE;
    border-bottom: 1px solid #EDE8DE;
}

.rec-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(138, 104, 31, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rec-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 14px;
}

.rec-ai-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.rec-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #8A681F 0%, #C5A859 100%);
    color: #FFFFFF;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(138, 104, 31, 0.25);
}

.rec-sparkle {
    display: inline-block;
    animation: recSparkleSpin 2.5s infinite ease-in-out;
}

@keyframes recSparkleSpin {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.25) rotate(15deg); }
}

.rec-match-pill {
    font-size: 0.62rem;
    font-weight: 800;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 3px 8px;
    border-radius: 999px;
}

.rec-title {
    font-size: clamp(1.30rem, 3vw, 1.85rem);
    font-weight: 800;
    font-family: 'Cinzel', serif, Georgia;
    color: #1C1917;
    margin: 0 0 4px 0;
    letter-spacing: 0.01em;
}

.rec-subtitle {
    font-size: clamp(0.74rem, 1.8vw, 0.86rem);
    color: #78716C;
    margin: 0;
    font-weight: 500;
    max-width: 620px;
    line-height: 1.4;
}

.rec-header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rec-autoscroll-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    border: 1.5px solid #EDE8DE;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #8A681F;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.rec-autoscroll-pill:hover {
    border-color: #8A681F;
    background: #FAF5E8;
}

.rec-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    animation: recPulse 1.6s infinite;
}

@keyframes recPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.rec-nav-arrows {
    display: flex;
    gap: 6px;
}

.rec-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #EDE8DE;
    background: #FFFFFF;
    color: #1C1917;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    padding: 0;
}

.rec-arrow-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
}

.rec-arrow-btn:hover {
    background: #8A681F;
    color: #FFFFFF;
    border-color: #8A681F;
    transform: scale(1.06);
}

/* Category Filter Pills */
.rec-filter-pills-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 14px 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rec-filter-pills-bar::-webkit-scrollbar {
    display: none;
}

.rec-filter-pill {
    flex: 0 0 auto;
    background: #FFFFFF;
    border: 1.5px solid #EDE8DE;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #57534E;
    cursor: pointer;
    transition: all 0.22s ease;
    user-select: none;
}

.rec-filter-pill:hover {
    border-color: #C5A859;
    color: #8A681F;
    background: #FAF5E8;
}

.rec-filter-pill.active {
    background: linear-gradient(135deg, #8A681F 0%, #705417 100%);
    color: #FFFFFF;
    border-color: #8A681F;
    box-shadow: 0 4px 12px rgba(138, 104, 31, 0.22);
}

/* 2-Line Multi-Row Scrolling Track */
.rec-scroll-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rec-scroll-track {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 5);
    gap: 14px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px 2px 16px 2px;
    align-items: stretch;
}

.rec-scroll-track::-webkit-scrollbar {
    display: none;
}

/* Luxury Product Card */
.rec-card {
    background: #FFFFFF;
    border: 1.5px solid #EDE8DE;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    box-sizing: border-box;
    position: relative;
}

.rec-card:hover {
    border-color: #C5A859;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(138, 104, 31, 0.16);
}

.rec-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    background: #FAF7F2;
    flex-shrink: 0;
}

.rec-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.rec-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.rec-card:hover .rec-card-img {
    transform: scale(1.06);
}

.rec-badges-top {
    position: absolute;
    top: 6px;
    left: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.rec-badge-ai {
    background: linear-gradient(135deg, #8A681F 0%, #C5A859 100%);
    color: #FFFFFF;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(138, 104, 31, 0.3);
}

.rec-badge-disc {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #FFFFFF;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.35);
}

.rec-overlay-actions {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.rec-action-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid #EDE8DE;
    color: #1C1917;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.rec-action-btn svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.rec-action-btn:hover {
    background: #8A681F;
    color: #FFFFFF;
    border-color: #8A681F;
    transform: scale(1.1);
}

/* Scrollbar Track for Recommended Section */
.rec-scrollbar-track {
    width: 100%;
    height: 4px;
    background: #EDE8DE;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
    position: relative;
}

.rec-scrollbar-thumb {
    height: 100%;
    width: 15%;
    background: #8A681F;
    border-radius: 2px;
    transition: transform 0.1s ease;
}

/* ── Tablet Responsive (3 Cards / Row in 2 Lines) ── */
@media (max-width: 1023px) and (min-width: 768px) {
    .rec-scroll-track {
        grid-auto-columns: calc((100% - 24px) / 3);
        gap: 12px;
    }
}

/* ── Mobile Responsive (EXACTLY 2 CARDS / ROW in 2 Lines) ── */
@media (max-width: 767px) {
    .rec-section {
        padding: 28px 0 32px 0;
    }

    .rec-scroll-track {
        grid-auto-columns: calc((100% - 10px) / 2);
        gap: 10px;
        padding-bottom: 8px;
    }

    .rec-card {
        border-radius: 10px;
        border-width: 1px;
    }

    .rec-img-wrap {
        aspect-ratio: 1 / 1.15;
    }

    .rec-badges-top {
        top: 4px;
        left: 4px;
        gap: 2px;
    }

    .rec-badge-ai, .rec-badge-disc {
        font-size: 0.48rem;
        padding: 1px 3px;
        border-radius: 3px;
    }

    .rec-overlay-actions {
        top: 4px;
        right: 4px;
        gap: 3px;
    }

    .rec-action-btn {
        width: 20px;
        height: 20px;
    }

    .rec-action-btn svg {
        width: 10px;
        height: 10px;
    }

    .rec-nav-arrows {
        display: none !important;
    }
}

