/* ============================================================
   WOW — Ultra-Premium Homepage Redesign Layer
   Password Mobile Store
   ============================================================ */

/* ─── PROMO ALERT BAR ─────────────────────────────────────── */
.promo-alert-bar {
    background: linear-gradient(90deg, #cc1100, #ff4e00, #cc1100);
    background-size: 200% auto;
    animation: gradientShift 4s linear infinite;
    overflow: hidden; height: 38px;
    display: flex; align-items: center;
    position: relative; z-index: 1999;
}
@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.pab-track {
    display: flex; align-items: center; gap: 1.5rem;
    white-space: nowrap;
    animation: pabScroll 30s linear infinite;
    padding-right: 2rem;
}
[dir="rtl"] .pab-track { animation-name: pabScrollRTL; }
@keyframes pabScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pabScrollRTL { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.pab-track span {
    font-size: 0.78rem; font-weight: 700; color: #fff;
    display: flex; align-items: center; gap: 0.45rem;
    letter-spacing: 0.3px;
}
.pab-track i { font-size: 0.75rem; }
.pab-sep { opacity: 0.4 !important; font-size: 1rem !important; }

/* ─── HERO TRUST BADGES ────────────────────────────────────── */
.hero-trust-badges {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeSlideUp 0.7s ease 0.38s both;
}
.htb-item {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem; font-weight: 600;
    padding: 0.35rem 0.85rem; border-radius: 50px;
}
.htb-item i { color: #ff4e00; font-size: 0.72rem; }

/* ─── PARTICLE CANVAS ─────────────────────────────────────── */
#hero-canvas {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* ─── HERO V2 — SPLIT SCREEN ──────────────────────────────── */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    background: #020408;
    margin-top: -72px;       /* Pull up under fixed nav */
    padding-top: 72px;       /* Push content below nav */
}

/* Grid line overlay */
.hero-grid-overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 65px 65px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Ambient glow layers */
.hero-v2::before {
    content: '';
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        radial-gradient(ellipse 55% 60% at 15% 55%, rgba(255,78,0,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 85% 20%, rgba(40,80,180,0.08) 0%, transparent 55%);
}

/* ─── HERO LEFT PANEL ─────────────────────────────────────── */
.hero-v2-left {
    position: relative; z-index: 3;
    padding: 9rem 3rem 8rem 8vw;
}
[dir="rtl"] .hero-v2-left { padding: 9rem 8vw 8rem 3rem; }

/* Eyebrow pill */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.65rem;
    background: rgba(255,78,0,0.1);
    border: 1px solid rgba(255,78,0,0.3);
    color: #ff4e00;
    padding: 0.42rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 1.6rem;
    animation: fadeSlideDown 0.7s ease both;
    width: fit-content;
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ff4e00;
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulseDot {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,78,0,0.5); }
    50%      { box-shadow: 0 0 0 7px rgba(255,78,0,0); }
}

/* Mega title */
.hero-mega-title {
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 900; color: #fff;
    line-height: 1.05; letter-spacing: -3px;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.7s ease 0.1s both;
}
.hero-mega-title .gold-line {
    display: block;
    background: linear-gradient(120deg, #ff4e00 0%, #ff7a40 45%, #cc1100 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-mega-title .white-line { display: block; }

/* Typed subtitle */
.hero-type-line {
    font-size: 1.05rem; color: rgba(255,255,255,0.55);
    margin-bottom: 2.5rem; line-height: 1.8; min-height: 2rem;
    animation: fadeSlideUp 0.7s ease 0.2s both;
}
.typed-cursor { color: #ff4e00; animation: blink 0.7s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* CTA row */
.hero-cta-row {
    display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
    margin-bottom: 3.5rem;
    animation: fadeSlideUp 0.7s ease 0.3s both;
}
.hero-btn-primary {
    display: inline-flex; align-items: center; gap: 0.65rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, #ff4e00 0%, #ff7a40 100%);
    color: #fff; font-weight: 800; font-size: 1rem;
    border-radius: 50px; border: none; cursor: pointer;
    box-shadow: 0 8px 32px rgba(255,78,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.2s, box-shadow 0.3s;
    text-decoration: none; position: relative; overflow: hidden;
}
.hero-btn-primary::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg); transition: left 0.6s;
}
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(255,78,0,0.55); }
.hero-btn-primary:hover::before { left: 150%; }

.hero-btn-ghost {
    display: inline-flex; align-items: center; gap: 0.65rem;
    padding: 1rem 2.2rem;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.8); font-weight: 700; font-size: 1rem;
    border-radius: 50px; border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.hero-btn-ghost:hover { border-color: #ff4e00; color: #ff4e00; background: rgba(255,78,0,0.06); }

/* Mini stats row */
.hero-mini-stats {
    display: flex; align-items: center; gap: 0;
    animation: fadeSlideUp 0.7s ease 0.45s both;
}
.hero-mini-stat { padding: 0 2rem 0 0; }
[dir="rtl"] .hero-mini-stat { padding: 0 0 0 2rem; }
.hero-mini-stat:first-child { padding-right: 2rem; }
[dir="rtl"] .hero-mini-stat:first-child { padding-left: 2rem; padding-right: 0; }
.hero-mini-stat strong {
    display: block; font-size: 2rem; font-weight: 900;
    color: #ff4e00; line-height: 1;
}
.hero-mini-stat span {
    font-size: 0.72rem; color: rgba(255,255,255,0.38);
    text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-top: 3px;
}
.hms-sep {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.08); flex-shrink: 0;
    margin: 0 2rem;
}

/* ─── HERO RIGHT — FLOATING CARDS ────────────────────────── */
.hero-v2-right {
    position: relative; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    padding: 9rem 6vw 8rem 2rem;
    height: 100%;
}
[dir="rtl"] .hero-v2-right { padding: 9rem 2rem 8rem 6vw; }

.hero-product-showcase {
    position: relative; width: 100%; max-width: 540px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-content: center;
    overflow: visible;
    scrollbar-width: none;
    padding: 1rem;
}
.hero-product-showcase::-webkit-scrollbar { display: none; }

/* Ambient orbs */
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(70px);
    pointer-events: none; z-index: 0;
}
.hero-orb-gold {
    width: 380px; height: 380px;
    top: -80px; right: -80px;
    background: radial-gradient(circle, rgba(255,78,0,0.18) 0%, transparent 70%);
    animation: orbFloat 9s ease-in-out infinite;
}
.hero-orb-blue {
    width: 260px; height: 260px;
    bottom: -40px; left: -20px;
    background: radial-gradient(circle, rgba(40,80,200,0.12) 0%, transparent 70%);
    animation: orbFloat 11s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(15px,-25px) scale(1.05); }
    66%      { transform: translate(-10px,12px) scale(0.97); }
}

/* Floating product cards — staggered grid for any count */
.hero-float-card {
    position: relative; z-index: 2;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 22px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none; display: block;
}
.hero-float-card:hover {
    box-shadow: 0 30px 70px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,78,0,0.4);
    transform: translateY(-6px) scale(1.03) !important;
    animation-play-state: paused;
}
/* Stagger odd cards down for a premium asymmetric look */
.hero-float-card:nth-child(odd) {
    animation: float1 7s ease-in-out infinite;
}
.hero-float-card:nth-child(even) {
    margin-top: 1.5rem;
    animation: float2 5.5s ease-in-out infinite;
}
/* When 3 cards: center the last card */
.hero-float-card:last-child:nth-child(odd):not(:first-child) {
    grid-column: 1 / -1;
    max-width: 220px;
    margin: 0 auto;
}
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-12px) rotate(0.5deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(0.5deg)} 50%{transform:translateY(-10px) rotate(-0.5deg)} }

.hfc-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.hfc-body { padding: 0.8rem 1rem; }
.hfc-name { font-size: 0.76rem; font-weight: 700; color: rgba(255,255,255,0.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hfc-price { font-size: 0.88rem; font-weight: 900; color: #ff4e00; margin-top: 3px; }
.hfc-badge {
    position: absolute; top: 10px; right: 10px;
    background: linear-gradient(135deg, #ff4e00, #ff7a40);
    color: #000; font-size: 0.62rem; font-weight: 900;
    padding: 3px 8px; border-radius: 20px;
}
[dir="rtl"] .hfc-badge { right: auto; left: 10px; }

/* Scroll arrow */
.hero-scroll-arrow {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.hero-scroll-arrow span {
    font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}
.scroll-chevrons i {
    display: block; color: rgba(255,255,255,0.2); font-size: 0.85rem;
    animation: chevronDrop 1.5s ease-in-out infinite;
    line-height: 1.2;
}
.scroll-chevrons i:nth-child(2) { animation-delay: 0.18s; }
.scroll-chevrons i:nth-child(3) { animation-delay: 0.36s; }
@keyframes chevronDrop {
    0%,100% { opacity: 0.2; transform: translateY(0); }
    50%      { opacity: 0.7; transform: translateY(4px); }
}

/* ─── VALUE CARDS V2 ──────────────────────────────────────── */
.value-v2-section {
    background: #08080d;
    padding: 4.5rem 5vw 3.5rem;
    border-top: 1px solid rgba(255,78,0,0.12);
}
.value-v2-inner-wrap {
    max-width: 1400px; margin: 0 auto;
}
.value-v2-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem;
}
.value-v2-card {
    position: relative;
    background: #111118; border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 2rem 1.5rem; text-align: center;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), border-color 0.35s, box-shadow 0.35s;
}
.value-v2-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #ff4e00, transparent);
    transform: scaleX(0); transition: transform 0.45s;
}
.value-v2-card:hover { transform: translateY(-6px); border-color: rgba(255,78,0,0.28); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.value-v2-card:hover::before { transform: scaleX(1); }
.v2c-icon {
    width: 62px; height: 62px; border-radius: 18px; margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(255,78,0,0.14), rgba(255,78,0,0.04));
    border: 1px solid rgba(255,78,0,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #ff4e00;
    transition: transform 0.35s, background 0.35s;
}
.value-v2-card:hover .v2c-icon { transform: scale(1.12) rotate(6deg); background: linear-gradient(135deg,rgba(255,78,0,0.25),rgba(255,78,0,0.1)); }
.value-v2-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; color: #f0f0f0; }
.value-v2-card p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
@media (max-width: 900px) { .value-v2-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .value-v2-grid { grid-template-columns: 1fr; } }

/* ─── MARQUEE V2 ──────────────────────────────────────────── */
.marquee-v2 {
    background: linear-gradient(135deg, #080500, #0e0900, #080500) !important;
    border-top: 1px solid rgba(255,78,0,0.15) !important;
    border-bottom: 1px solid rgba(255,78,0,0.15) !important;
    padding: 1rem 0 !important;
}
.marquee-v2 .marquee span {
    color: rgba(255,78,0,0.75) !important;
    font-size: 0.72rem !important; letter-spacing: 5px !important;
    font-weight: 800 !important; text-transform: uppercase !important;
}

/* ─── CATEGORY CARDS ──────────────────────────────────────── */
.cat-cards-section {
    max-width: 1400px; margin: 0 auto; padding: 5rem 5vw 4rem;
}
.cat-section-label { text-align: center; margin-bottom: 3rem; }
.cat-section-label h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--text);
    position: relative; display: inline-block;
}
.cat-section-label h2::after {
    content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg, transparent, #ff4e00, transparent); border-radius: 2px;
}
.cat-section-label p { color: var(--muted); font-size: 1rem; margin-top: 1.5rem; }

.cat-cards-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}
/* Card spans */
.cat-card-main { grid-column: 1; grid-row: 1 / 3; }
.cat-card-sm   { /* default 1 col */ }

.cat-card {
    position: relative; border-radius: 22px; overflow: hidden;
    cursor: pointer; text-decoration: none; display: block;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.45s cubic-bezier(0.23,1,0.32,1), box-shadow 0.45s;
}
.cat-card:not(.cat-card-main) { min-height: 160px; }
.cat-card-main { min-height: 336px; }
.cat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,78,0,0.35);
    z-index: 5;
}
.cat-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.65s ease;
    position: absolute; inset: 0;
}
.cat-card:hover img { transform: scale(1.12); }
.cat-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.05) 100%);
    transition: background 0.45s;
}
.cat-card:hover .cat-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 55%, rgba(255,78,0,0.04) 100%);
}
.cat-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.2rem 1.1rem; text-align: center;
}
.cat-card-icon {
    font-size: 1.8rem; margin-bottom: 0.5rem; display: block;
    filter: drop-shadow(0 2px 8px rgba(255,78,0,0.6));
    transition: transform 0.35s;
}
.cat-card-main .cat-card-icon { font-size: 2.6rem; }
.cat-card:hover .cat-card-icon { transform: translateY(-5px) scale(1.2); }
.cat-card-name {
    font-size: 0.9rem; font-weight: 800; color: #fff;
    letter-spacing: 0.5px; text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}
.cat-card-main .cat-card-name { font-size: 1.3rem; }
.cat-card-name small {
    display: block; font-size: 0.72rem; font-weight: 500;
    color: rgba(255,255,255,0.45); margin-top: 3px;
}

/* Gold border on hover */
.cat-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 22px;
    border: 2px solid transparent;
    transition: border-color 0.45s;
    pointer-events: none; z-index: 3;
}
.cat-card:hover::after { border-color: rgba(255,78,0,0.4); }

@media (max-width: 1100px) {
    .cat-cards-grid { grid-template-columns: 2fr 1fr 1fr 1fr; grid-template-rows: auto auto; }
    .cat-card-main { grid-column:1; grid-row:1/3; }
}
@media (max-width: 768px) {
    .cat-cards-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: none; }
    .cat-card-main { grid-column:span 1; grid-row: auto; min-height: 180px; }
    .cat-card:not(.cat-card-main) { min-height: 140px; }
    .cat-cards-section { padding: 3rem 1.5rem 2.5rem; }
}
@media (max-width: 480px) {
    .cat-cards-grid { grid-template-columns: repeat(2,1fr); }
}

/* ─── FLASH SALE — REDESIGNED ─────────────────────────────── */
.flash-v2-wrap {
    background: #060304;
    position: relative; overflow: hidden;
    border-top: 1px solid rgba(255,78,0,0.2);
    border-bottom: 1px solid rgba(255,78,0,0.12);
}
.flash-v2-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 900px; height: 280px; border-radius: 50%; pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,78,0,0.14) 0%, transparent 70%);
}

/* Header */
.flash-v2-header {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.2rem;
    max-width: 1400px; margin: 0 auto;
    padding: 1.75rem 5vw;
    border-bottom: 1px solid rgba(255,78,0,0.1);
    position: relative; z-index: 1;
}

/* Left: icon + title */
.flash-v2-left { display: flex; align-items: center; gap: 1rem; }
.flash-fire-icon {
    width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #ff4e00, #cc1100);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    box-shadow: 0 0 0 8px rgba(255,78,0,0.1), 0 8px 24px rgba(255,78,0,0.4);
    animation: firePulse 2.5s ease-in-out infinite;
}
@keyframes firePulse {
    0%,100% { box-shadow: 0 0 0 8px rgba(255,78,0,0.12), 0 8px 24px rgba(255,78,0,0.35); }
    50%      { box-shadow: 0 0 0 14px rgba(255,78,0,0.06), 0 8px 36px rgba(255,78,0,0.55); }
}
.flash-title-wrap { display: flex; flex-direction: column; gap: 4px; }
.flash-title-row { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.flash-title-wrap h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 900; line-height: 1;
    background: linear-gradient(120deg, #ffffff 0%, #ff9060 60%, #ff4e00 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.flash-title-wrap p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 1px; }
.flash-live-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,78,0,0.1); border: 1px solid rgba(255,78,0,0.35);
    color: #ff7a40; font-size: 0.65rem; font-weight: 800;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 50px;
}
.flash-live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #ff4e00; animation: pulseDot 1.4s ease infinite; flex-shrink: 0;
}

/* Countdown timer */
.flash-v2-timer { display: flex; align-items: center; gap: 6px; }
.fv2-block {
    text-align: center; min-width: 64px;
    background: rgba(255,78,0,0.06);
    border: 1px solid rgba(255,78,0,0.22);
    border-radius: 12px; padding: 10px 16px;
    position: relative; overflow: hidden;
}
.fv2-block::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,78,0,0.7), transparent);
}
.fv2-block span {
    display: block; font-size: 2rem; font-weight: 900; color: #fff;
    line-height: 1; font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(255,78,0,0.55);
}
.fv2-block small {
    display: block; font-size: 0.58rem; font-weight: 700;
    color: rgba(255,78,0,0.65); text-transform: uppercase;
    letter-spacing: 2px; margin-top: 5px;
}
.fv2-sep {
    font-size: 1.8rem; font-weight: 900; color: #ff4e00;
    opacity: 0.5; line-height: 1; padding-bottom: 18px;
}

/* Products scroll */
.flash-v2-inner {
    max-width: 1400px; margin: 0 auto;
    padding: 1.75rem 5vw 2rem;
    position: relative; z-index: 1;
}
.flash-products-scroll {
    display: flex; gap: 1rem;
    overflow-x: auto; padding-bottom: 6px;
    scrollbar-width: none;
}
.flash-products-scroll::-webkit-scrollbar { display: none; }

/* Compact deal card */
.flash-deal-card {
    flex: 0 0 195px; min-width: 195px;
    background: #111118; border: 1px solid rgba(255,78,0,0.1);
    border-radius: 16px; overflow: hidden; cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
}
.flash-deal-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,78,0,0.45);
    box-shadow: 0 18px 45px rgba(0,0,0,0.55), 0 0 25px rgba(255,78,0,0.1);
}
.fdc-img {
    position: relative; height: 155px; overflow: hidden;
    background: #1a1a24;
}
.fdc-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.flash-deal-card:hover .fdc-img img { transform: scale(1.1); }
.fdc-badge {
    position: absolute; top: 9px;
    right: 9px;
    background: linear-gradient(135deg, #ff4e00, #cc1100);
    color: #fff; font-size: 0.7rem; font-weight: 900;
    padding: 3px 9px; border-radius: 50px;
    box-shadow: 0 3px 10px rgba(255,78,0,0.45);
    letter-spacing: 0.3px;
}
[dir="rtl"] .fdc-badge { right: auto; left: 9px; }
.fdc-body { padding: 11px 13px 13px; }
.fdc-name {
    font-size: 0.8rem; font-weight: 700; color: #f0f0f0;
    line-height: 1.35; margin-bottom: 7px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
    min-height: 2.2em;
}
.fdc-rating {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.72rem; color: rgba(255,255,255,0.45);
    margin-bottom: 7px;
}
.fdc-rating i { color: #ff4e00; font-size: 0.68rem; }
.fdc-prices { display: flex; align-items: baseline; gap: 5px; margin-bottom: 10px; flex-wrap: wrap; }
.fdc-price-new { font-size: 1rem; font-weight: 900; color: #fff; }
.fdc-price-old { font-size: 0.74rem; color: rgba(255,255,255,0.28); text-decoration: line-through; }
.fdc-btn {
    width: 100%; background: linear-gradient(135deg, #ff4e00, #cc1100);
    color: #fff; border: none; border-radius: 10px;
    padding: 8px 0; font-size: 0.78rem; font-weight: 700;
    cursor: pointer; font-family: var(--font);
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(255,78,0,0.3);
}
.fdc-btn:hover { opacity: 0.88; transform: scale(1.03); }

/* View all card */
.flash-view-all-card {
    flex: 0 0 140px; min-width: 140px; min-height: 240px;
    border: 1px dashed rgba(255,78,0,0.3);
    border-radius: 16px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; cursor: pointer;
    color: rgba(255,255,255,0.45); font-size: 0.82rem; font-weight: 700;
    text-decoration: none; text-align: center; padding: 1rem;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.flash-view-all-card i:first-child { font-size: 1.6rem; color: rgba(255,78,0,0.4); transition: color 0.3s; }
.flash-view-all-card:hover {
    border-color: rgba(255,78,0,0.6); color: #ff7a40;
    background: rgba(255,78,0,0.04);
}
.flash-view-all-card:hover i:first-child { color: #ff4e00; }

/* Mobile */
@media (max-width: 600px) {
    .flash-v2-header { padding: 1.25rem 1.5rem; }
    .fv2-block { min-width: 54px; padding: 8px 12px; }
    .fv2-block span { font-size: 1.6rem; }
    .flash-deal-card { flex: 0 0 165px; min-width: 165px; }
    .fdc-img { height: 130px; }
    .flash-view-all-card { flex: 0 0 115px; min-width: 115px; min-height: 210px; }
}

/* ─── GLOW SECTION HEADER ─────────────────────────────────── */
.glow-section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap;
}
.glow-section-title { display: flex; align-items: center; gap: 0.85rem; }
.gst-icon {
    width: 42px; height: 42px; border-radius: 13px;
    background: linear-gradient(135deg, #ff4e00, #ff7a40);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #000; flex-shrink: 0;
    box-shadow: 0 5px 16px rgba(255,78,0,0.38);
}
.gst-text h3 { font-size: 1.3rem; font-weight: 900; color: var(--text); line-height: 1.1; }
.gst-text small { font-size: 0.78rem; color: var(--muted); }
.gst-view-all {
    font-size: 0.85rem; font-weight: 700; color: #ff4e00;
    padding: 0.4rem 1.1rem; border: 1px solid rgba(255,78,0,0.3); border-radius: 50px;
    display: flex; align-items: center; gap: 0.4rem;
    transition: background 0.3s, color 0.3s; white-space: nowrap;
    text-decoration: none;
}
.gst-view-all:hover { background: #ff4e00; color: #000; }

/* ─── TRUST V2 ────────────────────────────────────────────── */
.trust-v2 {
    padding: 4rem 5vw;
    background: #060609;
    border-top: 1px solid rgba(255,78,0,0.15);
    border-bottom: 1px solid rgba(255,78,0,0.15);
}
.trust-v2-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1rem; text-align: center; align-items: center;
}
.trust-v2-item {}
.trust-v2-item strong {
    display: block; font-size: 3rem; font-weight: 900; color: #ffffff;
    line-height: 1; font-variant-numeric: tabular-nums;
    text-shadow: 0 0 30px rgba(255,78,0,0.4);
}
.trust-v2-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; font-weight: 600; }
.trust-v2-sep { width: 1px; background: rgba(255,78,0,0.2); margin: 0 auto; height: 60px; }
@media (max-width: 700px) {
    .trust-v2-inner { grid-template-columns: repeat(2,1fr); }
    .trust-v2-sep { display: none; }
}

/* ─── NEWSLETTER V2 ───────────────────────────────────────── */
.newsletter-v2 {
    background: linear-gradient(135deg, #060400 0%, #150d00 50%, #060400 100%);
    padding: 6rem 5vw;
    position: relative; overflow: hidden;
}
.newsletter-v2::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(255,78,0,0.1) 0%, transparent 60%);
}
.newsletter-v2-inner {
    max-width: 620px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.nl-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,78,0,0.12); border: 1px solid rgba(255,78,0,0.25);
    color: #ff4e00; padding: 0.4rem 1.1rem; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.newsletter-v2-inner h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 900; color: #fff;
    margin-bottom: 0.75rem; line-height: 1.15;
}
.newsletter-v2-inner p { color: rgba(255,255,255,0.45); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.nl-form {
    display: flex; gap: 0.75rem; max-width: 500px; margin: 0 auto 1rem;
}
.nl-form input {
    flex: 1; padding: 0.95rem 1.3rem;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px; color: #fff; font-family: var(--font); font-size: 0.95rem;
    outline: none; transition: border-color 0.3s;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.nl-form input:focus { border-color: #ff4e00; }
.nl-form .nl-btn {
    white-space: nowrap; padding: 0.95rem 1.8rem; border-radius: 50px;
    background: linear-gradient(135deg, #ff4e00, #ff7a40);
    color: #fff; font-weight: 800; font-size: 0.95rem;
    border: none; cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(255,78,0,0.35);
}
.nl-form .nl-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,78,0,0.5); }
.nl-privacy { font-size: 0.76rem; color: rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
@media (max-width: 560px) {
    .nl-form { flex-direction: column; }
    .nl-form input, .nl-form .nl-btn { border-radius: 14px; width: 100%; }
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(45px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }
.reveal-left { opacity:0; transform: translateX(-40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right { opacity:0; transform: translateX(40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform: none; }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Hero Right animate in */
.hero-v2-right { animation: fadeSlideRight 0.9s ease 0.2s both; }

/* ─── RESPONSIVE HERO ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-v2 { grid-template-columns: 1fr; min-height: auto; }
    .hero-v2-left { padding: 9rem 2rem 4rem; }
    .hero-v2-right { display: none; }
    .hero-mini-stats { gap: 1rem; }
}
@media (max-width: 768px) {
    /* Shrink hero to fit above bottom app bar */
    .hero-v2 { min-height: calc(100dvh - 64px - env(safe-area-inset-bottom, 0px)); }
    .hero-v2-left { padding: 5rem 1.5rem 2rem; }
    /* Trust badges: more compact on mobile */
    .hero-trust-badges { gap: 0.4rem; margin-bottom: 1rem; }
    .htb-item { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
}
@media (max-width: 600px) {
    .hero-mega-title { letter-spacing: -1.5px; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; }
    .hero-btn-primary, .hero-btn-ghost { width: 100%; justify-content: center; }
    .hero-mini-stats { gap: 0.5rem; }
    .hms-sep { margin: 0 1rem; }
}

/* ─── PROMO BANNER ENHANCED ───────────────────────────────── */
.lpb-badge {
    background: rgba(255,78,0,0.14) !important;
    color: #ff4e00 !important;
    border: 1px solid rgba(255,78,0,0.3) !important;
    font-size: 0.76rem !important;
    padding: 0.35rem 1rem !important;
    border-radius: 50px !important;
}

/* ─── BRAND IDENTITY — ORANGE + RED ───────────────────────── */
/* Hero gradient background matches brand */
.hero-v2 {
    background: linear-gradient(160deg, #020408 60%, #0d0200 100%);
}
/* Eyebrow pill uses orange */
.hero-eyebrow {
    background: rgba(255,78,0,0.1) !important;
    border-color: rgba(255,78,0,0.3) !important;
    color: #ff4e00 !important;
}
/* Pulse dot orange */
.pulse-dot { background: #ff4e00 !important; }
/* Flash section — kept as designed above, no override needed */
.flash-fire-icon { background: linear-gradient(135deg, #ff4e00, #cc1100) !important; }
/* gst-icon uses orange */
.gst-icon { background: linear-gradient(135deg, #ff4e00, #cc1100) !important; color: #fff !important; }
/* v2c-icon uses brand */
.v2c-icon { color: #ff4e00 !important; border-color: rgba(255,78,0,0.2) !important; background: rgba(255,78,0,0.08) !important; }
.value-v2-card:hover .v2c-icon { background: rgba(255,78,0,0.15) !important; }
/* value card top line */
.value-v2-card::before { background: linear-gradient(90deg, transparent, #ff4e00, transparent) !important; }
/* gst view all */
.gst-view-all { color: #ff4e00 !important; border-color: rgba(255,78,0,0.3) !important; }
.gst-view-all:hover { background: #ff4e00 !important; color: #fff !important; }
/* trust numbers */
.trust-v2-item strong { color: #ffffff !important; text-shadow: 0 0 30px rgba(255,78,0,0.45) !important; }
/* newsletter */
.newsletter-v2 { background: linear-gradient(135deg, #080000 0%, #150200 50%, #080000 100%) !important; }
.newsletter-v2::before { background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(255,78,0,0.12) 0%, transparent 60%) !important; }
.nl-badge { background: rgba(255,78,0,0.12) !important; border-color: rgba(255,78,0,0.25) !important; color: #ff4e00 !important; }
.nl-form input:focus { border-color: #ff4e00 !important; }
.nl-form .nl-btn { background: linear-gradient(135deg, #ff4e00, #cc1100) !important; box-shadow: 0 6px 20px rgba(255,78,0,0.35) !important; }
.nl-privacy i { color: #ff4e00 !important; }
/* hfc badge */
.hfc-badge { background: linear-gradient(135deg, #ff4e00, #cc1100) !important; color: #fff !important; }
/* cat card hover border */
.cat-card:hover::after { border-color: rgba(255,78,0,0.45) !important; }
.collection-circle:hover .cc-img-wrap { border-color: var(--gold) !important; }
/* Scrollbar */
::-webkit-scrollbar-thumb { background: #ff4e00 !important; }
/* Section title underline */
.cat-section-label h2::after { background: linear-gradient(90deg, transparent, #ff4e00, transparent) !important; }
/* Marquee */
.marquee-v2 { background: linear-gradient(135deg, #050000, #0c0200, #050000) !important; border-color: rgba(255,78,0,0.18) !important; }
.marquee-v2 .marquee span { color: rgba(255,78,0,0.75) !important; }

/* Latest products section container */
.latest-section-wrap {
    max-width: 1400px; margin: 4rem auto; padding: 0 5vw;
}
