    /* ========================================
   HERO QUAD - Enhanced with Animations
   ======================================== */

.ana-hero-quad {
    background: transparent;
    padding: 1.25rem 0;
    --ana-quad-inline-pad: 0.65rem;
}

    .ana-quad-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 1rem;
        min-height: 460px;
    }

    /* Main Slider */
    .ana-quad-main {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .ana-main-slider {
        position: relative;
        height: 100%;
    }

    .ana-main-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(0);
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        pointer-events: none;
        will-change: transform;
    }

    .ana-main-slide,
    .ana-main-slide:hover,
    .ana-main-slide:focus,
    .ana-main-slide *,
    a.ana-side-banner,
    a.ana-side-banner:link,
    a.ana-side-banner:visited,
    .ana-side-banner,
    .ana-side-banner:hover,
    .ana-side-banner:focus,
    .ana-side-banner:active,
    .ana-side-banner * {
        text-decoration: none !important;
    }

    .ana-main-slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 2;
    }

    .ana-main-slide.is-entering-right {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 3;
        animation: anaMainEnterRight 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }

    .ana-main-slide.is-entering-left {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 3;
        animation: anaMainEnterLeft 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }

    .ana-main-slide.is-leaving-right {
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        z-index: 2;
        animation: anaMainLeaveRight 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }

    .ana-main-slide.is-leaving-left {
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        z-index: 2;
        animation: anaMainLeaveLeft 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }

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

    @keyframes anaMainLeaveRight {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(100%);
        }
    }

    @keyframes anaMainEnterLeft {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(0);
        }
    }

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

    /* Geometric Decorations */
    .ana-slide-decor {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 1;
    }

    .ana-geo {
        position: absolute;
    }

    /* Circles */
    .ana-geo-circle {
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(2px);
    }

    .ana-geo-1 {
        width: 350px;
        height: 350px;
        top: -120px;
        right: -80px;
        animation: floatGeo 10s ease-in-out infinite;
    }

    .ana-geo-2 {
        width: 180px;
        height: 180px;
        bottom: -40px;
        left: -40px;
        background: rgba(255, 255, 255, 0.15);
        animation: floatGeo 8s ease-in-out infinite reverse;
    }

    /* Squares */
    .ana-geo-square {
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        transform: rotate(15deg);
    }

    .ana-geo-3 {
        width: 100px;
        height: 100px;
        top: 20%;
        right: 15%;
        animation: rotateGeo 15s linear infinite;
    }

    .ana-geo-4 {
        width: 60px;
        height: 60px;
        bottom: 25%;
        left: 5%;
        background: rgba(255, 255, 255, 0.12);
        animation: rotateGeo 12s linear infinite reverse;
    }

    /* Dots Grid */
    .ana-geo-dots {
        width: 200px;
        height: 200px;
        top: 10%;
        left: 30%;
        background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
        background-size: 20px 20px;
        opacity: 0.5;
    }

    /* Ring */
    .ana-geo-ring {
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.15);
        background: transparent;
    }

    .ana-geo-5 {
        width: 120px;
        height: 120px;
        bottom: 15%;
        right: 25%;
        animation: pulseRing 4s ease-in-out infinite;
    }

    @keyframes floatGeo {

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

        50% {
            transform: translate(-15px, 15px) scale(1.03);
        }
    }

    @keyframes rotateGeo {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes pulseRing {

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

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

    /* FULL BACKGROUND IMAGE */
    .ana-slide-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        z-index: 0;
    }

    /* Dark Overlay for text readability */
    .ana-slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
        z-index: 1;
    }

    /* Content positioned over background */
    .ana-slide-content {
        position: relative;
        z-index: 5;
        padding: 2.5rem 3rem;
        max-width: 500px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Title Styles */
    .ana-slide-title {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1rem;
        color: #ffffff;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .ana-slide-subtitle {
        font-size: 1.1rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 2rem;
        line-height: 1.6;
        text-shadow: 0 2px 6px rgba(0,0,0,0.3);
        max-width: 95%;
    }

    /* BUTTON STYLES - Not a link! */
    .ana-slide-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
        text-decoration: none;
        width: fit-content;
    }

    .ana-slide-btn:hover {
        background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    }

    .ana-slide-btn i {
        transition: transform 0.3s ease;
    }

    .ana-slide-btn:hover i {
        transform: translateX(4px);
    }

    /* Integrated Navigation Cards */
    .ana-nav-cards {
        position: absolute;
        bottom: 1.5rem;
        right: 2rem;
        display: flex;
        gap: 0.6rem;
        z-index: 10;
    }

    .ana-nav-card {
        width: 90px;
        height: 85px;
        border-radius: 14px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .ana-nav-card:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-4px);
    }

    .ana-nav-card.active {
        background: rgba(255, 255, 255, 0.95);
        border-color: white;
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .ana-nav-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .ana-nav-card.active .ana-nav-icon {
        background: currentColor;
    }

    .ana-nav-icon i {
        font-size: 1.1rem;
        color: white;
        transition: all 0.3s ease;
    }

    .ana-nav-card.active .ana-nav-icon i {
        color: white;
    }

    .ana-nav-label {
        font-size: 0.7rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .ana-nav-card.active .ana-nav-label {
        color: #1a1a2e;
    }

    /* Theme Colors for Active Cards */
    [data-theme="blue"] .ana-nav-card.active .ana-nav-icon {
        background: #1C61E7;
    }

    [data-theme="purple"] .ana-nav-card.active .ana-nav-icon {
        background: #7c3aed;
    }

    [data-theme="green"] .ana-nav-card.active .ana-nav-icon {
        background: #059669;
    }

    /* Slider Dots - Visible Navigation */
    .ana-slider-dots {
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.45rem;
        padding: 0.35rem 0.55rem;
        border-radius: 999px;
        background: rgba(8, 17, 38, 0.36);
        border: 1px solid rgba(255, 255, 255, 0.24);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(2, 8, 23, 0.35);
        z-index: 10;
    }

    .ana-slider-dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
        padding: 0;
        line-height: 0;
        font-size: 0;
        flex: 0 0 auto;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.52);
        border: 1px solid transparent;
        cursor: pointer;
        transition: width 0.32s ease, background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
    }

    .ana-slider-dot:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
    }

    .ana-slider-dot.active {
        width: 22px;
        min-width: 22px;
        min-height: 8px;
        border-radius: 999px;
        background: linear-gradient(90deg, #60a5fa 0%, #1d4ed8 100%);
        border-color: rgba(255, 255, 255, 0.62);
        box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25);
    }

    .ana-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
        border: 1px solid rgba(255, 255, 255, 0.36);
        color: #f8fafc;
        cursor: pointer;
        z-index: 10;
        opacity: 0.9;
        backdrop-filter: blur(10px);
        transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
        box-shadow: 0 14px 24px rgba(2, 6, 23, 0.28);
    }

    .ana-arrow i {
        font-size: 0.95rem;
    }

    .ana-arrow-prev {
        left: 1rem;
    }

    .ana-arrow-next {
        right: 1rem;
    }

    .ana-arrow:hover {
        transform: translateY(-50%) scale(1.08);
        background: linear-gradient(145deg, #1d4ed8, #3b82f6);
        border-color: rgba(255, 255, 255, 0.62);
        box-shadow: 0 18px 28px rgba(29, 78, 216, 0.42);
    }

    .ana-arrow:focus-visible {
        outline: 2px solid rgba(147, 197, 253, 0.95);
        outline-offset: 2px;
    }

    /* Right Side - Full Height Promo */
    .ana-quad-right {
        display: flex;
        flex-direction: column;
    }

    /* Promo Banner - Full Height for Desktop */
    .ana-promo-banner {
        flex: 1;
        border-radius: 16px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        text-decoration: none;
        transition: all 0.3s ease;
        min-height: 100%;
    }

    .ana-promo-banner:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    /* Promo Banner Decorations */
    .ana-banner-decor {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 1;
    }

    .ana-decor {
        position: absolute;
    }

    .ana-decor-circle-1 {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        top: -50px;
        right: -30px;
        animation: floatGeo 8s ease-in-out infinite;
    }

    .ana-decor-circle-2 {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        bottom: -20px;
        left: 30%;
        animation: floatGeo 6s ease-in-out infinite reverse;
    }

    .ana-decor-dots {
        width: 100px;
        height: 100px;
        top: 20%;
        right: 20%;
        background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px);
        background-size: 12px 12px;
        opacity: 0.5;
    }

    /* Discount Badge - Larger */
    .ana-promo-badge {
        flex-shrink: 0;
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.45);
        z-index: 2;
        animation: pulseBadge 2s ease-in-out infinite;
    }

    @keyframes pulseBadge {

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

        50% {
            transform: scale(1.05);
        }
    }

    .ana-promo-percent {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 1.6rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        line-height: 1;
    }

    .ana-promo-off {
        font-size: 0.7rem !important;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.95) !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .ana-promo-content {
        flex: 1;
        z-index: 2;
    }

    .ana-promo-title {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 1.35rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin-bottom: 0.75rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    }

    /* Countdown - Larger */
    .ana-countdown {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 0.85rem;
    }

    .ana-cd-item {
        background: white;
        border-radius: 10px;
        padding: 0.6rem 0.7rem;
        text-align: center;
        min-width: 56px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    }

    .ana-cd-num {
        display: block;
        font-family: 'Lexend Deca', monospace;
        font-size: 1.35rem !important;
        font-weight: 700 !important;
        color: #1a1a2e !important;
    }

    .ana-cd-label {
        display: block;
        font-size: 0.65rem !important;
        color: #767676 !important;
        text-transform: uppercase;
        font-weight: 500;
    }

    .ana-promo-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.65rem 1.25rem;
        background: rgba(255, 255, 255, 0.95);
        color: #db2777 !important;
        border-radius: 8px;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        transition: all 0.3s;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    }

    .ana-promo-banner:hover .ana-promo-btn {
        background: white;
        gap: 0.7rem;
        transform: translateX(3px);
    }

    /* Promo Visual Icons */
    .ana-promo-visual {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        z-index: 1;
    }

    .ana-promo-visual i {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(5px);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* ========================================
       PROMO BANNER V2 - Modern Full-Height Design
       ======================================== */
    .ana-promo-banner-v2 {
        flex: 1;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
        transition: all 0.3s ease;
    }

    .ana-promo-banner-v2:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(67, 56, 202, 0.3);
    }

    .ana-promo-overlay-v2 {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
        z-index: 1;
    }

    /* Animated Glow Effect */
    .ana-promo-glow {
        position: absolute;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
        top: -50px;
        right: -50px;
        border-radius: 50%;
        animation: promoGlow 4s ease-in-out infinite;
        z-index: 1;
    }

    .ana-promo-ring {
        position: absolute;
        width: 150px;
        height: 150px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        bottom: -30px;
        left: -30px;
        animation: promoRing 6s ease-in-out infinite;
        z-index: 1;
    }

    @keyframes promoGlow {
        0%, 100% { transform: scale(1); opacity: 0.4; }
        50% { transform: scale(1.2); opacity: 0.6; }
    }

    @keyframes promoRing {
        0%, 100% { transform: scale(1) rotate(0deg); }
        50% { transform: scale(1.1) rotate(180deg); }
    }

    /* Content Container */
    .ana-promo-inner {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 0.75rem;
    }

    /* Discount Badge */
    .ana-promo-discount-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        border-radius: 50%;
        box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
        animation: pulseBadgeV2 2s ease-in-out infinite;
    }

    @keyframes pulseBadgeV2 {
        0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5); }
        50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(249, 115, 22, 0.6); }
    }

    .ana-discount-value {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 1.75rem;
        font-weight: 800;
        color: #ffffff;
        line-height: 1;
    }

    .ana-discount-label {
        font-size: 0.65rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.95);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Title */
    .ana-promo-title-v2 {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .ana-promo-subtitle-v2 {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

    /* Countdown V2 */
    .ana-countdown-v2 {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        margin: 0.5rem 0;
    }

    .ana-cd-block {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        padding: 0.6rem 0.5rem;
        min-width: 52px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .ana-cd-value {
        font-family: 'Lexend Deca', monospace;
        font-size: 1.4rem;
        font-weight: 800;
        color: #1e1b4b;
        line-height: 1;
    }

    .ana-cd-unit {
        font-size: 0.6rem;
        font-weight: 600;
        color: #6366f1;
        text-transform: uppercase;
        margin-top: 2px;
    }

    .ana-cd-separator {
        font-size: 1.5rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.6);
    }

    /* CTA Button */
    .ana-promo-cta-v2 {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        color: #ffffff;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 700;
        box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
        transition: all 0.3s ease;
        margin-top: 0.25rem;
    }

    .ana-promo-banner-v2:hover .ana-promo-cta-v2 {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
        gap: 0.75rem;
    }

    .ana-promo-cta-v2 i {
        transition: transform 0.3s ease;
    }

    .ana-promo-banner-v2:hover .ana-promo-cta-v2 i {
        transform: translateX(3px);
    }

    /* Category Banners */
    .ana-cat-banners {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .ana-cat-banner {
        border-radius: 14px;
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        transition: all 0.3s;
        min-height: 100px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .ana-cat-banner:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    }

    /* Category Banner Decorations */
    .ana-cat-decor {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 1;
    }

    .ana-cat-decor-circle {
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        top: -40px;
        right: -20px;
        animation: floatGeo 7s ease-in-out infinite;
    }

    .ana-cat-decor-ring {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.15);
        bottom: -15px;
        left: 20%;
        animation: pulseRing 5s ease-in-out infinite;
    }

    .ana-cat-banner .ana-cat-content {
        flex: 1;
        z-index: 2;
        max-width: calc(100% - 55px);
    }

    .ana-cat-banner .ana-cat-title {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin-bottom: 0.2rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
        line-height: 1.25;
    }

    .ana-cat-banner .ana-cat-subtitle {
        font-size: 0.7rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }

    .ana-cat-banner .ana-cat-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.4rem 0.9rem;
        background: rgba(255, 255, 255, 0.95);
        color: #1a1a2e !important;
        border-radius: 6px;
        font-size: 0.7rem !important;
        font-weight: 600;
        transition: all 0.3s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .ana-cat-banner:hover .ana-cat-btn {
        background: white;
        transform: translateX(3px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Category Icon - New Style */
    .ana-cat-icon-wrap {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.25);
        z-index: 2;
    }

    .ana-cat-icon-wrap i {
        font-size: 1.4rem !important;
        color: #ffffff !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
    }

    .ana-cat-banner:hover .ana-cat-icon-wrap {
        transform: translateY(-50%) scale(1.1);
        background: rgba(255, 255, 255, 0.3);
    }

    .ana-cat-banner:hover .ana-cat-icon-wrap i {
        transform: scale(1.1);
    }

    /* Legacy visual - hide */
    .ana-cat-visual {
        display: none;
    }

    .ana-cat-visual i {
        font-size: 1.2rem !important;
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .ana-cat-banner:hover .ana-cat-visual {
        transform: translateY(-50%) scale(1.08);
        background: rgba(255, 255, 255, 0.35);
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .ana-quad-grid {
            min-height: 400px;
        }

        .ana-slide-title {
            font-size: 1.75rem;
        }

        .ana-slide-subtitle {
            font-size: 0.95rem;
        }

        .ana-slide-btn {
            padding: 0.875rem 1.75rem;
            font-size: 0.9rem;
        }

        .ana-nav-cards {
            right: 1.5rem;
            bottom: 1rem;
        }

        .ana-nav-card {
            width: 80px;
            height: 75px;
        }

        .ana-nav-icon {
            width: 32px;
            height: 32px;
        }

        .ana-nav-icon i {
            font-size: 1rem;
        }

        .ana-nav-label {
            font-size: 0.6rem;
        }
    }

    @media (max-width: 992px) {
        .ana-quad-grid {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .ana-quad-main {
            min-height: 350px;
        }

        .ana-slide-title {
            font-size: 1.5rem;
        }

        .ana-slide-subtitle {
            font-size: 0.9rem;
            max-width: 100%;
        }

        .ana-slide-content {
            max-width: 60%;
        }

        .ana-nav-cards {
            right: 1rem;
            bottom: 1rem;
            gap: 0.4rem;
        }

        .ana-nav-card {
            width: 70px;
            height: 65px;
        }

        .ana-quad-right {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .ana-promo-banner {
            flex: 1 1 100%;
        }

        .ana-cat-banners {
            flex: 1 1 100%;
        }
    }

    @media (max-width: 576px) {
        .ana-quad-main {
            min-height: 320px;
        }

        .ana-slide-inner {
            padding: 1.5rem;
        }

        .ana-slide-title {
            font-size: 1.35rem;
            letter-spacing: -0.01em;
        }

        .ana-slide-subtitle {
            font-size: 0.85rem;
            margin-bottom: 1.25rem;
        }

        .ana-slide-btn {
            padding: 0.75rem 1.5rem;
            font-size: 0.85rem;
            border-radius: 10px;
        }

        .ana-slide-content {
            max-width: 100%;
            text-align: center;
        }

        .ana-nav-cards {
            position: relative;
            right: auto;
            bottom: auto;
            justify-content: center;
            margin-top: 1rem;
            padding: 0 1rem;
        }

        .ana-nav-card {
            width: 65px;
            height: 60px;
        }

        .ana-cat-banners {
            grid-template-columns: 1fr;
        }

        .ana-featured-categories-row {
            grid-template-columns: 1fr 1fr;
        }

        .ana-featured-cat-card {
            min-height: 100px;
        }

        .ana-featured-cat-title {
            font-size: 0.7rem !important;
        }

        .ana-featured-cat-cta {
            font-size: 0.55rem !important;
        }
    }

    /* ========================================
   FEATURED CATEGORIES ROW - 4 Banner
   ======================================== */

.ana-featured-categories-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    padding-left: var(--ana-quad-inline-pad);
    padding-right: var(--ana-quad-inline-pad);
}

    .ana-featured-cat-card {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 90px;
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .ana-featured-cat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .ana-featured-cat-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
        transition: background 0.3s ease;
    }

    .ana-featured-cat-card:hover .ana-featured-cat-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    }

    .ana-featured-cat-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.85rem;
        padding: 1rem 1.25rem;
        width: 100%;
        height: 100%;
    }

    .ana-featured-cat-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .ana-featured-cat-icon i {
        font-size: 1.25rem;
        color: #ffffff;
    }

    .ana-featured-cat-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.25rem;
        overflow: hidden;
        min-width: 0;
    }

    .ana-featured-cat-title {
        color: #ffffff !important;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.3px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ana-featured-cat-cta {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        opacity: 0.9;
        transition: all 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ana-featured-cat-card:hover .ana-featured-cat-cta {
        opacity: 1;
        color: #fbbf24 !important;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .ana-featured-categories-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .ana-featured-cat-card {
            min-height: 120px;
        }
    }

    @media (max-width: 576px) {
        .ana-featured-categories-row {
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }

        .ana-featured-cat-card {
            min-height: 90px;
        }

        .ana-featured-cat-title {
            font-size: 0.7rem !important;
        }

        .ana-featured-cat-cta {
            font-size: 0.55rem !important;
        }
    }

    .ana-featured-accent {
        position: absolute;
        left: 0;
        top: 15%;
        bottom: 15%;
        width: 6px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        z-index: 3;
        content: '';
    }

    .ana-featured-badge {
        position: absolute;
        top: 6px;
        right: 8px;
        color: #fff;
        font-size: 0.55rem;
        font-weight: 800;
        padding: 2px 6px;
        border-radius: 4px;
        z-index: 3;
        letter-spacing: 0.3px;
    }

    /* ========================================
   HERO QUAD - Triple Banner Layout
   ======================================== */
.ana-quad-showcase {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: none;
    padding-left: var(--ana-quad-inline-pad);
    padding-right: var(--ana-quad-inline-pad);
}

.ana-quad-grid.ana-quad-grid--triple {
    grid-template-columns: clamp(190px, 19vw, 250px) minmax(0, 1fr) clamp(190px, 19vw, 250px);
    min-height: 430px;
    gap: 0.65rem;
    background: transparent;
    padding: 0;
}

    .ana-quad-grid--triple .ana-quad-main {
        min-height: 410px;
        border-radius: 10px;
        border: 1px solid rgba(30, 64, 175, 0.24);
    }

    .ana-quad-grid--triple .ana-slide-content {
        max-width: 62%;
        padding: 1.8rem 2rem;
    }

    .ana-quad-grid--triple .ana-slide-subtitle {
        margin-bottom: 0;
    }

    .ana-quad-grid--triple .ana-slide-title {
        font-size: 2rem;
    }

    .ana-side-banner-column {
        position: relative;
        min-height: 410px;
        overflow: hidden;
    }

    .ana-side-banner-column .ana-side-banner-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(100%);
    }

    .ana-side-banner-column .ana-side-banner-slide.is-entering-up {
        visibility: visible;
        pointer-events: auto;
        z-index: 3;
        opacity: 1;
        animation: anaSideEnterUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }

    .ana-side-banner-column .ana-side-banner-slide.is-entering-down {
        visibility: visible;
        pointer-events: auto;
        z-index: 3;
        opacity: 1;
        animation: anaSideEnterDown 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }

    .ana-side-banner-column .ana-side-banner-slide.is-leaving-up {
        visibility: visible;
        pointer-events: none;
        z-index: 2;
        opacity: 1;
        animation: anaSideLeaveUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }

    .ana-side-banner-column .ana-side-banner-slide.is-leaving-down {
        visibility: visible;
        pointer-events: none;
        z-index: 2;
        opacity: 1;
        animation: anaSideLeaveDown 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }

    .ana-side-banner-column .ana-side-banner-slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        z-index: 2;
    }

    @keyframes anaSideEnterUp {
        0% {
            transform: translateY(100%);
        }
        100% {
            transform: translateY(0);
        }
    }

    @keyframes anaSideLeaveUp {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-100%);
        }
    }

    @keyframes anaSideEnterDown {
        0% {
            transform: translateY(-100%);
        }
        100% {
            transform: translateY(0);
        }
    }

    @keyframes anaSideLeaveDown {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(100%);
        }
    }

    .ana-side-banner {
        position: relative;
        display: block;
        text-decoration: none;
        border-radius: 10px;
        overflow: hidden;
        min-height: 410px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .ana-side-banner:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
    }

    .ana-side-banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(8, 30, 74, 0.16) 0%, rgba(8, 30, 74, 0.62) 68%, rgba(8, 30, 74, 0.78) 100%);
        z-index: 1;
    }

    .ana-side-banner-content {
        position: relative;
        z-index: 2;
        height: 100%;
        padding: 0.95rem 0.75rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        gap: 0.45rem;
    }

    .ana-side-banner-eyebrow {
        color: #fde047;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.85px;
        text-transform: uppercase;
    }

    .ana-side-banner-title {
        color: #fff;
        margin: 0;
        font-size: 1.16rem;
        line-height: 1.22;
        font-weight: 800;
    }

    .ana-side-banner-subtitle {
        color: rgba(255, 255, 255, 0.84);
        margin: 0;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    @media (max-width: 1200px) {
        .ana-quad-grid.ana-quad-grid--triple {
            grid-template-columns: 176px minmax(0, 1fr) 176px;
            min-height: 390px;
        }

        .ana-quad-grid--triple .ana-quad-main,
        .ana-side-banner-column,
        .ana-side-banner {
            min-height: 370px;
        }

        .ana-quad-grid--triple .ana-slide-title {
            font-size: 1.8rem;
        }
    }

@media (max-width: 992px) {
    .ana-hero-quad {
        --ana-quad-inline-pad: 0.55rem;
    }

    .ana-quad-showcase {
        border-radius: 10px;
    }

    .ana-quad-grid.ana-quad-grid--triple {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0;
        gap: 0.55rem;
    }

        .ana-quad-grid--triple .ana-quad-main {
            order: 1;
            min-height: 350px;
        }

        .ana-side-banner-left-column {
            order: 2;
        }

        .ana-side-banner-right-column {
            order: 3;
        }

        .ana-side-banner-column,
        .ana-side-banner {
            min-height: 260px;
        }

        .ana-quad-grid--triple .ana-slide-content {
            max-width: 84%;
        }
    }

@media (max-width: 768px) {
    .ana-hero-quad {
        --ana-quad-inline-pad: 0.35rem;
    }

    .ana-hero-quad .container {
        padding-left: 8px;
        padding-right: 8px;
        }

    .ana-quad-grid.ana-quad-grid--triple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "main main"
            "left right";
        padding: 0;
        gap: 0.5rem;
    }

        .ana-quad-grid--triple .ana-quad-main {
            grid-area: main;
            order: initial;
            min-height: 320px;
        }

        .ana-side-banner-left-column {
            grid-area: left;
            order: initial;
        }

        .ana-side-banner-right-column {
            grid-area: right;
            order: initial;
        }

        .ana-slider-dots {
            bottom: 0.6rem;
            gap: 0.2rem;
            padding: 0.18rem 0.32rem;
            box-shadow: 0 6px 16px rgba(2, 8, 23, 0.25);
        }

        .ana-slider-dot {
            width: 5px;
            height: 5px;
            min-width: 5px;
            min-height: 5px;
        }

        .ana-slider-dot.active {
            width: 10px;
            min-width: 10px;
            min-height: 5px;
            border-radius: 999px;
            box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.2);
        }

        .ana-side-banner-column,
        .ana-side-banner {
            min-height: 185px;
        }

        .ana-side-banner-overlay {
            background: linear-gradient(180deg, rgba(8, 30, 74, 0.08) 0%, rgba(8, 30, 74, 0.2) 100%);
        }

        .ana-side-banner-content {
            padding: 1rem 0.9rem 1.05rem;
        }

        .ana-quad-grid--triple .ana-slide-content {
            max-width: 100%;
            padding: 1.5rem 1.4rem;
        }

        .ana-arrow {
            display: none;
        }
    }

@media (max-width: 576px) {
    .ana-hero-quad {
        --ana-quad-inline-pad: 0.25rem;
    }

    .ana-hero-quad .container {
        padding-left: 4px;
        padding-right: 4px;
        }

        .ana-slider-dots {
            bottom: 0.45rem;
            gap: 0.15rem;
            padding: 0.12rem 0.24rem;
            box-shadow: 0 4px 10px rgba(2, 8, 23, 0.2);
        }

        .ana-slider-dot {
            width: 4px;
            height: 4px;
            min-width: 4px;
            min-height: 4px;
        }

        .ana-slider-dot.active {
            width: 8px;
            min-width: 8px;
            min-height: 4px;
            border-radius: 999px;
            box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.16);
        }

    .ana-quad-grid.ana-quad-grid--triple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "main main"
            "left right";
        padding: 0;
        gap: 0.45rem;
    }

        .ana-quad-grid--triple .ana-quad-main {
            min-height: 280px;
        }

        .ana-side-banner-column,
        .ana-side-banner {
            min-height: 148px;
        }

        .ana-quad-grid--triple .ana-slide-content {
            max-width: 100%;
            padding: 1.2rem;
            align-items: flex-start;
            text-align: left;
        }

        .ana-quad-grid--triple .ana-slide-title {
            font-size: 1.3rem;
            line-height: 1.22;
        }

        .ana-quad-grid--triple .ana-slide-subtitle {
            font-size: 1rem;
            margin-top: 0.4rem;
        }
    }
