        /* ====== Banner Carousel (Zain-style) ====== */
        .banner-carousel {
            position: relative;
            max-width: 1100px;
            margin: 0 auto 35px;
            padding: 0 20px;
            overflow: hidden;
        }

        .banner-carousel__track-wrapper {
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
            position: relative;
            aspect-ratio: 16 / 5.5;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        }

        .banner-carousel__track {
            display: flex;
            transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
            height: 100%;
            will-change: transform;
        }

        .banner-carousel__slide {
            min-width: 100%;
            height: 100%;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .banner-carousel__slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Navigation Arrows */
        .banner-carousel__arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1rem;
            cursor: pointer;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
            opacity: 0;
        }

        .banner-carousel:hover .banner-carousel__arrow {
            opacity: 1;
        }

        .banner-carousel__arrow:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-50%) scale(1.1);
        }

        .banner-carousel__arrow--prev {
            right: 32px;
        }

        .banner-carousel__arrow--next {
            left: 32px;
        }

        /* Dots */
        .banner-carousel__dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 14px;
        }

        .banner-carousel__dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--clr-border-solid, #cbd5e1);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .banner-carousel__dot.active {
            width: 26px;
            border-radius: 10px;
            background: var(--gradient-primary, linear-gradient(135deg, #6366f1, #3b82f6));
        }

        /* Counter badge */
        .banner-carousel__counter {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(6px);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            z-index: 5;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            .banner-carousel__track-wrapper {
                border-radius: 14px;
                aspect-ratio: 16 / 7;
            }

            .banner-carousel__arrow {
                display: none;
            }
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: -300px;
            /* Hidden completely */
            opacity: 0;
            pointer-events: none;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 20px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            z-index: 9999;
            transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-wrap: wrap;
        }

        .cookie-banner.show {
            bottom: 30px;
            opacity: 1;
            pointer-events: auto;
        }

        .cookie-text {
            color: #f1f5f9;
            font-size: 0.95rem;
            line-height: 1.5;
            flex: 1;
            min-width: 250px;
        }

        .cookie-text a {
            color: #3b82f6;
            text-decoration: underline;
        }

        .cookie-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: var(--radius-md);
            font-family: inherit;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            transition: var(--trans-fast);
        }

        .cookie-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
        }

        /* Premium Hero Section (Modern Brand Style) */
        @keyframes slideDownHero {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .premium-hero {
            width: 100%;
            max-width: 1100px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--clr-border, rgba(255, 255, 255, 0.15));
            border-radius: var(--radius-xl);
            padding: 50px;
            box-shadow: var(--shadow-glass);
            animation: slideDownHero 0.5s var(--trans-bounce) forwards;
            position: relative;
            overflow: hidden;
            direction: rtl; /* Ensure RTL */
        }

        /* Subtle gradient glow behind the container */
        .premium-hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--clr-primary);
            filter: blur(150px);
            opacity: 0.15;
            z-index: 0;
            pointer-events: none;
        }

        .premium-hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: var(--clr-secondary);
            filter: blur(150px);
            opacity: 0.15;
            z-index: 0;
            pointer-events: none;
        }

        .premium-hero__layout {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .premium-hero__content {
            flex: 1;
            text-align: right;
        }

        .hero-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-family: var(--font-heading);
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--clr-text-muted);
            margin-bottom: 35px;
            line-height: 1.7;
        }

        .premium-steps-modern {
            flex: 1.2;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
        }

        /* Connecting vertical line */
        .premium-steps-modern::before {
            content: '';
            position: absolute;
            right: 28px;
            top: 20px;
            bottom: 20px;
            width: 2px;
            background: linear-gradient(to bottom, var(--clr-primary), var(--clr-secondary), var(--clr-accent));
            opacity: 0.3;
            z-index: 0;
        }

        .m-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: var(--clr-surface);
            padding: 20px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--clr-border-solid);
            box-shadow: var(--shadow-soft);
            position: relative;
            z-index: 1;
            transition: var(--trans-smooth);
        }

        .m-step:hover {
            transform: translateX(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--clr-primary);
        }

        .m-step-num {
            width: 55px;
            height: 55px;
            flex-shrink: 0;
            background: var(--gradient-hero);
            color: white;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        }
        
        .m-step:nth-child(2) .m-step-num {
            background: linear-gradient(135deg, var(--clr-secondary), #3b82f6);
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
        }
        
        .m-step:nth-child(3) .m-step-num {
            background: linear-gradient(135deg, var(--clr-accent), #ec4899);
            box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
        }

        .m-step-text h4 {
            font-size: 1.25rem;
            color: var(--clr-text-main);
            margin-bottom: 8px;
            font-weight: 800;
        }

        .m-step-text p {
            font-size: 0.95rem;
            color: var(--clr-text-muted);
            margin: 0;
            line-height: 1.5;
        }

        .premium-hero-btn {
            font-size: 1.2rem;
            padding: 15px 40px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            border-radius: var(--radius-pill);
            background: var(--gradient-hero);
            color: white !important;
            border: none;
            box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
            transition: var(--trans-bounce);
            text-decoration: none;
            cursor: pointer;
        }

        .premium-hero-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 25px rgba(79, 70, 229, 0.4);
            background: linear-gradient(135deg, var(--clr-primary-hover) 0%, var(--clr-primary) 100%);
        }

        @media (max-width: 900px) {
            .premium-hero__layout {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            .premium-hero__content {
                text-align: center;
            }
            .premium-steps-modern::before {
                display: none;
            }
            .m-step {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
            }
            .m-step:hover {
                transform: translateY(-5px);
                border-color: var(--clr-primary);
            }
        }

        /* ======================== Share Button ======================== */
        .btn-share {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.15));
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: var(--radius-md);
            font-size: 1.2rem;
        }

        .btn-share:hover {
            background: #3b82f6;
            color: white;
            transform: scale(1.05);
        }


        /* ======================== Toast Notifications ======================== */
        .toast-container {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 99999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
            pointer-events: none;
        }

        .toast {
            padding: 14px 28px;
            border-radius: var(--radius-lg);
            color: white;
            font-weight: 700;
            font-size: 0.95rem;
            font-family: inherit;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            pointer-events: auto;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            max-width: 90vw;
            text-align: center;
        }

        .toast.toast-out {
            animation: toastOut 0.3s ease-in forwards;
        }

        .toast--success {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.95));
            border: 1px solid rgba(52, 211, 153, 0.3);
        }

        .toast--error {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.95));
            border: 1px solid rgba(252, 165, 165, 0.3);
        }

        .toast--info {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.95));
            border: 1px solid rgba(147, 197, 253, 0.3);
        }

        @keyframes toastIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes toastOut {
            from {
                opacity: 1;
                transform: translateY(0) scale(1);
            }

            to {
                opacity: 0;
                transform: translateY(-20px) scale(0.9);
            }
        }

        /* ======================== Skeleton Loader ======================== */
        .skeleton-card {
            background: var(--clr-surface-solid);
            border-radius: var(--radius-xl);
            padding: 20px;
            border: 1px solid var(--clr-border-solid);
            overflow: hidden;
        }

        .skeleton-img {
            width: 100%;
            height: 240px;
            border-radius: var(--radius-lg);
            background: linear-gradient(110deg, rgba(148, 163, 184, 0.1) 25%, rgba(148, 163, 184, 0.2) 37%, rgba(148, 163, 184, 0.1) 63%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            margin-bottom: 20px;
        }

        .skeleton-text {
            height: 16px;
            border-radius: 8px;
            background: linear-gradient(110deg, rgba(148, 163, 184, 0.1) 25%, rgba(148, 163, 184, 0.2) 37%, rgba(148, 163, 184, 0.1) 63%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            margin-bottom: 12px;
        }

        .skeleton-text.short {
            width: 60%;
        }

        .skeleton-text.medium {
            width: 80%;
        }

        .skeleton-text.price {
            width: 40%;
            height: 24px;
            margin-top: 15px;
        }

        .skeleton-text.btn-sk {
            width: 100%;
            height: 45px;
            border-radius: var(--radius-md);
            margin-top: 15px;
        }

        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* ====== Refactored Product Card Styles ====== */
        .card__tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ef4444, #f97316);
            color: white;
            font-size: 0.8rem;
            padding: 4px 14px;
            font-weight: 800;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
            z-index: 10;
        }

        .card__image-wrapper {
            cursor: pointer;
            height: 210px;
            padding: 20px;
            background: radial-gradient(circle, #ffffff 0%, #f1f5f9 100%);
            border-radius: 16px;
            margin-bottom: 20px;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
            overflow: hidden;
            position: relative;
        }

        .card__image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            mix-blend-mode: multiply;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card__image-wrapper:hover .card__image {
            transform: scale(1.08);
        }

        .card__title {
            cursor: pointer;
            text-align: right;
            font-size: 1.15rem;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 6px;
            color: var(--clr-text-main);
            transition: color 0.3s ease;
        }

        .card__title:hover {
            color: var(--clr-primary);
        }

        .card__desc-wrapper {
            text-align: right;
            margin-bottom: 15px;
            min-height: 45px;
        }

        .card__desc {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            white-space: normal;
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--clr-text-muted);
            margin: 0;
        }

        .card__price-row {
            margin-top: auto;
            padding-top: 15px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .card__price {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--clr-primary);
        }

        .card__actions {
            margin-top: 25px;
            display: flex;
            gap: 12px;
        }


        .card__btn-share {
            flex: 1;
            font-size: 1rem;
            padding: 12px;
            border: none;
            background: #e0e7ff;
            color: #4f46e5;
            font-weight: 800;
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .card__btn-share:hover {
            background: #c7d2fe;
        }

        .card__btn-details {
            flex: 1.5;
            font-size: 1rem;
            padding: 12px;
            background: linear-gradient(135deg, #4f46e5, #3b82f6);
            color: white;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card__btn-details:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
        }

        .card__rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: -10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #fbbf24;
            direction: ltr;
            justify-content: flex-end;
        }
        
            padding: 20px;
            border: 1px solid var(--clr-border-solid);
            overflow: hidden;
        }

        .skeleton-img {
            width: 100%;
            height: 240px;
            border-radius: var(--radius-lg);
            background: linear-gradient(110deg, rgba(148, 163, 184, 0.1) 25%, rgba(148, 163, 184, 0.2) 37%, rgba(148, 163, 184, 0.1) 63%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            margin-bottom: 20px;
        }

        .skeleton-text {
            height: 16px;
            border-radius: 8px;
            background: linear-gradient(110deg, rgba(148, 163, 184, 0.1) 25%, rgba(148, 163, 184, 0.2) 37%, rgba(148, 163, 184, 0.1) 63%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            margin-bottom: 12px;
        }

        .skeleton-text.short {
            width: 60%;
        }

        .skeleton-text.medium {
            width: 80%;
        }

        .skeleton-text.price {
            width: 40%;
            height: 24px;
            margin-top: 15px;
        }

        .skeleton-text.btn-sk {
            width: 100%;
            height: 45px;
            border-radius: var(--radius-md);
            margin-top: 15px;
        }

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

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

        /* ====== Refactored Product Card Styles ====== */
        .card__tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ef4444, #f97316);
            color: white;
            font-size: 0.8rem;
            padding: 4px 14px;
            font-weight: 800;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
            z-index: 10;
        }

        .card__image-wrapper {
            cursor: pointer;
            height: 210px;
            padding: 20px;
            background: radial-gradient(circle, #ffffff 0%, #f1f5f9 100%);
            border-radius: 16px;
            margin-bottom: 20px;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
            overflow: hidden;
            position: relative;
        }

        .card__image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            mix-blend-mode: multiply;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card__image-wrapper:hover .card__image {
            transform: scale(1.08);
        }

        .card__title {
            cursor: pointer;
            text-align: right;
            font-size: 1.15rem;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 6px;
            color: var(--clr-text-main);
            transition: color 0.3s ease;
        }

        .card__title:hover {
            color: var(--clr-primary);
        }

        .card__desc-wrapper {
            text-align: right;
            margin-bottom: 15px;
            min-height: 45px;
        }

        .card__desc {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            white-space: normal;
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--clr-text-muted);
            margin: 0;
        }

        .card__price-row {
            margin-top: auto;
            padding-top: 15px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .card__price {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--clr-primary);
        }

        .card__actions {
            margin-top: 25px;
            display: flex;
            gap: 12px;
        }


        .card__btn-share {
            flex: 1;
            font-size: 1rem;
            padding: 12px;
            border: none;
            background: #e0e7ff;
            color: #4f46e5;
            font-weight: 800;
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .card__btn-share:hover {
            background: #c7d2fe;
        }

        .card__btn-details {
            flex: 1.5;
            font-size: 1rem;
            padding: 12px;
            background: linear-gradient(135deg, #4f46e5, #3b82f6);
            color: white;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card__btn-details:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
        }

        .card__rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: -10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #fbbf24;
            direction: ltr;
            justify-content: flex-end;
        }
        
        .card__rating span {
            color: var(--clr-text-muted);
            font-size: 0.8rem;
            margin-left: 5px;
        }

        .out-of-stock-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(2px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .out-of-stock-badge {
            background: #ef4444;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 900;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
            transform: rotate(-10deg);
        }
        
        .card.out-of-stock {
            opacity: 0.8;
        }
        .card.out-of-stock .card__btn-details {
            background: #94a3b8;
            box-shadow: none;
            pointer-events: none;
        }
