/* ==========================================================================
   HOME.CSS
========================================================================== */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CSS VARIABLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.homepage {
    /* Brand */
    --navy: #010F1C;
    --nav: #010F1C;
    --orange: #e47911;
    --cta: #ff9900;
    --cta-h: #e47911;
    --cta-glow: rgba(255, 153, 0, 0.35);
    --red: #cc0c39;
    --green: #007600;
    --blue: #007185;

    /* Surfaces */
    --bg-page: #f0f2f5;
    --bg-white: #ffffff;
    --bg-light: #f7f8fa;
    --bg-dark: #010F1C;
    --bg-card: #ffffff;

    /* Text */
    --tx-dark: #010F1C;
    --tx-mid: #4a4f54;
    --tx-muted: #8a9099;
    --tx-white: #ffffff;

    /* Borders */
    --bd: #e2e5ea;
    --bd-dark: rgba(255, 255, 255, 0.08);

    /* Radius */
    --rad: 6px;
    --rad-lg: 10px;
    --rad-xl: 14px;

    /* Shadows */
    --sh: 0 1px 4px rgba(0, 0, 0, .07);
    --sh-md: 0 2px 8px rgba(0, 0, 0, .10);
    --sh-lg: 0 4px 16px rgba(0, 0, 0, .12);
    --sh-cta: 0 8px 28px rgba(255, 153, 0, 0.35);

    /* Motion */
    --tr: 0.18s ease;
    --tr-mid: 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    --tr-slow: 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);

    /* Layout */
    --sidebar-width: 220px;
    --banner-strip-gap: 12px;
    --btn-h: 42px;
    --slider-max-h: min(calc(100vh - 130px), 750px);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS — Professional
══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Up (default) */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom In */
.reveal-zoom {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* Rotate In */
.reveal-rotate {
    opacity: 0;
    transform: rotate(-3deg) translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-rotate.visible {
    opacity: 1;
    transform: rotate(0) translateY(0);
}

/* Flip In */
.reveal-flip {
    opacity: 0;
    transform: perspective(800px) rotateY(-15deg) translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
}

.reveal-flip.visible {
    opacity: 1;
    transform: perspective(800px) rotateY(0) translateY(0);
}

/* Bounce In */
.reveal-bounce {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-bounce.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In from Bottom with Blur */
.reveal-blur {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(8px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-blur.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Staggered Delays for Child Elements */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* Grid Stagger (for row-based layouts) */
.grid-stagger > [class*="col-"] {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.grid-stagger.visible > [class*="col-"]:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(10) { transition-delay: 0.5s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(11) { transition-delay: 0.55s; opacity: 1; transform: translateY(0) scale(1); }
.grid-stagger.visible > [class*="col-"]:nth-child(12) { transition-delay: 0.6s; opacity: 1; transform: translateY(0) scale(1); }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-zoom,
    .reveal-rotate,
    .reveal-flip,
    .reveal-bounce,
    .reveal-blur {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .stagger-children > *,
    .grid-stagger > [class*="col-"] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REGISTERED PROPERTIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REDUCED MOTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (prefers-reduced-motion: reduce) {
    .slide img {
        transform: none !important;
    }

    .brands-ticker {
        animation: none !important;
    }

    .nl-circle {
        animation: none !important;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAMES  (single source of truth — no duplicates)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

@keyframes shimmer-move {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes badge-shine {
    0% {
        transform: translateX(-100%);
    }

    20%,
    100% {
        transform: translateX(100%);
    }
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes spin-border {
    to {
        --angle: 360deg;
    }
}

@keyframes tick {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes tick-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sl-enter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes sl-exit {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes nl-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.18;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.08;
    }
}

@keyframes slideGradient {
    0% {
        background-position: 0% 0;
    }

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

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL REVEAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition: opacity 0.65s var(--tr-slow), transform 0.65s var(--tr-slow);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITY CLASSES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.si-thumb {
    border-radius: 50%;
    object-fit: cover;
    width: 28px;
    height: 28px;
}

.si-icon-folder {
    color: var(--orange);
    font-size: 1rem;
}

.mega-h-icon {
    color: var(--cta);
    margin-inline-end: 5px;
}

.widget-icon {
    color: var(--cta);
}

.icon-cta {
    color: var(--cta);
}

.timer-label {
    color: #aaa;
    font-size: 11px;
    margin-inline-end: 4px;
}

.timer-expired {
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
}

.deal-price {
    margin-bottom: 4px;
}

.mini-stars-img {
    height: 16px;
    margin: 3px 0;
    display: block;
    width: 80px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 12px;
    isolation: isolate;
    position: relative;
}

.sec-hdr::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cta) 20%, var(--orange) 50%, var(--cta) 80%, transparent);
    background-size: 200% 100%;
    opacity: 0.3;
    border-radius: 2px;
    animation: slideGradient 3s ease-in-out infinite;
}

[dir="rtl"] .sec-hdr::before {
    background: linear-gradient(-90deg, transparent, var(--cta) 20%, var(--orange) 50%, var(--cta) 80%, transparent);
    background-size: 200% 100%;
}

.sec-hdr h2 {
    font-size: 1.15rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0;
}

.sec-hdr h2 .hdr-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--cta), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 18px -4px rgba(255, 153, 0, 0.4);
    transition: all 0.35s var(--tr-slow);
    position: relative;
    overflow: hidden;
}

.sec-hdr:hover h2 .hdr-icon {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 12px 24px -3px rgba(255, 153, 0, 0.5);
}

.sec-hdr h2 .hdr-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sec-hdr h2 .hdr-label {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.sec-hdr h2 .hdr-sub {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--tx-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sec-hdr .see-all {
    font-size: 12.5px;
    color: var(--tx-mid);
    font-weight: 700;
    white-space: nowrap;
    padding: 7px 18px;
    border: 1.5px solid var(--bd);
    border-radius: 40px;
    transition: all 0.28s var(--tr-slow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sec-hdr .see-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--cta), var(--orange));
    opacity: 0;
    transition: opacity 0.25s;
    z-index: -1;
}

.sec-hdr .see-all:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -4px rgba(255, 153, 0, 0.4);
}

.sec-hdr .see-all:hover::before {
    opacity: 1;
}

.sec-hdr .see-all:hover i {
    transform: translateX(4px);
}

[dir="rtl"] .sec-hdr .see-all:hover i {
    transform: translateX(-4px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO ROW
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-row {
    display: flex;
    max-height: var(--slider-max-h);
    margin-top: 14px;
    border-radius: var(--rad-lg);
    overflow: hidden;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SIDEBAR CATEGORIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#sidebar-cats {
    width: var(--sidebar-width);
    flex-shrink: 0;
    background: var(--bg-white);
    border-inline-end: 1px solid var(--bd);
    position: relative;
    z-index: 99;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-title {
    background: var(--nav);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    letter-spacing: 0.02em;
    border-bottom: 2px solid var(--cta);
}

.sidebar-title i {
    color: var(--cta);
}

.sidebar-items-container {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--cta) transparent;
}

.sidebar-items-container::-webkit-scrollbar {
    width: 3px;
}

.sidebar-items-container::-webkit-scrollbar-thumb {
    background: var(--cta);
    border-radius: 2px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--tx-dark);
    border-bottom: 1px solid #f0f2f5;
    cursor: pointer;
    transition: background var(--tr), color var(--tr), padding-inline-start var(--tr);
    position: relative;
}

.sidebar-item:hover {
    background: #fffbf3;
    color: var(--cta);
    padding-inline-start: 16px;
}

.sidebar-item .si-icon {
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
    width: 24px;
}

.sidebar-item .si-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-item .si-arrow {
    font-size: 8px;
    color: var(--tx-muted);
    flex-shrink: 0;
}

[dir="rtl"] .sidebar-item .si-arrow {
    transform: scaleX(-1);
}

/* Mega Drop */
.mega-drop {
    display: none;
    position: fixed;
    inset-inline-start: calc(var(--sidebar-width) + 16px);
    width: 580px;
    max-height: min(440px, 82vh);
    background: var(--bg-white);
    border: 1px solid var(--bd);
    border-inline-start: 3px solid var(--cta);
    box-shadow: var(--sh-lg);
    z-index: 2000;
    padding: 20px;
    border-start-end-radius: var(--rad-lg);
    border-end-end-radius: var(--rad-lg);
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    overflow-y: auto;
}

.sidebar-item:hover .mega-drop {
    display: grid;
}

.mega-group h4 {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--navy);
    padding-bottom: 6px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--cta);
    display: flex;
    align-items: center;
    gap: 5px;
}

.mega-group ul li+li {
    margin-top: 4px;
}

.mega-group ul li a {
    font-size: 11.5px;
    color: var(--tx-mid);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--tr), padding-inline-start var(--tr);
}

.mega-group ul li a:hover {
    color: var(--cta);
    padding-inline-start: 4px;
}

.mega-group ul li a i {
    color: var(--orange);
    font-size: 8px;
}

.mega-featured {
    grid-column: span 3;
    border-top: 1px solid var(--bd);
    padding-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mf-card {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 130px;
    max-width: 190px;
}

.mf-card img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border: 1px solid var(--bd);
    border-radius: 6px;
    background: #f8f9fb;
    padding: 3px;
    flex-shrink: 0;
    transition: transform var(--tr);
}

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

.mf-card .mf-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--tx-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mf-card .mf-price {
    font-size: 12px;
    font-weight: 800;
    color: var(--red);
    margin-top: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SLIDER CONTAINER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.slider-banner-container {
    flex: 1;
    display: flex;
    gap: var(--banner-strip-gap);
    min-width: 0;
}

.slider-wrap {
    flex: 0 0 70%;
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--sh);
    border-radius: 0 var(--rad-lg) var(--rad-lg) 0;
}

[dir="rtl"] .slider-wrap {
    border-radius: var(--rad-lg) 0 0 var(--rad-lg);
}

.banner-strip-wrapper {
    flex: 0 0 calc(30% - var(--banner-strip-gap));
    display: flex;
    flex-direction: column;
    gap: var(--banner-strip-gap);
    max-height: 100%;
}

.banner-strip-item {
    flex: 1;
    overflow: hidden;
    border-radius: var(--rad);
}

.banner-strip-link {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--orange);
}

.banner-strip-link img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s;
}

.banner-strip-link:hover img {
    transform: scale(1.06);
    animation: sl-enter 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SLIDER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    min-height: 220px;
}

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

.slide {
    display: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slide.active {
    display: block;
    z-index: 2;
    animation: sl-enter 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.exiting {
    display: block;
    z-index: 1;
    animation: sl-exit 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 5s ease-out;
    will-change: transform;
}

.slide.active img {
    transform: scale(1);
}

/* Slide overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(115deg,
            color-mix(in srgb, var(--sl-color, #0a0e14) 85%, transparent) 0%,
            color-mix(in srgb, var(--sl-color, #0a0e14) 50%, transparent) 35%,
            color-mix(in srgb, var(--sl-color, #0a0e14) 20%, transparent) 70%,
            transparent 95%),
        linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .28) 32%, transparent 62%),
        linear-gradient(to bottom, rgba(0, 0, 0, .42) 0%, transparent 28%);
}

[dir="rtl"] .slide-overlay {
    background:
        linear-gradient(245deg,
            color-mix(in srgb, var(--sl-color, #0a0e14) 85%, transparent) 0%,
            color-mix(in srgb, var(--sl-color, #0a0e14) 50%, transparent) 35%,
            color-mix(in srgb, var(--sl-color, #0a0e14) 20%, transparent) 70%,
            transparent 95%),
        linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .28) 32%, transparent 62%),
        linear-gradient(to bottom, rgba(0, 0, 0, .42) 0%, transparent 28%);
}

@supports not (background: color-mix(in srgb, #000, #fff)) {
    .slide-overlay {
        background:
            linear-gradient(115deg, rgba(13, 17, 23, .85) 0%, rgba(13, 17, 23, .50) 35%, rgba(13, 17, 23, .20) 70%, transparent 95%),
            linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .3) 30%, transparent 60%);
    }

    [dir="rtl"] .slide-overlay {
        background:
            linear-gradient(245deg, rgba(13, 17, 23, .85) 0%, rgba(13, 17, 23, .50) 35%, rgba(13, 17, 23, .20) 70%, transparent 95%),
            linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .3) 30%, transparent 60%);
    }
}

.slide-overlay::after {
    content: '';
    position: absolute;
    top: 12%;
    bottom: 12%;
    width: 2px;
    inset-inline-start: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--cta) 35%, var(--cta) 65%, transparent 100%);
    opacity: 0.45;
    filter: blur(1px);
    box-shadow: 0 0 18px var(--cta);
}

/* Shimmer lines */
.shimmer-line {
    position: absolute;
    inset-inline: 0;
    z-index: 5;
    pointer-events: none;
    height: 2px;
}

.shimmer-line.top {
    top: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .35) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer-move 3s linear infinite;
}

.shimmer-line.bottom {
    bottom: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 153, 0, .35) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer-move 4s linear infinite reverse;
}

/* Slide badge */
.slide-badge {
    position: absolute;
    z-index: 999;
    top: 24px;
    inset-inline-start: 24px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255, 153, 0, .14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 153, 0, .5);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 6px 22px -6px var(--cta-glow);
}

.slide-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .22) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: badge-shine 4.5s ease infinite;
}

.slide-badge i {
    font-size: 12px;
    color: var(--cta);
    animation: badge-pulse 2.2s ease infinite;
}

/* Slide content */
.slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 560px;
    width: calc(100% - 160px);
    inset-inline-start: 80px;
}

.slide-content * {
    color: #fff;
}

.slide-content h1 {
    font-size: clamp(1.5rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.slide-content h1::after {
    content: '';
    position: absolute;
    bottom: -6px;
    inset-inline-start: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--cta), transparent);
    border-radius: 3px;
}

[dir="rtl"] .slide-content h1::after {
    background: linear-gradient(to left, var(--cta), transparent);
}

.slide-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 420px;
    color: rgba(255, 255, 255, .85);
    font-weight: 400;
}

.slide-content .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--cta);
    color: var(--navy);
    font-weight: 800;
    font-size: 14px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-cta);
    transition: all 0.35s var(--tr-slow);
}

.slide-content .btn-cta:hover {
    background: transparent;
    color: #fff;
    border-color: var(--cta);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -4px var(--cta-glow);
}

[dir="ltr"] .slide-content .btn-cta:hover i {
    transform: translateX(6px);
}

[dir="rtl"] .slide-content .btn-cta:hover i {
    transform: translateX(-6px) scaleX(-1);
}

/* Slider nav buttons */
.sl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 80px;
    background: rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .9);
    cursor: pointer;
    transition: all 0.35s var(--tr-slow);
}

.sl-btn:hover {
    background: var(--cta);
    border-color: var(--cta);
    color: var(--navy);
    width: 58px;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 0 24px var(--cta-glow);
}

.sl-btn.prev {
    inset-inline-start: -22px;
    border-radius: 0 28px 28px 0;
}

.sl-btn.next {
    inset-inline-end: -22px;
    border-radius: 28px 0 0 28px;
}

.sl-btn.prev:hover {
    inset-inline-start: -16px;
}

.sl-btn.next:hover {
    inset-inline-end: -16px;
}

[dir="rtl"] .sl-btn.prev {
    border-radius: 28px 0 0 28px;
}

[dir="rtl"] .sl-btn.next {
    border-radius: 0 28px 28px 0;
}


[dir="rtl"] .sl-btn i {
    transform: scaleX(-1);
}

/* Slider dots */
.sl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    align-items: center;
    padding: 6px 12px;
    background: rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.sl-dots span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all 0.35s var(--tr-slow);
}

.sl-dots span:hover {
    background: rgba(255, 255, 255, .8);
    transform: scale(1.3);
}

.sl-dots span.on {
    background: var(--cta);
    width: 28px;
    border-radius: 8px;
    box-shadow: 0 0 14px var(--cta-glow);
}

/* Slide counter */
.slide-counter {
    position: absolute;
    top: 24px;
    inset-inline-end: 30px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 3px;
    background: rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
    padding: 0 12px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.slide-counter .current {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    min-width: 30px;
    text-align: center;
}

.slide-counter .sep {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    margin: 0 2px;
}

.slide-counter .total {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    font-weight: 600;
}

/* Progress bar */
.slide-progress {
    position: absolute;
    bottom: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, var(--cta), #ffb84d, var(--cta));
    transform: scaleX(0);
    z-index: 20;
    inset-inline-start: 0;
    transform-origin: inline-start;
    box-shadow: 0 0 12px var(--cta-glow);
    transition: transform 0.12s linear;
}

[dir="rtl"] .slide-progress {
    transform-origin: right;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#trust-strip {
    background: var(--nav);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 25px;
    padding: 14px 18px;
    border-inline-end: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    transition: background var(--tr);
}

.trust-item:last-child {
    border-inline-end: none;
}

.trust-item:hover {
    background: rgba(255, 153, 0, .06);
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--rad);
    background: rgba(255, 153, 0, .1);
    border: 1px solid rgba(255, 153, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform var(--tr-mid);
}

.trust-item:hover .trust-icon {
    transform: scale(1.08) rotate(-4deg);
}

.trust-text .tt {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.trust-text .ts {
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
    margin-top: 2px;
}

.trust-text .color {
    color: var(--cta);
}

/* ── Trust Strip Mobile ────────────────────────────── */
@media (max-width: 767px) {
    #trust-strip {
        padding: 0;
    }

    #trust-strip .container-fluid {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    .trust-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .trust-item {
        width: 100%;
        padding: 14px 16px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        background: transparent;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .trust-item:hover {
        background: rgba(255, 153, 0, .06);
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .trust-text .tt {
        font-size: 12px;
    }

    .trust-text .ts {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .trust-item {
        padding: 12px 14px;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
        font-size: .9rem;
    }

    .trust-text .tt {
        font-size: 11px;
    }

    .trust-text .ts {
        font-size: 10px;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOT CATEGORIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hot-categories-section {
    padding: clamp(32px, 6vw, 80px) 0;
    overflow: hidden;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(20px, 3vw, 40px);
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
}

.section-title {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 15px);
    margin: 0;
    position: relative;
}

.title-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-icon {
    width: clamp(44px, 5vw, 56px);
    height: clamp(44px, 5vw, 56px);
    background: linear-gradient(145deg, #ff0000, #ff4757);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(20px, 2.5vw, 26px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, .3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.section-title:hover .title-icon {
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 15px 30px rgba(255, 107, 107, .4);
    background: linear-gradient(145deg, #ff4757, #ff0000);
}

.section-title:hover .title-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255, 107, 107, .3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-glow 1.5s infinite;
}

.title-content {
    display: flex;
    flex-direction: column;
}

.title-label {
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.section-title:hover .title-label {
    background: linear-gradient(135deg, #ff0000, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-sub {
    font-size: clamp(13px, 1.4vw, 16px);
    color: #7f8c8d;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.section-title:hover .title-sub {
    color: #ff0000;
}

/* Navigation */
.categories-navigation {
    display: flex;
    gap: 10px;
    background: white;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.nav-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 107, .2);
    transform: translate(-50%, -50%);
    transition: width .4s ease, height .4s ease;
}

.nav-btn:hover::before {
    width: 100%;
    height: 100%;
}

.nav-btn:hover {
    color: #ff0000;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-play-pause {
    background: #f8f9fa;
}

/* Categories Slider */
.categories-slider-container {
    position: relative;
    margin: 0 -10px;
    padding: 15px 0;
}

.categories-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Category Card */
.category-card {
    flex: 0 0 auto;
    width: auto;
    background: white;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .03);
    overflow: hidden;
    position: relative;
}

.card-inner {
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(245,158,11,.2);
}

.card-inner {
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(245,158,11,.2);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    background-size: 200% 100%;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.category-card:hover::before {
    transform: translateX(0);
    animation: gradient-shift 2s linear infinite;
}

/* Card Image */
.card-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.card-image {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f3f5, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.category-card:hover .card-image {
    transform: rotate(5deg) scale(1.1);
    border-color: #f59e0b;
    box-shadow: 0 15px 30px rgba(245,158,11,.3);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .card-image img {
    transform: scale(1.25);
}

.image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: #adb5bd;
    font-size: 32px;
}

/* Image Badge */
.image-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(145deg, #ff0000, #ff4757);
    color: white;
    font-size: 13px;
    font-weight: 700;
    min-width: 32px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    box-shadow: 0 6px 15px rgba(255, 107, 107, .4);
    border: 2px solid white;
    transition: all 0.3s ease;
    z-index: 3;
}

.category-card:hover .image-badge {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(255, 107, 107, .5);
}

/* Card Content */
.card-content {
    flex: 1;
    min-width: 0;
}

.category-name {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover .category-name {
    color: #ff0000;
    transform: translateX(5px);
}

.category-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.4s ease;
}

.category-card:hover .category-name::after {
    width: 100%;
}

.browse-all-link {
    font-size: 13px;
    color: #ff0000;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(255, 107, 107, .08);
    border-radius: 30px;
    transition: all 0.3s ease;
    width: fit-content;
    border: 1px solid rgba(255, 107, 107, .15);
}

.browse-all-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.category-card:hover .browse-all-link {
    color: white;
    transform: translateX(5px);
}

.category-card:hover .browse-all-link i {
    transform: rotate(180deg);
}

/* Category Meta */
.category-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 8px;
}

.products-count {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.category-card:hover .products-count {
    color: #ff0000;
}

.products-count i {
    color: #ff0000;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.category-card:hover .products-count i {
    transform: scale(1.2);
}

/* Trend Badge */
.trend-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.trend-badge.hot {
    background: rgba(255, 107, 107, .15);
    color: #ff0000;
}

.trend-badge.popular {
    background: rgba(255, 193, 7, .15);
    color: #ffc107;
}

.category-card:hover .trend-badge {
    transform: scale(1.05);
}

.category-card:hover .trend-badge.hot {
    color: white;
}

.category-card:hover .trend-badge.popular {
    color: white;
}

/* Products Progress */
/* Progress Bar Styling */
.products-progress {
    margin-top: 10px;
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 10px;
    position: relative;
    transition: width 0.6s ease;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

/* Dynamic colors based on percentage */
.progress-bar-fill[style*="width: 100%"] {
    background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}

.progress-bar-fill[style*="width: 80%"] {
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
}

.progress-bar-fill[style*="width: 60%"] {
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
}

.progress-bar-fill[style*="width: 40%"] {
    background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 100%);
}

.progress-bar-fill[style*="width: 20%"] {
    background: linear-gradient(90deg, #ec489a 0%, #f97316 100%);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROMO BANNERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.promo-item {
    display: block;
    border-radius: var(--rad-lg);
    overflow: hidden;
    height: 100%;
    position: relative;
    transition: box-shadow var(--tr), transform var(--tr);
}

.promo-item:hover {
    box-shadow: var(--sh-md);
}

.promo-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}

.promo-item:hover img {
    transform: scale(1.04);
}

/* Shine sweep */
.promo-item::before {
    content: "";
    position: absolute;
    inset: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .5) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#stats-section {
    margin-block: 24px;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--bd);
    border-radius: var(--rad-xl);
    padding: 24px 16px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--tr-mid), box-shadow 0.25s, border-color 0.2s;
    cursor: default;
}

.stat-card:hover {
    box-shadow: 0 10px 32px rgba(255, 153, 0, .15);
    border-color: rgba(255, 153, 0, .35);
}

.stat-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: var(--rad);
    background: linear-gradient(145deg, var(--cta), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 8px 20px -4px rgba(255, 153, 0, .45);
    transition: transform 0.35s var(--tr-slow);
}

.stat-card:hover .stat-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
}

.stat-number {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 11px;
    color: var(--tx-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TABS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tabs-wrap {
    background: var(--bg-white);
    border: 1px solid var(--bd);
    border-radius: var(--rad-lg);
    overflow: hidden;
}

.tabs-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #f7f8fb;
    border-bottom: 1px solid var(--bd);
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 17px 32px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--tx-mid);
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s, background .2s, border-color .2s;
}

.tab-btn i {
    font-size: .82rem;
    transition: transform .28s;
}

.tab-btn:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.tab-btn:hover {
    color: var(--cta);
    background: rgba(255, 153, 0, .04);
}

.tab-btn.on {
    color: var(--navy);
    border-bottom-color: var(--cta);
    background: var(--bg-white);
    font-weight: 800;
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cta);
    color: var(--navy);
    font-size: 10px;
    font-weight: 900;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    padding: 0 4px;
}

.tab-pane {
    display: none;
    animation: .3s tabFadeIn both;
}

.tab-pane.on {
    display: block;
    min-height: 100px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURED SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#featured-section {
    background: #fff;
    border: 1.5px solid #e8eaed;
    border-radius: var(--rad-xl);
    padding: 0;
    overflow: hidden;
}

#featured-section .sec-hdr {
    padding: 16px 18px;
    margin-bottom: 0;
    border-bottom: 2px solid #eef0f3;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2436 100%);
    border-radius: calc(var(--rad-xl) - 1px) calc(var(--rad-xl) - 1px) 0 0;
}

#featured-section .sec-hdr::before {
    display: none;
}

#featured-section .sec-hdr h2 .hdr-label {
    color: #fff;
}

#featured-section .sec-hdr h2 .hdr-sub {
    color: rgba(255, 255, 255, .5);
}

#featured-section .sec-hdr .see-all {
    color: var(--cta);
    border-color: rgba(255, 153, 0, .4);
    background: rgba(255, 153, 0, .07);
}

#featured-section .sec-hdr .see-all:hover {
    background: var(--cta);
    color: var(--navy);
    border-color: var(--cta);
}

#featured-section .feat-inner-row-wrap {
    padding: 14px;
}

#featured-section .feat-inner-row {
    align-items: stretch;
}

#featured-section .feat-inner-row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DEALS SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#deals-section {
    background: #f7f8fb;
    border: 1.5px solid #e8eaed;
    border-radius: var(--rad-xl);
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

#deals-section .sec-hdr {
    border-bottom: 2px solid #eef0f3;
    background: var(--navy, #010F1C);
    padding: 16px 20px 14px;
    margin-bottom: 0;
}

#deals-section .sec-hdr::before {
    display: none;
}

#deals-section .sec-hdr h2 .hdr-label {
    color: #fff;
}

#deals-section .sec-hdr h2 .hdr-sub {
    color: rgba(255, 255, 255, .5);
}

#deals-section .sec-hdr h2 .hdr-icon {
    background: var(--red);
    box-shadow: 0 8px 18px -4px rgba(204, 12, 57, .5);
}

#deals-section .sec-hdr .see-all {
    color: var(--cta);
    border-color: rgba(255, 153, 0, .4);
    background: rgba(255, 153, 0, .07);
}

#deals-section .sec-hdr .see-all:hover {
    background: var(--cta);
    color: var(--navy);
    border-color: var(--cta);
}

#deals-section .row {
    margin: 0 !important;
}

#deals-section .row>[class*="col-"] {
    padding: 0 !important;
}

.deal-card {
    background: #fff;
    border: 1px solid #e8eaed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.deal-img {
    position: relative;
    width: auto;
    height: 420px;
    overflow: hidden;
    background: #f7f8fb;
}

.deal-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
}

.deal-pct {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    z-index: 2;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
}

.deal-body {
    padding: 14px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
}

.deal-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.deal-name:hover {
    color: var(--cta);
}

.deal-timer {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #f2f4f6;
    padding: 8px 6px;
}

.dt-blk {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--navy);
    flex: 1;
}

.dt-blk+.dt-blk {
    border-inline-start: 1px solid rgba(0, 0, 0, .08);
}

.dt-blk .t-n {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
}

.dt-blk .t-l {
    font-size: .65rem;
    color: #6c757d;
    text-transform: uppercase;
    margin-top: 3px;
}

.deal-price {
    margin-bottom: 4px;
}

.deal-actions {
    display: flex;
    gap: 5px;
    align-items: stretch;
    margin-top: auto;
}

.deal-actions .product-buttons {
    flex: 1;
    min-width: 0;
}

.deal-icon-btn {
    width: var(--btn-h);
    height: var(--btn-h);
    flex-shrink: 0;
    border: 1.5px solid #dee1e6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    color: var(--tx-muted);
    cursor: pointer;
    transition: all var(--tr);
}

.deal-icon-btn.wish:hover {
    border-color: var(--red);
    color: var(--red);
    background: #fff5f7;
}

.deal-icon-btn.cmp:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: #f0f8fa;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SIDEBAR WIDGETS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sidebar-sticky {
    width: 100%;
    top: 88px;
    position: sticky;
}

.widget {
    background: var(--bg-white);
    border: 1px solid var(--bd);
    border-radius: var(--rad-lg);
    padding: 15px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow var(--tr);
}

.widget:last-child {
    margin-bottom: 0;
}

.widget:hover {
    box-shadow: var(--sh-md);
}

.widget-deals {
    border-top: 3px solid var(--red);
}

.widget-bestsellers {
    border-top: 3px solid #f5c518;
}

.widget-featured {
    border-top: 3px solid var(--cta);
}

.widget-title {
    font-size: .9rem;
    font-weight: 800;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--bd);
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: -0.01em;
}

.widget-count {
    margin-inline-start: auto;
    background: var(--cta);
    color: var(--navy);
    font-size: 10px;
    font-weight: 900;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Mini card */
.mini-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 6px;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    transition: background .2s, padding-inline .2s;
    border-radius: 8px;
    cursor: pointer;
}

.mini-card:last-child {
    border-bottom: none;
}

.mini-card:hover {
    background: #fffbf3;
    padding-inline: 8px;
}

.mini-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.mini-img-wrap img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1.5px solid var(--bd);
    border-radius: var(--rad);
    background: #f7f8fb;
    padding: 3px;
    transition: border-color .2s, transform .2s;
}

.mini-card:hover .mini-img-wrap img {
    border-color: var(--cta);
    transform: scale(1.05);
}

.mini-badge {
    position: absolute;
    top: -4px;
    inset-inline-start: -4px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 4px;
    line-height: 1.4;
    z-index: 1;
}

[dir="rtl"] .mini-badge {
    inset-inline-start: auto;
    inset-inline-end: -4px;
}

.mini-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 2px;
}

.mini-nm {
    font-size: 12px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    color: var(--tx-dark);
    transition: color .2s;
}

.mini-card:hover .mini-nm {
    color: var(--cta);
}

.mini-prices {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.mini-price {
    font-size: 13px;
    font-weight: 900;
    color: var(--red);
}

.mini-price-was {
    font-size: 11px;
    color: #c0c4cb;
    text-decoration: line-through;
}

.mini-progress {
    height: 4px;
    background: #eef0f3;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 2px;
}

.mini-progress-bar {
    height: 100%;
    width: var(--bar-pct, 0%);
    background: linear-gradient(to right, var(--cta), var(--orange));
    border-radius: 3px;
    transition: width 1s cubic-bezier(.4, 0, .2, 1);
}

[dir="rtl"] .mini-progress-bar {
    background: linear-gradient(to left, var(--cta), var(--orange));
}

.mini-rank {
    position: absolute;
    inset-inline-start: -4px;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    z-index: 2;
}

.mini-rank.rank-1 {
    background: linear-gradient(135deg, #f5c518, #e47911);
}

.mini-rank.rank-2 {
    background: linear-gradient(135deg, #b8b8b8, #888);
}

.mini-rank.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
}

.mini-rank.rank-other {
    background: var(--nav);
}

.widget-bestsellers .mini-card {
    padding-inline-start: 26px;
}

[dir="rtl"] .widget-bestsellers .mini-card {
    padding-inline-start: 6px;
    padding-inline-end: 26px;
}

[dir="rtl"] .mini-rank {
    inset-inline-start: auto;
    inset-inline-end: -4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#testimonials-section {
    margin-block: 24px;
}

.testi-summary {
    background: var(--nav);
    border-radius: var(--rad-xl);
    padding: 18px 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    border: 1.5px solid rgba(255, 153, 0, .12);
}

.testi-big-score {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
}

.testi-big-score .s-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--cta);
    line-height: 1;
    letter-spacing: -.03em;
}

.testi-big-score .s-max {
    font-size: .85rem;
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
}

.testi-sum-bars {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testi-bar-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
}

.testi-bar-row .lbl {
    width: 10px;
    text-align: center;
    flex-shrink: 0;
}

.testi-bar-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, .08);
    border-radius: 3px;
    overflow: hidden;
}

.testi-bar-fill {
    height: 100%;
    background: var(--cta);
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
    width: 0;
}

.testi-bar-row .cnt {
    width: 28px;
    text-align: end;
    flex-shrink: 0;
}

.testi-sum-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.testi-all-stars {
    display: flex;
    gap: 3px;
}

.testi-all-stars i {
    color: #f5c518;
    font-size: .9rem;
}

.testi-cnt-txt {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
}

.testi-card {
    background: #fff;
    border: 1.5px solid #e8eaed;
    border-radius: var(--rad-xl);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    position: relative;
    height: 100%;
    transition: border-color var(--tr), box-shadow var(--tr);
}

.testi-card:hover {
    border-color: var(--cta);
    box-shadow: 0 4px 14px rgba(255, 153, 0, .1);
}

.testi-quote {
    color: var(--cta);
    font-size: 1.8rem;
    line-height: 1;
    opacity: .18;
    position: absolute;
    top: 14px;
    right: 16px;
}

[dir="rtl"] .testi-quote {
    right: auto;
    left: 16px;
}

.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars i {
    color: #f5c518;
    font-size: .8rem;
}

.testi-text {
    font-size: 13px;
    color: var(--tx-mid);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 10px;
    border-top: 1px solid #eef0f3;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff7e6;
    border: 2px solid #ffe0a0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 800;
    color: var(--cta);
    flex-shrink: 0;
}

.testi-name {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.testi-role {
    font-size: 11px;
    color: var(--tx-muted);
    margin-top: 1px;
}

.testi-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    background: rgba(0, 118, 0, .08);
    padding: 2px 6px;
    border-radius: 4px;
    margin-inline-start: auto;
    white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog-card {
    background: var(--bg-white);
    border-radius: var(--rad-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--tr-mid), box-shadow var(--tr-mid);
    border: 1px solid var(--bd);
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    border-color: rgba(255, 153, 0, .2);
}

.blog-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-light);
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img {
    transform: scale(1.07);
}

.blog-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 17, 23, .55) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s;
}

.blog-card:hover .blog-img-overlay {
    opacity: 1;
}

.blog-cat-pill {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    background: var(--cta);
    color: var(--navy);
    font-size: 9.5px;
    font-weight: 900;
    padding: 3px 9px;
    border-radius: var(--rad);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.blog-read-time {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    background: rgba(13, 17, 23, .75);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.blog-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #999;
}

.blog-meta-item i {
    font-size: 9.5px;
    color: var(--cta);
}

.blog-title {
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.45;
    color: var(--tx-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color .2s;
    letter-spacing: -0.01em;
}

.blog-card:hover .blog-title {
    color: var(--cta);
}

.blog-excerpt {
    font-size: 12px;
    color: var(--tx-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f2f5;
}

.blog-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--blue);
    padding: 6px 12px;
    border: 1.5px solid var(--blue);
    border-radius: var(--rad-xl);
    transition: background .2s, color .2s, transform .2s;
}

.blog-more:hover {
    background: var(--blue);
    color: #fff;
}

.blog-bookmark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    color: #bbb;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.blog-bookmark:hover {
    background: var(--cta);
    color: var(--navy);
}

.blog-no-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f3f4f6 0%, #eaecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #d0d3d8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRANDS TICKER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#brands-sec {
    background: var(--bg-white);
    border: 1px solid var(--bd);
    border-radius: 12px;
    padding: 18px 0;
}

.brands-overflow {
    overflow: hidden;
}

.brands-ticker {
    display: flex;
    gap: 14px;
    animation: 30s linear infinite tick;
    width: max-content;
}

[dir="rtl"] .brands-ticker {
    animation-name: tick-rtl;
}

.brands-ticker:hover {
    animation-play-state: paused;
}

.brand-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    background: var(--bg-light);
    border: 1px solid var(--bd);
    border-radius: var(--rad);
    flex-shrink: 0;
    transition: border-color var(--tr), box-shadow var(--tr);
}

.brand-box:hover {
    border-color: var(--cta);
    box-shadow: 0 3px 12px var(--cta-glow);
}

.brand-box img {
    height: 26px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.5;
    transition: filter var(--tr), opacity var(--tr);
}

.brand-box:hover img {
    filter: none;
    opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--cta);
    color: var(--navy);
    font-weight: 800;
    font-size: 13.5px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.28s var(--tr-slow);
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--orange);
    box-shadow: var(--sh-cta);
}

.btn-flash-more {
    margin-inline-start: auto;
    padding: 7px 16px;
    font-size: 12px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 2;
    color: var(--tx-mid);
    background: var(--bg-white);
    border: 1.5px solid var(--bd);
    border-radius: 28px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-view-more:hover {
    color: #fff;
    background: var(--cta);
    border-color: var(--cta);
    transform: translateY(-2px);
    box-shadow: 0 5px 14px var(--cta-glow);
}

.btn-view-more:hover i {
    transform: translateX(4px);
}

[dir="rtl"] .btn-view-more:hover i {
    transform: translateX(-4px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TAB PRODUCT GRID — flush grid with collapsed borders
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tabs-wrap {
    border-radius: 0;
}

.tabs-wrap .tab-pane .p-card,
.tabs-wrap .tab-pane .p-card:hover {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.tabs-wrap .tab-pane .p-card:hover .p-img img {
    transform: scale(1.06);
}

.tabs-wrap .tab-pane .p-card .p-img {
    border-radius: 0;
}

.tabs-wrap .tab-pane [class*="col-"] {
    border-right: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    padding: 0;
}

.tabs-wrap .tab-pane .product-grid-item {
    height: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE BREAKPOINTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1199px) {
    :root {
        --sidebar-width: 200px;
    }

    .mega-drop {
        inset-inline-start: calc(200px + 14px);
        width: 520px;
    }

    .slide-content {
        inset-inline-start: 64px;
        max-width: 460px;
        width: calc(100% - 140px);
    }

    .newsletter-wrap {
        gap: 24px;
    }

    .nl-badges {
        display: none;
    }
}

@media (max-width: 991px) {
    :root {
        --sidebar-width: 200px;
    }

    #sidebar-cats,
    .mega-drop {
        display: none !important;
    }

    .slide-content {
        inset-inline-start: 50px;
        max-width: 380px;
        width: calc(100% - 120px);
    }

    .slide-content h1 {
        font-size: clamp(1.35rem, 2.6vw, 2rem);
    }

    .slide-content p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .newsletter-wrap {
        gap: 18px;
    }
}

@media (max-width: 767px) {
    :root {
        --slider-max-h: min(calc(100vh - 120px), 300px);
    }

    .hero-row {
        max-height: none;
    }

    #sidebar-cats {
        width: 100%;
        border-inline-end: none;
        border-bottom: 1px solid var(--bd);
        max-height: 220px;
        display: flex;
    }

    .sidebar-items-container {
        max-height: 170px;
    }

    .slider-banner-container {
        flex-direction: column;
        width: 100%;
        max-height: none;
    }

    .slider-wrap {
        flex: none;
        width: 100%;
        border-radius: 0 0 var(--rad-lg) var(--rad-lg);
        max-height: var(--slider-max-h);
        aspect-ratio: 16 / 9;
    }

    .banner-strip-wrapper {
        flex: none;
        width: 100%;
        flex-direction: row;
        gap: 8px;
        max-height: 120px;
    }

    .slide-content {
        inset-inline-start: 38px;
        max-width: 320px;
        width: calc(100% - 88px);
    }

    .slide-content h1 {
        font-size: clamp(1.15rem, 3.8vw, 1.6rem);
        margin-bottom: 10px;
    }

    .slide-badge {
        font-size: 10px;
        padding: 5px 12px;
        top: 16px;
        inset-inline-start: 16px;
    }

    .sl-btn {
        width: 36px;
        height: 64px;
    }

    .sl-btn.prev {
        inset-inline-start: -12px;
    }

    .sl-btn.next {
        inset-inline-end: -12px;
    }

    .slide-counter {
        top: 16px;
        inset-inline-end: 16px;
        padding: 5px 10px;
    }

    .slide-counter .current {
        font-size: 18px;
    }

    .hc-nav-btn {
        display: none;
    }

    .newsletter-wrap {
        flex-direction: column;
        padding: 24px 18px;
        gap: 16px;
        text-align: center;
    }

    .nl-visual {
        display: none;
    }

    .nl-input-wrap {
        max-width: 100%;
    }

    .nl-privacy {
        justify-content: center;
    }

    .stat-card {
        padding: 20px 13px 16px;
    }

    .testi-summary {
        gap: 14px;
        padding: 14px 16px;
    }

    .feat-hero-img {
        min-height: 200px;
    }

    #deals-section .sec-hdr {
        margin-inline: 0;
        border-radius: 0;
        padding: 16px 16px 14px;
    }

    /* Category cards*/
    .category-card {
        min-width: 220px;
    }

    .card-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 575px) {
    :root {
        --btn-h: 38px;
    }

    .slide-content {
        inset-inline-start: 20px;
        max-width: 240px;
        width: calc(100% - 64px);
    }

    .slide-content h1 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .slide-content p {
        font-size: 12px;
        margin-bottom: 14px;
        line-height: 1.55;
    }

    .slide-content .btn-cta {
        padding: 9px 16px;
        font-size: 12px;
    }

    .banner-strip-wrapper {
        display: none;
    }

    .newsletter-wrap {
        padding: 20px 14px;
    }

    .nl-btn {
        padding: 0 14px;
        font-size: 12px;
    }

    #featured-section .feat-inner-row-wrap {
        padding: 10px;
    }

    .feat-hero-body {
        padding: 11px;
    }

    .feat-card-body {
        padding: 8px 9px 10px;
    }

    .product-buttons .number {
        width: 54px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .slider-wrap {
        max-height: 240px;
    }

    .slide-content {
        inset-inline-start: 14px;
        max-width: 200px;
        width: calc(100% - 50px);
    }

    .slide-content h1 {
        font-size: 1rem;
    }

    .slide-badge {
        font-size: 9px;
        padding: 4px 10px;
        top: 11px;
        inset-inline-start: 11px;
    }

    .sl-btn {
        width: 32px;
        height: 54px;
        font-size: .9rem;
    }

    .sl-btn.prev {
        inset-inline-start: -9px;
    }

    .sl-btn.next {
        inset-inline-end: -9px;
    }

    .slide-counter {
        display: none;
    }

    .sl-dots {
        bottom: 12px;
        padding: 5px 10px;
    }

    .sl-dots span.on {
        width: 22px;
    }

    .sec-hdr h2 .hdr-label {
        font-size: .95rem;
    }

    .sec-hdr .see-all {
        font-size: 11.5px;
        padding: 5px 12px;
    }

    .category-card {
        min-width: 200px;
    }

    .deal-img {
        height: 300px;
    }
}

@media (max-width: 360px) {
    .slide-content {
        inset-inline-start: 10px;
        max-width: 175px;
        width: calc(100% - 40px);
    }

    .slide-content h1 {
        font-size: .9rem;
    }

    .product-buttons .number {
        width: 46px;
    }
}

@media (max-width: 991px) {
    .tab-btn {
        padding: 14px 20px;
        font-size: 11.5px;
    }

    .tab-count {
        font-size: 9px;
        min-width: 16px;
        height: 16px;
    }
}

@media (max-width: 767px) {
    .tabs-nav {
        position: sticky;
        top: 0;
        z-index: 200;
        background: #f7f8fb;
        border-bottom: 1px solid var(--bd);
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 12px 16px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
        gap: 5px;
    }

    .tab-btn i {
        font-size: 12px;
    }

    .tab-count {
        font-size: 8px;
        min-width: 15px;
        height: 15px;
        padding: 0 3px;
    }

    .p-body {
        padding: 8px 10px 10px;
        gap: 5px;
    }

    .p-name {
        font-size: 12px;
        -webkit-line-clamp: 1;
        line-height: 1.3;
    }

    .p-img img {
        padding: 10px;
    }

    .p-stars img {
        height: 13px;
    }

    .p-stars span {
        font-size: 10px;
    }

    .price-now {
        font-size: 13px;
    }

    .price-was {
        font-size: 10px;
    }

    .product-buttons {
        gap: 4px;
    }

    .product-buttons .number {
        width: 44px;
        padding: 4px 4px;
        font-size: 12px;
    }

    .product-buttons .button {
        font-size: 11px;
    }

    .btn-body {
        gap: 4px;
        font-size: 11px;
    }

    .btn-body i {
        font-size: 12px;
    }

    .btn-body p {
        font-size: 10px;
    }

    .action-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .p-badge {
        font-size: 9px;
        padding: 3px 8px;
        top: 6px;
        left: 6px;
    }

    [dir="rtl"] .p-badge {
        left: auto;
        right: 6px;
    }
}

@media (max-width: 575px) {
    .tabs-wrap {
        margin-inline: -8px;
        border-radius: 0;
    }

    .tabs-nav {
        padding: 0 8px;
    }

    .tab-btn {
        padding: 10px 12px;
        font-size: 10px;
    }

    .tab-btn i {
        font-size: 11px;
    }

    .tab-count {
        display: none;
    }

    .p-body {
        padding: 6px 8px 8px;
        gap: 4px;
    }

    .p-name {
        font-size: 11px;
    }

    .p-stars img {
        height: 12px;
    }

    .price-now {
        font-size: 12px;
        font-weight: 700;
    }

    .price-was {
        font-size: 9px;
    }

    .product-buttons .number {
        width: 40px;
        font-size: 11px;
        padding: 3px 2px;
    }

    .btn-body p {
        display: none;
    }

    .btn-body i {
        font-size: 13px;
    }

    .p-img img {
        padding: 8px;
    }

    .p-badge {
        font-size: 8px;
        padding: 2px 6px;
        top: 4px;
        left: 4px;
    }

    [dir="rtl"] .p-badge {
        left: auto;
        right: 4px;
    }

    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .tooltip {
        display: none;
    }
}

@media (max-width: 400px) {
    .col-6.col-sm-4.col-md-4.col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .p-body {
        padding: 5px 6px 7px;
    }

    .p-name {
        font-size: 10px;
        -webkit-line-clamp: 2;
    }

    .price-now {
        font-size: 11px;
    }

    .product-buttons {
        gap: 3px;
    }

    .product-buttons .number {
        width: 36px;
        font-size: 10px;
    }

    .btn-body i {
        font-size: 12px;
    }
}

@media (max-height: 600px) {
    .slide-content {
        top: 44%;
    }

    .slide-content h1 {
        margin-bottom: 6px;
    }

    .slide-content p {
        margin-bottom: 12px;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATEGORY SPARKLE HOVER EFFECTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cat-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 1;
}
.category-card:hover .cat-sparkles { opacity: 1; }
.cat-sparkles span {
    position: absolute;
    display: block;
    border-radius: 50%;
}
.cat-sparkles .sp1 { width: 5px; height: 5px; background: #fbbf24; top: 8%; left: 12%; animation: spFloat1 1.2s ease-in-out infinite; }
.cat-sparkles .sp2 { width: 3px; height: 3px; background: #fcd34d; top: 20%; right: 18%; animation: spFloat2 1.5s ease-in-out infinite 0.2s; }
.cat-sparkles .sp3 { width: 6px; height: 6px; background: #f59e0b; top: 55%; left: 8%; animation: spFloat1 1.8s ease-in-out infinite 0.4s; }
.cat-sparkles .sp4 { width: 3px; height: 3px; background: #fbbf24; top: 70%; right: 12%; animation: spFloat2 1.3s ease-in-out infinite 0.6s; }
.cat-sparkles .sp5 { width: 4px; height: 4px; background: #fde68a; top: 35%; left: 85%; animation: spFloat1 1.6s ease-in-out infinite 0.3s; }
.cat-sparkles .sp6 { width: 7px; height: 7px; background: #f59e0b; top: 45%; left: 55%; animation: spPulse 2s ease-in-out infinite 0.5s; }
.cat-sparkles i {
    position: absolute;
    font-style: normal;
    font-size: 11px;
    animation: spStar 2s ease-in-out infinite;
    color: #fbbf24;
}
.cat-sparkles .star1 { top: 4%; left: 22%; animation-delay: 0s; }
.cat-sparkles .star2 { top: 25%; right: 8%; animation-delay: 0.4s; }
.cat-sparkles .star3 { bottom: 12%; left: 28%; animation-delay: 0.8s; }
.cat-sparkles .star4 { top: 60%; left: 72%; animation-delay: 1.2s; }
.cat-sparkles .star5 { top: 12%; right: 32%; animation-delay: 0.6s; }
.cat-sparkles .star6 { bottom: 30%; right: 22%; animation-delay: 1s; }

.category-card:hover .image-fallback {
    color: #fff !important;
}

.category-card:hover .image-badge {
}

.category-card:hover .category-name {
    color: #d97706;
}

.category-card:hover .browse-all-link {
    color: #d97706;
}

.category-card:hover .browse-all-link i {
    color: #d97706;
}

.category-card:hover .products-count {
    color: #d97706;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(245,158,11,0.08);
}

.category-card:hover .products-count i {
    color: #d97706;
}

.products-count {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover .products-count::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
    animation: badgeShine 1.2s ease-in-out infinite;
    pointer-events: none;
    border-radius: 999px;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

.category-card:hover .trend-badge.hot {
    background: linear-gradient(145deg, #f59e0b, #d97706);
}

@keyframes spFloat1 {
    0%,100% { opacity: 0; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-14px) scale(1.6); }
}
@keyframes spFloat2 {
    0%,100% { opacity: 0; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-18px) scale(2); }
}
@keyframes spPulse {
    0%,100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.5) rotate(180deg); }
}
@keyframes spStar {
    0%,100% { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
    50% { opacity: 1; transform: translateY(-22px) rotate(180deg) scale(1.3); }
}