        /* RTL/LTR Support */
        [dir="rtl"] {
            text-align: right;
        }

        [dir="ltr"] {
            text-align: left;
        }

        /* Language Toggle Button */
        .language-toggle {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .language-toggle:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary);
            padding: 8px;
            z-index: 10001;
        }

        /* Menu Overlay */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
        }

        /* RTL Positioning */
        [dir="rtl"] .search-box input {
            padding: 12px 18px 12px 50px;
        }

        [dir="rtl"] .search-box button {
            right: auto;
            left: 4px;
        }

        [dir="rtl"] .cart-count {
            right: auto;
            left: 8px;
        }

        [dir="rtl"] .deal-badge,
        [dir="rtl"] .product-badge {
            left: auto;
            right: 12px;
        }

        [dir="rtl"] .slide-btn:hover {
            transform: translateX(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
        }

        [dir="rtl"] .phone-feature {
            transform: translateX(30px);
        }

        [dir="rtl"] .phone-feature.visible {
            transform: translateX(0);
        }

        [dir="rtl"] .app-btn-text {
            text-align: right;
        }

        [dir="rtl"] .footer-col a:hover {
            padding-inline-start: 5px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --primary: #E85D04;
            --primary-dark: #D45103;
            --primary-light: #F48C06;
            --secondary: #1A1A1A;
            --dark: #0D0D0D;
            --yellow: #FECC00;
            --green: #38A169;
            --red: #e53e3e;
            --gray-100: #f7f7f7;
            --gray-200: #eeeeee;
            --gray-300: #e0e0e0;
            --gray-400: #bdbdbd;
            --gray-500: #9e9e9e;
            --gray-600: #757575;
            --gray-700: #616161
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: #fff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden
        }

        a {
            text-decoration: none;
            color: inherit
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px
        }

        /* TOP BAR */
        .top-bar {
            background: var(--secondary);
            padding: 8px 0;
            font-size: 12px;
            color: #fff
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap
        }

        .top-bar-left span {
            display: flex;
            align-items: center;
            gap: 6px
        }

        .top-bar-left i {
            color: var(--primary)
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap
        }

        .top-bar-right a:hover {
            color: var(--primary)
        }

        /* HEADER */
        .header {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all .3s
        }

        .header.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, .1)
        }

        .header .container {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap
        }

        .logo {
            height: 48px;
            /* Reverted to 48px as per user request for full screen */
            flex-shrink: 0
        }

        .location-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-size: 12px;
            cursor: pointer;
            white-space: nowrap;
            transition: all .3s
        }

        .location-btn:hover {
            border-color: var(--primary)
        }

        .location-btn i:first-child {
            color: var(--primary)
        }

        .search-box {
            flex: 1;
            position: relative;
            max-width: 600px;
            min-width: 200px
        }

        .search-box input {
            width: 100%;
            padding: 12px 50px 12px 18px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-size: 14px;
            font-family: 'Cairo', sans-serif;
            transition: all .3s
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(232, 93, 4, .1)
        }

        .search-box button {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 6px;
            color: #fff;
            cursor: pointer;
            transition: all .3s
        }

        .search-box button:hover {
            background: var(--primary-dark);
            transform: translateY(-50%) scale(1.05)
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap
        }

        .header-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all .3s
        }

        .header-btn:hover {
            background: var(--gray-100)
        }

        .header-btn i {
            font-size: 18px
        }

        .header-btn.cart {
            position: relative
        }

        .cart-count {
            position: absolute;
            top: 2px;
            right: 8px;
            background: var(--primary);
            color: #fff;
            font-size: 10px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite
        }

        @keyframes pulse {

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

            50% {
                transform: scale(1.1)
            }
        }

        /* NAV */
        .nav {
            background: #fff;
            border-bottom: 1px solid var(--gray-200)
        }

        .nav .container {
            display: flex;
            gap: 0
        }

        .nav-item {
            padding: 12px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-700);
            position: relative;
            transition: color .3s
        }

        .nav-item:hover {
            color: var(--primary)
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform .3s
        }

        .nav-item:hover::after {
            transform: scaleX(1)
        }

        .nav-item.highlight {
            color: var(--primary)
        }

        /* BREADCRUMB */
        .breadcrumb {
            background: #fff;
            padding: 13px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 13px;
            list-style: none;
            flex-wrap: wrap;
        }

        .breadcrumb-list li {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .breadcrumb-list a {
            color: var(--gray-600);
            transition: color 0.3s;
        }

        .breadcrumb-list a:hover {
            color: var(--primary);
        }

        .breadcrumb-list .active {
            color: var(--secondary);
            font-weight: 600;
        }

        /* HERO - ENHANCED */
        .hero {
            padding: 15px 0;
            background: var(--gray-100)
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 15px
        }

        .hero-slider {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 2.8/1
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity .5s
        }

        .slide.active {
            opacity: 1
        }

        .slide-inner {
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 50px
        }

        .slide-1 {
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%)
        }

        .slide-2 {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%)
        }

        .slide-3 {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%)
        }

        .slide-content {
            flex: 1;
            color: #fff
        }

        .slide-badge {
            display: inline-block;
            background: var(--primary);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            animation: fadeInUp .6s
        }

        .slide-2 .slide-badge {
            background: var(--secondary)
        }

        .slide-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 8px;
            animation: fadeInUp .6s .1s both
        }

        .slide-subtitle {
            font-size: 14px;
            opacity: .9;
            margin-bottom: 20px;
            animation: fadeInUp .6s .2s both
        }

        .slide-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--secondary);
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 13px;
            transition: all .3s;
            animation: fadeInUp .6s .3s both
        }

        .slide-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

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

        .slide-image {
            width: 280px;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px
        }

        .slide-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .3));
            animation: floatPhone 3s ease-in-out infinite
        }

        @keyframes floatPhone {

            0%,
            100% {
                transform: translateY(0) rotateY(0)
            }

            50% {
                transform: translateY(-10px) rotateY(5deg)
            }
        }

        .slider-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .5);
            cursor: pointer;
            transition: all .3s
        }

        .slider-dot.active {
            width: 24px;
            border-radius: 4px;
            background: #fff
        }

        .hero-side {
            display: flex;
            flex-direction: column;
            gap: 15px
        }

        .hero-banner {
            flex: 1;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
            cursor: pointer;
            transition: all .3s;
            overflow: hidden;
            position: relative
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, .1));
            opacity: 0;
            transition: opacity .3s
        }

        .hero-banner:hover::before {
            opacity: 1
        }

        .hero-banner:hover {
            transform: scale(1.02)
        }

        .hero-banner-1 {
            background: linear-gradient(135deg, #7c3aed, #5b21b6)
        }

        .hero-banner-2 {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark))
        }

        .hero-banner-text h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px
        }

        .hero-banner-text p {
            font-size: 12px;
            opacity: .9
        }

        .hero-banner-icon {
            font-size: 40px;
            animation: bounce 2s infinite
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-5px)
            }
        }

        /* USP BAR */
        .usp-bar {
            padding: 20px 0;
            background: #fff;
            border-bottom: 1px solid var(--gray-200)
        }

        .usp-bar .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px
        }

        .usp-item {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all .3s;
            flex: 1;
            min-width: 200px
        }

        .usp-item:hover {
            transform: translateY(-3px)
        }

        .usp-icon {
            width: 45px;
            height: 45px;
            background: var(--gray-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
            transition: all .3s;
            flex-shrink: 0
        }

        .usp-item:hover .usp-icon {
            background: var(--primary);
            color: #fff
        }

        .usp-text strong {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--secondary)
        }

        .usp-text span {
            font-size: 11px;
            color: var(--gray-600)
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--secondary)
        }

        .section-link {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            transition: all .3s
        }

        .section-link:hover {
            gap: 10px
        }

        /* CATEGORIES */
        .categories {
            padding: 30px 0
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 12px
        }

        .category-card {
            text-align: center;
            padding: 20px 10px;
            background: var(--gray-100);
            border-radius: 12px;
            cursor: pointer;
            transition: all .3s
        }

        .category-card:hover {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
            transform: translateY(-8px)
        }

        .category-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 10px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            transition: all .3s
        }

        .category-card:hover .category-icon {
            background: var(--primary);
            color: #fff;
            transform: scale(1.1) rotate(10deg)
        }

        .category-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-700)
        }

        /* ==================== FANCY PHONE SHOWCASE ==================== */
        .phone-showcase {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--dark) 0%, #000 100%);
            position: relative;
            overflow: hidden
        }

        .phone-showcase::before {
            content: 'JUMBOTECH';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 15vw;
            font-weight: 900;
            color: rgba(255, 255, 255, .02);
            white-space: nowrap;
            pointer-events: none
        }

        .phone-showcase .container {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1
        }

        .phone-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
            perspective: 1500px
        }

        .phone-wrapper {
            position: relative;
            transform-style: preserve-3d;
            transition: transform .1s
        }

        .phone-wrapper img {
            width: 300px;
            filter: drop-shadow(0 50px 100px rgba(232, 93, 4, .4))
        }

        .phone-glow {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
            filter: blur(25px);
            opacity: .6
        }

        .phone-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 350px;
            border: 1px solid rgba(232, 93, 4, .2);
            border-radius: 50%;
            animation: ringPulse 3s infinite
        }

        .phone-ring:nth-child(2) {
            width: 400px;
            height: 400px;
            animation-delay: .5s
        }

        .phone-ring:nth-child(3) {
            width: 450px;
            height: 450px;
            animation-delay: 1s
        }

        @keyframes ringPulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: .5
            }

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

        .phone-info {
            flex: 1;
            color: #fff
        }

        .phone-badge {
            display: inline-block;
            background: var(--primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 15px
        }

        .phone-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px
        }

        .phone-title span {
            color: var(--primary)
        }

        .phone-desc {
            font-size: 16px;
            color: var(--gray-400);
            margin-bottom: 30px;
            line-height: 1.7
        }

        .phone-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px
        }

        .phone-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, .05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, .1);
            transition: all .3s;
            opacity: 0;
            transform: translateX(30px)
        }

        .phone-feature.visible {
            opacity: 1;
            transform: translateX(0)
        }

        .phone-feature:hover {
            background: rgba(255, 255, 255, .1);
            border-color: var(--primary)
        }

        .phone-feature .icon {
            width: 45px;
            height: 45px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px
        }

        .phone-feature .text h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px
        }

        .phone-feature .text p {
            font-size: 12px;
            color: var(--gray-500)
        }

        .phone-price {
            display: flex;
            align-items: baseline;
            gap: 15px;
            margin-bottom: 25px
        }

        .phone-price .current {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary)
        }

        .phone-price .old {
            font-size: 16px;
            color: var(--gray-500);
            text-decoration: line-through
        }

        .phone-cta {
            display: flex;
            gap: 15px
        }

        .btn-primary {
            padding: 14px 35px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            border-radius: 10px;
            color: #fff;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all .3s;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(232, 93, 4, .4)
        }

        .btn-secondary {
            padding: 14px 25px;
            background: transparent;
            border: 2px solid var(--gray-600);
            border-radius: 10px;
            color: #fff;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary)
        }

        /* FLASH DEALS */
        .flash-deals {
            padding: 30px 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark))
        }

        .flash-deals .section-header {
            color: #fff
        }

        .flash-deals .section-title {
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .flash-deals .section-title i {
            color: var(--yellow);
            animation: flash 1s infinite
        }

        @keyframes flash {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .5
            }
        }

        .flash-deals .section-link {
            color: #fff
        }

        .countdown {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 20px;
            font-size: 13px;
            color: #fff
        }

        .countdown-item {
            background: var(--secondary);
            padding: 5px 10px;
            border-radius: 6px;
            font-weight: 700;
            min-width: 36px;
            text-align: center
        }

        .products-slider {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 10px;
            scroll-behavior: smooth
        }

        .products-slider::-webkit-scrollbar {
            height: 6px
        }

        .products-slider::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .3);
            border-radius: 3px
        }

        /* PRODUCT CARD */
        .product-card {
            min-width: 190px;
            max-width: 190px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
            position: relative
        }

        .product-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
            transform: translateY(-10px)
        }

        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #e53e3e;
            color: #fff;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            z-index: 2
        }

        .product-wishlist {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 32px;
            height: 32px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
            z-index: 2;
            color: var(--gray-400);
            transition: all .3s
        }

        .product-wishlist:hover {
            transform: scale(1.2)
        }

        .product-wishlist.active {
            color: #e53e3e;
            animation: heartBeat .5s
        }

        @keyframes heartBeat {
            0% {
                transform: scale(1)
            }

            25% {
                transform: scale(1.3)
            }

            50% {
                transform: scale(1)
            }

            75% {
                transform: scale(1.3)
            }

            100% {
                transform: scale(1)
            }
        }

        .product-image {
            height: 170px;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            overflow: hidden
        }

        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform .5s
        }

        .product-card:hover .product-image img {
            transform: scale(1.1) rotate(3deg)
        }

        .product-info {
            padding: 12px
        }

        .product-brand {
            font-size: 10px;
            color: var(--gray-500);
            text-transform: uppercase;
            margin-bottom: 4px
        }

        .product-name {
            font-size: 12px;
            font-weight: 500;
            color: var(--secondary);
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
            height: 34px
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 8px
        }

        .product-rating i {
            color: #fbbf24;
            font-size: 10px
        }

        .product-rating span {
            font-size: 10px;
            color: var(--gray-500)
        }

        .product-price {
            display: flex;
            align-items: baseline;
            gap: 8px;
            flex-wrap: wrap
        }

        .price-current {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary)
        }

        .price-old {
            font-size: 11px;
            color: var(--gray-500);
            text-decoration: line-through
        }

        .express-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--yellow);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 9px;
            font-weight: 700;
            color: var(--secondary);
            margin-top: 8px
        }

        /* ==================== HORIZONTAL SCROLL PRODUCTS ==================== */
        .horizontal-products {
            padding: 50px 0;
            background: #000;
            overflow: hidden;
            position: relative
        }

        .horizontal-products .section-header {
            margin-bottom: 30px
        }

        .horizontal-products .section-title {
            color: #fff
        }

        .horizontal-products .section-title span {
            color: var(--primary)
        }

        .horizontal-products .section-link {
            color: var(--primary)
        }

        .horizontal-slider-wrapper {
            position: relative;
            overflow: visible;
            padding: 0 70px
        }

        @media(max-width:768px) {
            .horizontal-slider-wrapper {
                padding: 0 50px
            }
        }

        .horizontal-track {
            display: flex;
            gap: 20px;
            cursor: grab;
            user-select: none;
            padding: 20px 0;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch
        }

        .horizontal-track::-webkit-scrollbar {
            display: none
        }

        .horizontal-track {
            scrollbar-width: none;
            -ms-overflow-style: none
        }

        .horizontal-track:active {
            cursor: grabbing
        }

        .horizontal-card {
            min-width: 350px;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
            transition: all .5s;
            scroll-snap-align: start
        }

        .horizontal-card:hover {
            transform: scale(1.03)
        }

        .horizontal-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .9) 100%);
            z-index: 1
        }

        .horizontal-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s
        }

        .horizontal-card:hover img {
            transform: scale(1.1)
        }

        .horizontal-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px;
            z-index: 2;
            color: #fff
        }

        .horizontal-card-tag {
            display: inline-block;
            background: var(--primary);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 10px;
            font-weight: 700;
            margin-bottom: 12px
        }

        .horizontal-card-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px
        }

        .horizontal-card-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary)
        }

        /* Slider Navigation Buttons */
        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, .1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, .2);
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .3s;
            opacity: 0;
            pointer-events: none;
            border: none;
            outline: none
        }

        .horizontal-products:hover .slider-nav-btn {
            opacity: 1;
            pointer-events: auto
        }

        .slider-nav-btn:hover:not(:disabled) {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-50%) scale(1.1)
        }

        .slider-nav-btn:active:not(:disabled) {
            transform: translateY(-50%) scale(0.95)
        }

        .slider-nav-btn.prev {
            left: 20px
        }

        .slider-nav-btn.next {
            right: 20px
        }

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

        [dir="rtl"] .slider-nav-btn.prev {
            left: auto;
            right: 20px
        }

        [dir="rtl"] .slider-nav-btn.next {
            right: auto;
            left: 20px
        }

        /* BANNERS */
        .banners {
            padding: 30px 0
        }

        .banners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px
        }

        .banner-card {
            border-radius: 12px;
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
            cursor: pointer;
            transition: all .3s;
            min-height: 140px;
            position: relative;
            overflow: hidden
        }

        .banner-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, .1));
            transform: translateX(-100%);
            transition: transform .5s
        }

        .banner-card:hover::before {
            transform: translateX(100%)
        }

        .banner-card:hover {
            transform: scale(1.02)
        }

        .banner-1 {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark))
        }

        .banner-2 {
            background: linear-gradient(135deg, #2d3748, #1a202c)
        }

        .banner-3 {
            background: linear-gradient(135deg, #7c3aed, #5b21b6)
        }

        .banner-text h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px
        }

        .banner-text p {
            font-size: 12px;
            opacity: .9;
            margin-bottom: 12px
        }

        .banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .2);
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            transition: all .3s
        }

        .banner-card:hover .banner-btn {
            background: rgba(255, 255, 255, .3)
        }

        .banner-icon {
            font-size: 50px;
            transition: all .3s
        }

        .banner-card:hover .banner-icon {
            transform: scale(1.2) rotate(10deg)
        }

        /* FEATURED */
        .featured {
            padding: 30px 0
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px
        }

        .products-grid .product-card {
            min-width: auto;
            max-width: none
        }

        /* ==================== 3D FLIP CARDS ==================== */
        .flip-section {
            padding: 60px 0;
            background: var(--gray-100)
        }

        .flip-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px
        }

        .flip-card {
            height: 380px;
            perspective: 1000px;
            cursor: pointer
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform .8s;
            transform-style: preserve-3d
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg)
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            border-radius: 16px;
            overflow: hidden
        }

        .flip-card-front {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
        }

        .flip-card-front img {
            width: 100%;
            height: 65%;
            object-fit: contain;
            padding: 20px;
            background: var(--gray-100)
        }

        .flip-card-front-content {
            padding: 15px 20px
        }

        .flip-card-front h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--secondary)
        }

        .flip-card-front p {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary)
        }

        .flip-card-back {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 25px;
            color: #fff;
            text-align: center
        }

        .flip-card-back h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 10px
        }

        .flip-card-back p {
            font-size: 13px;
            opacity: .9;
            margin-bottom: 20px;
            line-height: 1.6
        }

        .flip-card-back .price {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 15px
        }

        .flip-card-back button {
            padding: 12px 30px;
            background: #fff;
            border: none;
            border-radius: 25px;
            color: var(--primary);
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            cursor: pointer;
            transition: all .3s
        }

        .flip-card-back button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, .2)
        }

        /* BRANDS */
        .brands {
            padding: 30px 0;
            background: var(--gray-100)
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px
        }

        .brand-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all .3s;
            min-height: 80px
        }

        .brand-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
            transform: translateY(-5px)
        }

        .brand-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--gray-600);
            transition: color .3s
        }

        .brand-card:hover .brand-name {
            color: var(--primary)
        }

        /* ==================== MARQUEE ==================== */
        .marquee {
            background: var(--secondary);
            padding: 15px 0;
            overflow: hidden
        }

        .marquee-track {
            display: flex;
            animation: marquee 25s linear infinite
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 0 40px;
            white-space: nowrap;
            color: #fff;
            font-size: 14px;
            font-weight: 500
        }

        .marquee-item i {
            color: var(--primary);
            font-size: 18px
        }

        @keyframes marquee {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        [dir="rtl"] .marquee-track {
            animation: marqueeRTL 25s linear infinite
        }

        @keyframes marqueeRTL {
            0% {
                transform: translateX(-50%)
            }

            100% {
                transform: translateX(0)
            }
        }

        /* FEATURES SECTION */
        .features-section {
            padding: 50px 0;
            background: var(--secondary)
        }

        .features-section .section-title {
            color: #fff;
            text-align: center;
            margin-bottom: 30px
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px
        }

        .feature-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 16px;
            padding: 25px;
            text-align: center;
            transition: all .3s;
            cursor: pointer
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, .1);
            border-color: var(--primary);
            transform: translateY(-10px)
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
            color: #fff;
            transition: all .3s
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotate(10deg)
        }

        .feature-card h3 {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px
        }

        .feature-card p {
            color: var(--gray-500);
            font-size: 12px;
            line-height: 1.5
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonials {
            padding: 60px 0;
            background: #fff
        }

        .testimonials .section-title {
            text-align: center;
            margin-bottom: 40px
        }

        .testimonials .section-title span {
            color: var(--primary)
        }

        .testimonials-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 10px;
            scroll-snap-type: x mandatory
        }

        .testimonials-track::-webkit-scrollbar {
            display: none
        }

        .testimonial-card {
            min-width: 350px;
            padding: 30px;
            background: var(--gray-100);
            border-radius: 16px;
            scroll-snap-align: start;
            transition: all .3s
        }

        .testimonial-card:hover {
            background: #fff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
            transform: translateY(-5px)
        }

        .testimonial-stars {
            color: var(--primary);
            font-size: 16px;
            margin-bottom: 15px
        }

        .testimonial-text {
            font-size: 14px;
            color: var(--gray-700);
            line-height: 1.8;
            margin-bottom: 20px
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .testimonial-avatar {
            width: 45px;
            height: 45px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700
        }

        .testimonial-info h4 {
            font-weight: 600;
            font-size: 14px
        }

        .testimonial-info p {
            font-size: 12px;
            color: var(--gray-500)
        }

        /* APP SECTION */
        .app-section {
            padding: 50px 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            position: relative;
            overflow: hidden
        }

        .app-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: rgba(255, 255, 255, .05);
            transform: rotate(-20deg)
        }

        .app-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1
        }

        .app-text {
            color: #fff;
            max-width: 500px
        }

        .app-text h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px
        }

        .app-text p {
            font-size: 14px;
            opacity: .9;
            margin-bottom: 20px
        }

        .app-buttons {
            display: flex;
            gap: 12px
        }

        .app-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 0, 0, .3);
            padding: 10px 20px;
            border-radius: 8px;
            transition: all .3s
        }

        .app-btn:hover {
            background: rgba(0, 0, 0, .5);
            transform: translateY(-3px)
        }

        .app-btn i {
            font-size: 24px
        }

        .app-btn-text {
            text-align: left
        }

        .app-btn-text span {
            display: block;
            font-size: 10px;
            opacity: .8
        }

        .app-btn-text strong {
            font-size: 14px
        }

        .app-image {
            font-size: 150px;
            color: rgba(255, 255, 255, .2)
        }

        /* NEWSLETTER */
        .newsletter {
            padding: 40px 0;
            background: var(--gray-100)
        }

        .newsletter .container {
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .newsletter-text h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px
        }

        .newsletter-text p {
            font-size: 13px;
            color: var(--gray-600)
        }

        .newsletter-form {
            display: flex;
            gap: 10px
        }

        .newsletter-form input {
            width: 300px;
            padding: 12px 18px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            transition: all .3s
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(232, 93, 4, .1)
        }

        .newsletter-form button {
            padding: 12px 30px;
            background: var(--primary);
            border: none;
            border-radius: 8px;
            color: #fff;
            font-family: 'Cairo', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s
        }

        .newsletter-form button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px)
        }

        /* FOOTER */
        .footer {
            background: var(--secondary);
            color: #fff;
            padding: 50px 0 20px
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px
        }

        .footer-brand img {
            height: 35px;
            margin-bottom: 15px
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.7;
            margin-bottom: 15px
        }

        .footer-social {
            display: flex;
            gap: 10px
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, .1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .3s
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px)
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 18px
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--gray-500);
            padding: 6px 0;
            transition: all .3s
        }

        .footer-col a:hover {
            color: var(--primary);
            padding-left: 5px
        }

        .shop-on-the-go {
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, .1);
        }

        .shop-on-the-go h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
        }

        .shop-on-the-go .app-store-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .shop-on-the-go .app-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #000;
            color: #fff;
            padding: 10px 20px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .shop-on-the-go .app-btn:hover {
            background: #1a1a1a;
            border-color: #fff;
        }

        .shop-on-the-go .app-btn i {
            font-size: 24px;
        }

        .shop-on-the-go .app-btn-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .shop-on-the-go .app-btn-text span {
            font-size: 10px;
            opacity: 0.8;
        }

        .shop-on-the-go .app-btn-text strong {
            font-size: 16px;
        }

        .shop-on-the-go .app-btn-icon {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .footer-bottom p {
            font-size: 12px;
            color: var(--gray-500)
        }

        .payment-methods {
            display: flex;
            gap: 10px
        }

        .payment-methods span {
            background: #fff;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            color: var(--secondary)
        }

        /* Footer Payment Row */
        .footer-payment-row {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, .1);
            flex-wrap: wrap
        }

        .footer-payment-row h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin: 0
        }

        .footer-payment-row .payment-methods {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 10px
        }

        .footer-payment-row .payment-icon {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .1);
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            transition: all .3s;
            white-space: nowrap
        }

        .footer-payment-row .payment-icon:hover {
            background: rgba(255, 255, 255, .2)
        }

        .footer-payment-row .payment-icon i {
            font-size: 18px
        }

        .footer-bottom .footer-social {
            display: flex;
            gap: 10px
        }

        .footer-bottom .footer-social a {
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, .1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .3s;
            font-size: 14px
        }

        .footer-bottom .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px)
        }

        /* RESPONSIVE */
        @media(max-width:1200px) {
            .categories-grid {
                grid-template-columns: repeat(4, 1fr)
            }

            .products-grid {
                grid-template-columns: repeat(4, 1fr)
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .flip-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .phone-showcase .container {
                flex-direction: column;
                text-align: center
            }

            .phone-info {
                text-align: center
            }

            .phone-features {
                align-items: center
            }

            .phone-cta {
                justify-content: center
            }
        }

        @media(max-width:992px) {
            .hero-grid {
                grid-template-columns: 1fr
            }

            .hero-side {
                flex-direction: row
            }

            .banners-grid {
                grid-template-columns: 1fr
            }

            .brands-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:768px) {
            .top-bar-left span:not(:first-child) {
                display: none
            }

            .location-btn {
                display: none
            }

            .header-btn span {
                display: none
            }

            .nav {
                overflow-x: auto
            }

            .nav .container {
                width: max-content
            }

            .categories-grid {
                grid-template-columns: repeat(4, 1fr)
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .usp-bar .container {
                flex-wrap: wrap;
                gap: 15px;
                justify-content: center
            }

            .newsletter .container {
                flex-direction: column;
                text-align: center;
                gap: 20px
            }

            .newsletter-form {
                flex-direction: column
            }

            .newsletter-form input {
                width: 100%
            }

            .app-content {
                flex-direction: column;
                text-align: center
            }

            .app-buttons {
                justify-content: center
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .flip-grid {
                grid-template-columns: 1fr
            }

            .horizontal-card {
                min-width: 280px;
                height: 380px
            }

            .testimonial-card {
                min-width: 280px
            }

            .phone-wrapper img {
                width: 220px
            }

            .phone-title {
                font-size: 32px
            }

            .slider-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
                opacity: 1
            }

            .slider-nav-btn.prev {
                left: 10px
            }

            .slider-nav-btn.next {
                right: 10px
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MEDIA QUERIES
           ============================================ */

        /* Tablet and below (768px) */
        @media (max-width: 768px) {
            .container {
                padding: 0 12px;
            }

            .top-bar {
                font-size: 11px;
            }

            .top-bar-left {
                gap: 15px;
                flex-wrap: wrap;
            }

            .top-bar-right {
                gap: 12px;
                flex-wrap: wrap;
            }

            .top-bar .container {
                gap: 10px;
                flex-wrap: wrap;
            }

            .header .container {
                gap: 12px;
                flex-wrap: wrap;
            }

            /* Logo adjustment removed to inherit global size */

            .location-btn {
                font-size: 11px;
                padding: 6px 10px;
            }

            .search-box {
                order: 3;
                width: 100%;
                max-width: 100%;
            }

            .header-actions {
                gap: 5px;
            }

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

            .header-btn span {
                display: none;
            }

            .nav-item {
                padding: 10px 14px;
                font-size: 12px;
            }

            .nav {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .nav::-webkit-scrollbar {
                height: 4px;
            }

            .nav::-webkit-scrollbar-thumb {
                background: var(--gray-300);
                border-radius: 2px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-side {
                grid-template-columns: 1fr 1fr;
                display: grid;
            }

            .hero-slider {
                aspect-ratio: 16/9;
            }

            .slide-inner {
                padding: 0 25px;
                flex-direction: column;
                text-align: center;
            }

            .slide-title {
                font-size: 24px;
            }

            .slide-subtitle {
                font-size: 12px;
            }

            .slide-image {
                width: 200px;
                height: 200px;
            }

            .usp-bar .container {
                justify-content: center;
            }

            .usp-item {
                min-width: 150px;
            }

            .usp-text strong {
                font-size: 12px;
            }

            .usp-text span {
                font-size: 10px;
            }

            .section-title {
                font-size: 18px;
            }

            .section-link {
                font-size: 12px;
            }

            .categories-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 10px;
            }

            .category-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .category-name {
                font-size: 12px;
            }

            .time-unit {
                min-width: 60px;
                padding: 10px 12px;
            }

            .time-number {
                font-size: 20px;
            }

            .deals-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }

            .deal-title,
            .product-title {
                font-size: 13px;
                min-height: 36px;
            }

            .current-price,
            .price-current {
                font-size: 16px;
            }

            .phone-showcase {
                padding: 40px 0;
            }

            .phone-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .phone-text h2 {
                font-size: 28px;
            }

            .phone-text .price-tag {
                font-size: 24px;
            }

            .phone-visual {
                height: 400px;
            }

            .phone-wrapper {
                width: 240px;
                height: 400px;
            }

            .brand-card {
                min-width: 140px;
                height: 80px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card {
                padding: 25px 15px;
            }

            .app-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .app-text h2 {
                font-size: 26px;
            }

            .app-text p {
                font-size: 14px;
            }

            .app-image {
                font-size: 100px;
            }

            .newsletter .container {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .footer-brand {
                grid-column: span 2;
                text-align: center;
            }

            .footer-col {
                text-align: center;
            }

            .footer-payment-row {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
            }

            .footer-payment-row .payment-methods {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-bottom .footer-social {
                justify-content: center;
            }
        }

        /* Mobile (480px and below) */
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .footer-brand {
                grid-column: span 2;
            }

            .footer-col h4 {
                font-size: 13px;
                margin-bottom: 12px;
            }

            .footer-col a {
                font-size: 12px;
                margin-bottom: 6px;
            }
            .top-bar {
                display: none;
            }

            .header {
                padding: 8px 0;
            }

            /* Logo adjustment removed to inherit global size */

            .location-btn {
                display: none;
            }

            .header-btn {
                padding: 5px 8px;
            }

            .header-btn i {
                font-size: 16px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 280px;
                height: 100vh;
                background: #fff;
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 9999;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
                padding-top: 60px;
                /* Space for close button if needed, or just top padding */
                transform: translateX(0);
                /* Reset transform */
                visibility: hidden;
            }

            [dir="rtl"] .nav {
                left: auto;
                right: -100%;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            }

            .nav.active {
                transform: translateX(100%);
                visibility: visible;
            }

            [dir="rtl"] .nav.active {
                transform: translateX(-100%);
            }

            /* Use transform for better performance, but keep left/right for fallback/base pos */
            .nav {
                transform: translateX(0);
                left: -280px;
                visibility: visible;
                /* Override hidden to use transform translate */
            }

            [dir="rtl"] .nav {
                left: auto;
                right: -280px;
            }

            .nav.active {
                transform: translateX(280px);
            }

            [dir="rtl"] .nav.active {
                transform: translateX(-280px);
            }

            .nav .container {
                flex-direction: column;
                padding: 0;
                height: auto;
                width: 100%;
            }

            .nav-item {
                width: 100%;
                padding: 15px 20px;
                border-bottom: 1px solid var(--gray-200);
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 14px;
            }

            .nav-item i {
                width: 20px;
                text-align: center;
                font-size: 16px;
                color: var(--primary);
            }

            .menu-overlay {
                z-index: 9990;
                /* Behind nav */
            }

            .slide-title {
                font-size: 20px;
            }

            .slide-subtitle {
                font-size: 11px;
            }

            .slide-btn {
                font-size: 12px;
                padding: 8px 18px;
            }

            .slide-image {
                width: 150px;
                height: 150px;
            }

            .time-unit {
                min-width: 55px;
                padding: 8px 10px;
            }

            .time-number {
                font-size: 18px;
            }

            .time-label {
                font-size: 9px;
            }

            .deals-grid,
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .deal-card,
            .product-card {
                border-radius: 8px;
            }

            .deal-info,
            .product-info {
                padding: 10px;
            }

            .deal-title,
            .product-title {
                font-size: 12px;
                min-height: 32px;
            }

            .current-price,
            .price-current {
                font-size: 15px;
            }

            .old-price,
            .price-old {
                font-size: 12px;
            }

            .add-to-cart,
            .btn-add-cart {
                font-size: 12px;
                padding: 8px;
            }

            .product-wishlist {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .phone-text h2 {
                font-size: 24px;
            }

            .phone-text .price-tag {
                font-size: 20px;
            }

            .phone-feature {
                padding: 12px;
            }

            .feature-icon-box {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .feature-text h4 {
                font-size: 14px;
            }

            .feature-text p {
                font-size: 12px;
            }

            .btn-primary,
            .btn-secondary {
                padding: 12px 24px;
                font-size: 13px;
            }

            .phone-wrapper {
                width: 200px;
                height: 350px;
            }

            .brand-card {
                min-width: 120px;
                height: 70px;
            }

            .brand-logo {
                font-size: 20px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 26px;
            }

            .feature-card h3 {
                font-size: 16px;
            }

            .feature-card p {
                font-size: 13px;
            }

            .app-text h2 {
                font-size: 22px;
            }

            .app-text p {
                font-size: 13px;
            }

            .app-buttons {
                flex-direction: column;
            }

            .app-btn {
                width: 100%;
                justify-content: center;
            }

            .newsletter-text h3 {
                font-size: 18px;
            }

            .newsletter-text p {
                font-size: 13px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
            }

            .payment-methods {
                justify-content: center;
            }

            .payment-methods span {
                font-size: 11px;
                padding: 5px 10px;
            }
        }

        /* Very small mobile (360px and below) */
        @media (max-width: 360px) {

            .deals-grid,
            .products-grid {
                grid-template-columns: 1fr;
            }

            .hero-side {
                grid-template-columns: 1fr;
            }

            .usp-item {
                min-width: 100%;
            }
        }

        /* ==================== CART PAGE ==================== */
        .cart-area {
            padding: 28px 0 42px;
        }

        .page-heading {
            font-size: 27px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .item-count {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 24px;
        }

        .cart-layout {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 24px;
            align-items: start;
        }

        .items-wrapper {
            background: #fff;
            border-radius: 11px;
            border: 1px solid #e8e8e8;
            padding: 0;
            overflow: hidden;
        }

        .cart-item {
            padding: 18px 20px;
            border-bottom: 1px solid #f0f0f0;
            display: grid;
            grid-template-columns: 110px 1fr auto;
            gap: 16px;
            position: relative;
        }

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

        .item-pic {
            background: var(--gray-50);
            border-radius: 8px;
            padding: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1;
        }

        .item-pic img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .item-details {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .item-brand {
            font-size: 11px;
            color: var(--gray-500);
            font-weight: 600;
            text-transform: uppercase;
        }

        .item-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 3px;
        }

        .item-options {
            font-size: 12px;
            color: var(--gray-600);
        }

        .item-stock {
            font-size: 12px;
            color: var(--green);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 2px;
        }

        .item-stock i {
            font-size: 10px;
        }

        .item-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }

        .item-price {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }

        .item-old-price {
            font-size: 13px;
            color: var(--gray-400);
            text-decoration: line-through;
            margin-top: -8px;
        }

        .qty-box {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .qty-btn {
            width: 32px;
            height: 32px;
            border: 1px solid var(--gray-300);
            background: #fff;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .qty-btn:hover {
            background: var(--gray-100);
        }

        .qty-btn:first-child {
            border-radius: 5px 0 0 5px;
        }

        .qty-btn:last-child {
            border-radius: 0 5px 5px 0;
        }

        .qty-input {
            width: 48px;
            height: 32px;
            border: 1px solid var(--gray-300);
            border-left: none;
            border-right: none;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

        .remove-btn {
            background: none;
            border: none;
            color: var(--red);
            cursor: pointer;
            font-size: 13px;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .remove-btn:hover {
            background: #FEE2E2;
        }

        .summary-box {
            background: #fff;
            border-radius: 11px;
            border: 1px solid #e8e8e8;
            padding: 22px;
            position: sticky;
            top: 95px;
        }

        .summary-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 18px;
        }

        .coupon-area {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .coupon-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 8px;
            display: block;
        }

        .coupon-row {
            display: flex;
            gap: 8px;
        }

        .coupon-input {
            flex: 1;
            padding: 10px 13px;
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            font-size: 13px;
            font-family: 'Cairo', sans-serif;
        }

        .coupon-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .apply-btn {
            padding: 10px 18px;
            background: var(--secondary);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .apply-btn:hover {
            background: var(--dark);
        }

        .coupon-applied {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #f0fdf4;
            border: 1px dashed #22c55e;
            border-radius: 8px;
            padding: 10px 14px;
        }

        .coupon-applied-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #15803d;
        }

        .coupon-applied-info i {
            font-size: 14px;
        }

        .coupon-applied-discount {
            font-weight: 700;
            color: #dc2626;
            margin-inline-start: 6px;
        }

        .coupon-remove-btn {
            background: none;
            border: none;
            color: var(--gray-500);
            cursor: pointer;
            font-size: 16px;
            padding: 4px;
            transition: color 0.2s;
        }

        .coupon-remove-btn:hover {
            color: #dc2626;
        }

        .coupon-msg {
            font-size: 12px;
            margin-top: 6px;
            padding: 0 2px;
        }

        .coupon-msg.success {
            color: #15803d;
        }

        .coupon-msg.error {
            color: #dc2626;
        }

        .coupon-discount-row .summary-value {
            color: #dc2626;
            font-weight: 700;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .summary-label {
            color: var(--gray-700);
        }

        .summary-value {
            font-weight: 600;
            color: var(--secondary);
            font-family: 'Poppins', sans-serif;
        }

        .summary-value.green {
            color: var(--green);
        }

        .summary-value.red {
            color: var(--red);
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            margin-top: 16px;
            border-top: 2px solid #e8e8e8;
        }

        .total-label {
            font-size: 16px;
            font-weight: 700;
            color: var(--secondary);
        }

        .total-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }

        .checkout-btn {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 7px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .checkout-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 5px 18px rgba(232, 93, 4, .3);
        }

        .continue-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 14px;
            font-size: 13px;
            color: var(--gray-600);
            cursor: pointer;
        }

        .continue-link:hover {
            color: var(--primary);
        }

        .payment-icons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid #f0f0f0;
            flex-wrap: wrap;
        }

        .payment-icons i {
            font-size: 28px;
            color: var(--gray-400);
        }

        .empty-cart {
            background: #fff;
            border-radius: 11px;
            border: 1px solid #e8e8e8;
            padding: 60px 30px;
            text-align: center;
        }

        .empty-icon {
            font-size: 72px;
            color: var(--gray-300);
            margin-bottom: 18px;
        }

        .empty-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .empty-text {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 24px;
        }

        .shop-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 7px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .shop-btn:hover {
            background: var(--primary-dark);
        }

        /* ==================== CHECKOUT PAGE ==================== */
        .checkout-area {
            padding: 28px 0 42px;
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: 1fr 410px;
            gap: 24px;
            align-items: start;
        }

        .checkout-left {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .section-box {
            background: #fff;
            border-radius: 11px;
            border: 1px solid #e8e8e8;
            padding: 22px;
        }

        .section-heading {
            font-size: 17px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-number {
            width: 26px;
            height: 26px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--secondary);
        }

        .form-label .required {
            color: var(--red);
            margin-left: 2px;
        }

        .form-input,
        .form-select {
            padding: 11px 13px;
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Cairo', sans-serif;
            transition: all 0.2s;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(232, 93, 4, .1);
        }

        .form-textarea {
            padding: 11px 13px;
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            font-size: 14px;
            resize: vertical;
            font-family: 'Cairo', sans-serif;
            min-height: 80px;
            transition: all 0.2s;
        }

        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(232, 93, 4, .1);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px;
            background: var(--gray-50);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .checkbox-group:hover {
            background: #f0f0f0;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .checkbox-group label {
            font-size: 13px;
            color: var(--gray-700);
            cursor: pointer;
            flex: 1;
        }

        .payment-methods {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .payment-option {
            padding: 14px;
            border: 2px solid var(--gray-300);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .payment-option:hover {
            border-color: var(--gray-400);
        }

        .payment-option.selected {
            border-color: var(--primary);
            background: rgba(232, 93, 4, .03);
        }

        .payment-option input[type="radio"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .payment-label {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .payment-icon {
            font-size: 24px;
            color: var(--gray-600);
        }

        .payment-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary);
        }

        .payment-desc {
            font-size: 12px;
            color: var(--gray-600);
            margin-top: 2px;
        }

        .card-details {
            display: none;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid #f0f0f0;
        }

        .card-details.show {
            display: block;
        }

        .summary-heading {
            font-size: 18px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 18px;
        }

        .summary-item {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .summary-item:first-child {
            padding-top: 0;
        }

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

        .summary-pic {
            width: 60px;
            height: 60px;
            background: var(--gray-50);
            border-radius: 6px;
            padding: 6px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .summary-pic img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .summary-info {
            flex: 1;
        }

        .summary-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 3px;
        }

        .summary-qty {
            font-size: 12px;
            color: var(--gray-600);
        }

        .summary-price {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }

        .totals-area {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid #e8e8e8;
        }

        .total-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .total-label {
            color: var(--gray-700);
        }

        .total-value {
            font-weight: 600;
            color: var(--secondary);
            font-family: 'Poppins', sans-serif;
        }

        .total-value.green {
            color: var(--green);
        }

        .final-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 14px;
            margin-top: 14px;
            border-top: 2px solid #e8e8e8;
        }

        .final-label {
            font-size: 16px;
            font-weight: 700;
            color: var(--secondary);
        }

        .final-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }

        .place-order-btn {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 7px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .place-order-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 5px 18px rgba(232, 93, 4, .3);
        }

        .security-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 14px;
            font-size: 12px;
            color: var(--gray-600);
        }

        .security-note i {
            color: var(--green);
        }

        /* ==================== PRODUCT DETAIL PAGE ==================== */
        .product-wrapper {
            padding: 24px 0 35px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: 42% 1fr;
            gap: 32px;
            margin-bottom: 40px;
        }

        .gallery-area {
            position: sticky;
            top: 90px;
            height: fit-content;
        }

        .gallery-zoom-container {
            position: relative;
        }

        .sale-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 5;
            background: var(--red);
            color: #fff;
            padding: 6px 11px;
            border-radius: 5px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        .main-img-wrap {
            background: #fff;
            border-radius: 11px;
            padding: 22px;
            border: 1px solid #e8e8e8;
            margin-bottom: 11px;
            position: relative;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: zoom-in;
        }

        .main-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Amazon-style Image Zoom */
        .zoom-lens {
            position: absolute;
            width: 150px;
            height: 150px;
            background: transparent;
            border: none;
            pointer-events: none;
            z-index: 10;
            visibility: hidden;
        }

        .zoom-result {
            position: absolute;
            top: 0;
            left: calc(100% + 15px);
            width: 450px;
            height: 450px;
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 11px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            background-repeat: no-repeat;
            display: none;
            z-index: 100;
            overflow: hidden;
        }

        .main-img-wrap:hover~.zoom-result {
            display: block;
        }

        @media (max-width: 1200px) {
            .zoom-result {
                width: 350px;
                height: 350px;
            }
        }

        @media (max-width: 992px) {

            .zoom-lens,
            .zoom-result {
                display: none !important;
            }

            .main-img-wrap {
                cursor: default;
            }
        }

        .thumbs-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 9px;
        }

        .thumb-item {
            background: #fff;
            border: 2px solid #e8e8e8;
            border-radius: 7px;
            padding: 9px;
            cursor: pointer;
            transition: all 0.2s;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .thumb-item:hover {
            border-color: #ccc;
        }

        .thumb-item.active {
            border-color: var(--primary);
        }

        .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .info-panel {
            background: #fff;
            border-radius: 11px;
            padding: 26px;
            border: 1px solid #e8e8e8;
        }

        .brand-tag {
            font-size: 11px;
            color: var(--gray-500);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 7px;
        }

        .prod-title {
            font-size: 25px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 11px;
            line-height: 1.3;
        }

        .rating-row {
            display: flex;
            align-items: center;
            gap: 11px;
            margin-bottom: 17px;
            padding-bottom: 17px;
            border-bottom: 1px solid #f0f0f0;
        }

        .star-icons {
            color: var(--yellow);
            font-size: 15px;
            letter-spacing: 1px;
        }

        .rating-num {
            font-size: 14px;
            color: var(--gray-700);
            font-weight: 500;
        }

        .rating-num strong {
            color: var(--secondary);
        }

        .review-link {
            color: var(--primary);
            font-size: 13px;
            cursor: pointer;
            margin-left: auto;
        }

        .review-link:hover {
            text-decoration: underline;
        }

        .price-wrap {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .big-price {
            font-size: 33px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
            margin-bottom: 5px;
        }

        .price-row {
            display: flex;
            align-items: center;
            gap: 11px;
            flex-wrap: wrap;
        }

        .old-price {
            font-size: 17px;
            color: var(--gray-400);
            text-decoration: line-through;
            font-weight: 500;
        }

        .save-tag {
            background: #FEE2E2;
            color: var(--red);
            padding: 3px 9px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
        }

        .vat-text {
            font-size: 12px;
            color: var(--gray-600);
            margin-top: 5px;
        }

        .stock-line {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            font-weight: 600;
            color: var(--green);
            margin-bottom: 17px;
        }

        .stock-line i {
            font-size: 11px;
        }

        .stock-line.out-of-stock {
            color: #ef4444 !important;
        }

        .stock-line.out-of-stock #stockText {
            color: #ef4444 !important;
        }

        .stock-line.out-of-stock i {
            color: #ef4444 !important;
        }

        .opt-section {
            margin-bottom: 20px;
        }

        .opt-heading {
            font-size: 13px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 9px;
            display: block;
        }

        .colors-grid {
            display: flex;
            gap: 9px;
            flex-wrap: wrap;
        }

        .color-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.2s;
            position: relative;
        }

        .color-btn:hover {
            transform: scale(1.06);
        }

        .color-btn.picked {
            border-color: var(--primary);
            box-shadow: 0 0 0 1px rgba(232, 93, 4, .2);
        }

        .storage-grid {
            display: flex;
            gap: 9px;
            flex-wrap: wrap;
        }

        .storage-btn {
            padding: 9px 17px;
            border: 2px solid var(--gray-300);
            border-radius: 7px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.2s;
            background: #fff;
        }

        .storage-btn:hover {
            border-color: var(--gray-400);
        }

        .storage-btn.picked {
            border-color: var(--primary);
            background: rgba(232, 93, 4, .04);
            color: var(--primary);
        }

        /* Variant Options Row - Color and Size side by side */
        .variant-options-row {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .variant-option-group {
            flex: 1;
            min-width: 120px;
        }

        /* Divider Line */
        .variant-divider {
            width: 100%;
            height: 1px;
            background: var(--gray-300);
            margin: 15px 0;
        }

        /* All Variants Section */
        .all-variants-section {
            margin-bottom: 20px;
        }

        .variants-list {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 10px;
            scroll-behavior: smooth;
        }

        .variants-list::-webkit-scrollbar {
            height: 6px;
        }

        .variants-list::-webkit-scrollbar-track {
            background: var(--gray-200);
            border-radius: 3px;
        }

        .variants-list::-webkit-scrollbar-thumb {
            background: var(--gray-400);
            border-radius: 3px;
        }

        /* Variant Card */
        .variant-card {
            flex-shrink: 0;
            width: 100px;
            border: 2px solid var(--gray-300);
            border-radius: 10px;
            padding: 8px;
            cursor: pointer;
            transition: all 0.2s;
            background: #fff;
            text-align: center;
        }

        .variant-card:hover {
            border-color: var(--gray-400);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .variant-card.picked {
            border-color: var(--primary);
            background: rgba(232, 93, 4, .04);
        }

        .variant-card-image {
            width: 80px;
            height: 80px;
            margin: 0 auto 8px;
            border-radius: 6px;
            overflow: hidden;
        }

        .variant-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .variant-card-info {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .variant-card-name {
            font-size: 11px;
            font-weight: 600;
            color: var(--secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .variant-card-price {
            font-size: 12px;
            font-weight: 700;
            color: var(--primary);
        }

        .specs-section {
            margin-bottom: 20px;
        }

        .specs-list {
            list-style: disc;
            padding-left: 20px;
            margin: 0;
            color: var(--gray-700);
            font-size: 14px;
            line-height: 1.8;
        }

        .specs-list li {
            margin-bottom: 5px;
        }

        .specs-list li::marker {
            color: #000;
        }

        .specs-list li strong {
            color: var(--secondary);
            font-weight: 600;
        }

        .qty-wrap {
            margin-bottom: 20px;
        }

        .qty-control {
            display: flex;
            align-items: center;
            gap: 0;
            width: fit-content;
        }

        .qty-minus,
        .qty-plus {
            width: 37px;
            height: 37px;
            border: 1px solid var(--gray-300);
            background: #fff;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .qty-minus:hover,
        .qty-plus:hover {
            background: var(--gray-100);
        }

        .qty-minus:disabled,
        .qty-plus:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: var(--gray-100);
        }

        .qty-minus:disabled:hover,
        .qty-plus:disabled:hover {
            background: var(--gray-100);
        }

        .qty-minus {
            border-radius: 6px 0 0 6px;
        }

        .qty-plus {
            border-radius: 0 6px 6px 0;
        }

        .qty-num {
            width: 58px;
            height: 37px;
            border: 1px solid var(--gray-300);
            border-left: none;
            border-right: none;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

        .action-row {
            display: flex;
            gap: 9px;
            margin-bottom: 17px;
        }

        .add-cart {
            flex: 1;
            padding: 13px 22px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 7px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
        }

        .add-cart:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 5px 18px rgba(232, 93, 4, .3);
        }

        .add-cart:disabled {
            opacity: 0.6 !important;
            cursor: not-allowed !important;
            background: var(--gray-400) !important;
        }

        .add-cart:disabled:hover {
            background: var(--gray-400) !important;
            transform: none !important;
            box-shadow: none !important;
        }

        .add-cart.out-of-stock-btn {
            opacity: 0.6 !important;
            cursor: not-allowed !important;
            background: #9e9e9e !important;
        }

        .add-cart.out-of-stock-btn:hover {
            background: #9e9e9e !important;
            transform: none !important;
            box-shadow: none !important;
        }

        .icon-btn {
            padding: 13px 17px;
            background: #fff;
            border: 2px solid var(--gray-300);
            border-radius: 7px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .ship-box {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 7px;
            font-size: 13px;
            color: var(--gray-700);
            margin-bottom: 17px;
            border-left: 3px solid var(--primary);
        }

        .ship-box i {
            color: var(--primary);
            margin-right: 5px;
        }

        .ship-box strong {
            color: var(--secondary);
        }

        .ship-row {
            margin-bottom: 7px;
        }

        .ship-row:last-child {
            margin-bottom: 0;
        }

        /* Coupon Card */
        .coupon-card {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #fff8f0 0%, #fff3e6 100%);
            border: 1.5px dashed var(--primary);
            border-radius: 8px;
            padding: 8px 14px;
            margin-bottom: 17px;
        }

        .coupon-card-icon {
            color: var(--primary);
            font-size: 14px;
        }

        .coupon-card-text {
            font-size: 13px;
            font-weight: 700;
            color: var(--secondary);
            white-space: nowrap;
        }

        .coupon-learn-more {
            font-size: 12px;
            color: var(--primary);
            text-decoration: underline;
            cursor: pointer;
            white-space: nowrap;
        }

        .coupon-learn-more:hover {
            color: var(--primary-dark);
        }

        .coupon-card-sep {
            color: #ddd;
            font-size: 14px;
        }

        .coupon-card-code {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 1px;
            font-family: monospace;
            white-space: nowrap;
        }

        .coupon-copy-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: #999;
            font-size: 14px;
            padding: 2px 4px;
            transition: color 0.2s;
        }

        .coupon-copy-btn:hover {
            color: var(--primary);
        }

        .coupon-copy-btn.copied {
            color: #28a745;
        }

        /* Coupon Modal */
        .coupon-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }

        .coupon-modal-overlay.active {
            display: flex;
        }

        .coupon-modal {
            background: #fff;
            border-radius: 12px;
            padding: 28px 24px;
            width: 90%;
            max-width: 400px;
            position: relative;
            animation: couponModalIn 0.25s ease-out;
        }

        @keyframes couponModalIn {
            from { opacity: 0; transform: scale(0.95) translateY(10px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .coupon-modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            font-size: 18px;
            color: #999;
            cursor: pointer;
            padding: 4px 8px;
            transition: color 0.2s;
        }

        [dir="rtl"] .coupon-modal-close {
            right: auto;
            left: 12px;
        }

        .coupon-modal-close:hover {
            color: var(--secondary);
        }

        .coupon-modal-header {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 18px;
        }

        .coupon-modal-header i {
            color: var(--primary);
            font-size: 20px;
        }

        .coupon-modal-code-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #f9f9f9;
            border: 2px dashed var(--primary);
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 16px;
        }

        .coupon-modal-code {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 2px;
            font-family: monospace;
        }

        .coupon-modal-view-products {
            display: block;
            text-align: center;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            margin-bottom: 16px;
            transition: color 0.2s;
        }

        .coupon-modal-view-products:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .coupon-modal-view-products i {
            margin-right: 5px;
        }

        [dir="rtl"] .coupon-modal-view-products i {
            margin-right: 0;
            margin-left: 5px;
        }

        .coupon-modal-divider {
            height: 1px;
            background: #eee;
            margin-bottom: 16px;
        }

        .coupon-modal-details-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .coupon-modal-details {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .coupon-modal-details li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 0;
            font-size: 13px;
            color: var(--gray-700);
            border-bottom: 1px solid #f5f5f5;
        }

        .coupon-modal-details li:last-child {
            border-bottom: none;
        }

        .coupon-modal-details li i {
            color: var(--primary);
            font-size: 13px;
            width: 16px;
            text-align: center;
        }

        .perks {
            list-style: none;
        }

        .perks li {
            padding: 7px 0;
            font-size: 13px;
            color: var(--gray-700);
            display: flex;
            align-items: flex-start;
            gap: 9px;
        }

        .perks i {
            color: var(--green);
            margin-top: 2px;
            font-size: 13px;
        }

        .tabs-wrap {
            margin-bottom: 40px;
        }

        .tab-headers {
            display: flex;
            gap: 6px;
            border-bottom: 2px solid #e8e8e8;
            margin-bottom: 23px;
            overflow-x: auto;
        }

        .tab-head {
            padding: 11px 22px;
            background: none;
            border: none;
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-600);
            cursor: pointer;
            position: relative;
            white-space: nowrap;
            transition: all 0.2s;
            font-family: 'Cairo', sans-serif;
        }

        .tab-head::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.2s;
        }

        .tab-head:hover {
            color: var(--secondary);
        }

        .tab-head.live {
            color: var(--primary);
        }

        .tab-head.live::after {
            transform: scaleX(1);
        }

        .tab-body {
            display: none;
        }

        .tab-body.live {
            display: block;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .tab-box {
            background: #fff;
            border-radius: 11px;
            padding: 26px;
            border: 1px solid #e8e8e8;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
        }

        .spec-table tr {
            border-bottom: 1px solid #f0f0f0;
        }

        .spec-table tr:last-child {
            border-bottom: none;
        }

        .spec-table td {
            padding: 13px 0;
            font-size: 13px;
        }

        .spec-table td:first-child {
            font-weight: 600;
            color: var(--secondary);
            width: 38%;
        }

        .spec-table td:last-child {
            color: var(--gray-700);
        }

        .review-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 23px;
            padding-bottom: 17px;
            border-bottom: 1px solid #f0f0f0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .review-stats {
            display: flex;
            gap: 23px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .score-box {
            text-align: center;
        }

        .huge-score {
            font-size: 40px;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Poppins', sans-serif;
            line-height: 1;
        }

        .score-stars {
            color: var(--yellow);
            font-size: 17px;
            margin: 5px 0 4px;
        }

        .total-reviews {
            font-size: 12px;
            color: var(--gray-600);
        }

        .bars-area {
            flex: 1;
            max-width: 280px;
        }

        .bar-line {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 5px;
        }

        .bar-tag {
            font-size: 12px;
            color: var(--gray-600);
            min-width: 55px;
        }

        .bar-track {
            flex: 1;
            height: 7px;
            background: #f0f0f0;
            border-radius: 3px;
            overflow: hidden;
        }

        .bar-progress {
            height: 100%;
            background: var(--yellow);
            transition: width 0.3s;
        }

        .bar-num {
            font-size: 11px;
            color: var(--gray-500);
            min-width: 32px;
            text-align: right;
        }

        .write-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 19px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
        }

        .write-btn:hover {
            background: var(--primary-dark);
            color: #fff;
        }

        .write-btn--locked {
            background: var(--gray-300);
            color: var(--gray-500);
            cursor: not-allowed;
        }

        .write-btn--locked:hover {
            background: var(--gray-300);
        }

        .review-success-msg,
        .review-already-msg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
        }

        .review-success-msg {
            background: #e6f9f0;
            color: #1a7a4a;
        }

        .review-already-msg {
            background: #fff7e6;
            color: #b45309;
        }

        /* Review modal */
        .review-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .review-modal {
            background: #fff;
            border-radius: 14px;
            padding: 32px;
            width: 100%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
        }

        .review-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--gray-100);
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            cursor: pointer;
            font-size: 14px;
            color: var(--gray-600);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .review-modal-close:hover {
            background: var(--gray-200);
        }

        .review-modal-title {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 20px;
            color: var(--secondary);
        }

        .review-errors {
            background: #fff0f0;
            border: 1px solid #fca5a5;
            border-radius: 8px;
            padding: 12px 14px;
            margin-bottom: 16px;
        }

        .review-errors p {
            margin: 0;
            font-size: 13px;
            color: #dc2626;
            line-height: 1.6;
        }

        .review-form-group {
            margin-bottom: 18px;
        }

        .review-form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 8px;
        }

        /* CSS-only star picker */
        .star-picker {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }

        .star-picker input[type="radio"] {
            display: none;
        }

        .star-picker label {
            font-size: 28px;
            color: var(--gray-300);
            cursor: pointer;
            transition: color 0.15s;
        }

        .star-picker input[type="radio"]:checked ~ label,
        .star-picker label:hover,
        .star-picker label:hover ~ label {
            color: #f59e0b;
        }

        .review-textarea {
            width: 100%;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            padding: 10px 12px;
            font-size: 13px;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.2s;
        }

        .review-textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .review-field-error {
            margin: 4px 0 0;
            font-size: 12px;
            color: #dc2626;
        }

        .review-submit-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }

        .review-submit-btn:hover {
            background: var(--primary-dark);
        }

        .review-block {
            padding: 18px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .review-block:last-child {
            border-bottom: none;
        }

        .reviewer-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 9px;
        }

        .reviewer-name {
            font-weight: 600;
            color: var(--secondary);
            font-size: 14px;
        }

        .review-when {
            font-size: 11px;
            color: var(--gray-500);
        }

        .review-rating {
            color: var(--yellow);
            font-size: 13px;
            margin-bottom: 9px;
        }

        .review-comment {
            font-size: 13px;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 9px;
        }

        /* Review images — displayed in review cards */
        .review-images {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .review-img-thumb {
            width: 72px;
            height: 72px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid var(--gray-200);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .review-img-thumb:hover {
            transform: scale(1.06);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        /* File input — hidden, triggered by label */
        .review-image-input {
            display: none;
        }

        .review-image-input-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 16px;
            border: 1.5px dashed var(--gray-400);
            border-radius: 8px;
            color: var(--gray-600);
            font-size: 13px;
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s;
        }

        .review-image-input-label:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .review-img-hint {
            font-size: 11px;
            color: var(--gray-500);
            font-weight: 400;
            margin-inline-start: 6px;
        }

        /* Pre-submit preview thumbnails */
        .review-image-previews {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .review-preview-thumb {
            width: 64px;
            height: 64px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid var(--gray-300);
        }

        .helpful-row {
            font-size: 12px;
            color: var(--gray-600);
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .helpful-btn {
            background: none;
            border: 1px solid #ddd;
            padding: 4px 11px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 11px;
            transition: all 0.2s;
            font-family: 'Cairo', sans-serif;
        }

        .helpful-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .related-area {
            margin-bottom: 35px;
        }

        .related-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .related-title {
            font-size: 21px;
            font-weight: 700;
            color: var(--secondary);
        }

        .see-all {
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .see-all:hover {
            text-decoration: underline;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 17px;
        }

        .prod-card {
            background: #fff;
            border-radius: 9px;
            overflow: hidden;
            border: 1px solid #e8e8e8;
            transition: all 0.25s;
            position: relative;
        }

        .prod-card:hover {
            box-shadow: 0 7px 22px rgba(0, 0, 0, .08);
            transform: translateY(-2px);
        }

        .prod-card:hover .quick-view-btn {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .prod-pic-box {
            position: relative;
            background: var(--gray-50);
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px;
            overflow: hidden;
        }

        .prod-pic {
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
            display: block;
        }

        .prod-card:hover .prod-pic {
            transform: scale(1.04);
        }

        .prod-pic-box a {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .prod-pic-box .quick-view-btn {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%) translateY(50px);
            background: var(--secondary);
            color: #fff;
            padding: 7px 18px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            opacity: 0;
            transition: all 0.3s;
            cursor: pointer;
            white-space: nowrap;
            z-index: 3;
            border: none;
        }

        .prod-info {
            padding: 13px 14px;
        }

        .brand-small {
            font-size: 10px;
            color: var(--gray-500);
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .name-small {
            font-size: 13px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 38px;
        }

        .price-small {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }

        /* ==================== PRODUCTS PAGE ==================== */
        .products-wrapper {
            padding: 25px 0 40px;
        }

        .products-layout {
            display: grid;
            grid-template-columns: 265px 1fr;
            gap: 22px;
        }

        .filters-sidebar {
            background: #fff;
            border-radius: 10px;
            padding: 0;
            height: fit-content;
            position: sticky;
            top: 95px;
            border: 1px solid var(--gray-200);
        }

        .filter-header {
            padding: 18px 20px;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .filter-header h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--secondary);
        }

        .clear-filters {
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
        }

        .clear-filters:hover {
            text-decoration: underline;
        }

        .filter-group {
            padding: 18px 20px;
            border-bottom: 1px solid var(--gray-200);
        }

        .filter-group:last-child {
            border-bottom: none;
        }

        .filter-title {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 13px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            user-select: none;
        }

        .filter-title i {
            font-size: 11px;
            color: var(--gray-500);
            transition: transform 0.2s;
        }

        .filter-options {
            display: grid;
            gap: 9px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 9px;
            cursor: pointer;
            padding: 4px 0;
        }

        .filter-option:hover .filter-label {
            color: var(--primary);
        }

        .filter-checkbox {
            width: 17px;
            height: 17px;
            border: 2px solid var(--gray-300);
            border-radius: 3px;
            flex-shrink: 0;
            position: relative;
            transition: all 0.2s;
        }

        .filter-option input {
            display: none;
        }

        .filter-option input:checked+.filter-checkbox {
            background: var(--primary);
            border-color: var(--primary);
        }

        .filter-option input:checked+.filter-checkbox::after {
            content: '✓';
            position: absolute;
            color: #fff;
            font-size: 11px;
            font-weight: bold;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .filter-label {
            font-size: 13px;
            color: var(--gray-700);
            flex: 1;
        }

        .filter-count {
            font-size: 12px;
            color: var(--gray-500);
            margin-left: auto;
        }

        .price-inputs {
            display: flex;
            gap: 8px;
            align-items: center;
            margin-top: 8px;
        }

        .price-input {
            flex: 1;
            padding: 7px 10px;
            border: 1px solid var(--gray-300);
            border-radius: 5px;
            font-size: 12px;
            font-family: 'Cairo', sans-serif;
        }

        .price-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .color-swatches {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 6px;
        }

        .color-swatch {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.2s;
            position: relative;
        }

        .color-swatch:hover {
            transform: scale(1.08);
        }

        .color-swatch.selected {
            border-color: var(--primary);
            box-shadow: 0 0 0 1px var(--primary);
        }

        .products-main {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .products-top {
            background: #fff;
            border-radius: 10px;
            padding: 17px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid var(--gray-200);
            flex-wrap: wrap;
            gap: 15px;
        }

        .products-info h1 {
            font-size: 19px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 3px;
        }

        .results-text {
            font-size: 13px;
            color: var(--gray-600);
        }

        .products-controls {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .view-switcher {
            display: flex;
            gap: 4px;
            background: var(--gray-100);
            border-radius: 6px;
            padding: 3px;
        }

        .view-btn {
            padding: 6px 11px;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--gray-600);
            border-radius: 4px;
            transition: all 0.2s;
        }

        .view-btn.active {
            background: #fff;
            color: var(--primary);
            box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
        }

        .sort-dropdown {
            padding: 7px 13px;
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            font-size: 13px;
            font-family: 'Cairo', sans-serif;
            cursor: pointer;
            background: #fff;
            color: var(--gray-700);
            font-weight: 500;
        }

        .sort-dropdown:focus {
            outline: none;
            border-color: var(--primary);
        }

        .filter-toggle-btn {
            display: none;
            padding: 7px 15px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 18px;
        }

        .product-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.25s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, .09);
            transform: translateY(-3px);
            border-color: var(--gray-300);
        }

        .product-image-box {
            position: relative;
            background: var(--gray-50);
            aspect-ratio: 1;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }

        .product-img {
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease, opacity 0.3s ease;
            display: block;
        }

        .product-card:hover .product-img {
            transform: scale(1.04);
        }

        .product-image-box a {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
            padding: 4px 9px;
            border-radius: 5px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .badge-sale {
            background: var(--red);
            color: #fff;
        }

        .badge-new {
            background: var(--green);
            color: #fff;
        }

        .badge-hot {
            background: #FF6B35;
            color: #fff;
        }

        .wishlist-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
            width: 33px;
            height: 33px;
            background: rgba(255, 255, 255, .92);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
            pointer-events: auto;
        }

        .wishlist-icon:hover {
            background: var(--primary);
            color: #fff;
            transform: scale(1.08);
            transition: all 0.2s ease;
        }

        .wishlist-icon.liked {
            background: var(--primary);
            color: #fff;
        }

        .wishlist-icon.liked:hover {
            background: var(--primary-dark);
            transform: scale(1.08);
        }

        .product-details {
            padding: 14px 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-brand {
            font-size: 11px;
            color: var(--gray-500);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .product-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 7px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 40px;
        }

        .product-coupon-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: linear-gradient(135deg, #fff8f0 0%, #fff3e6 100%);
            border: 1px dashed var(--primary);
            border-radius: 5px;
            padding: 3px 8px;
            margin-bottom: 7px;
            font-size: 11px;
            font-weight: 600;
            color: var(--primary);
        }

        .product-coupon-badge i {
            font-size: 10px;
        }

        .product-colors {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .product-colors .color-swatch {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid #fff;
            box-shadow: 0 0 0 1px var(--gray-300);
            transition: all 0.2s ease;
            position: relative;
        }

        .product-colors .color-swatch:hover {
            transform: scale(1.15);
            box-shadow: 0 0 0 2px var(--primary);
        }

        .product-colors .color-swatch.active {
            box-shadow: 0 0 0 2px var(--primary);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 9px;
        }

        .stars {
            color: var(--yellow);
            font-size: 12px;
            letter-spacing: 1px;
        }

        .review-count {
            font-size: 11px;
            color: var(--gray-500);
        }

        .price-box {
            margin-bottom: 12px;
        }

        .current-price {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }

        .old-price {
            font-size: 14px;
            color: var(--gray-400);
            text-decoration: line-through;
            margin-left: 7px;
        }

        .product-actions {
            display: flex;
            gap: 7px;
            margin-top: auto;
        }

        .add-cart-btn {
            flex: 1;
            padding: 9px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .add-cart-btn:hover {
            background: var(--primary-dark);
        }

        .compare-btn {
            width: 38px;
            height: 38px;
            background: var(--gray-100);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .compare-btn:hover {
            background: var(--secondary);
            color: #fff;
        }

        .quick-view-btn {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%) translateY(50px);
            background: var(--secondary);
            color: #fff;
            padding: 7px 18px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            opacity: 0;
            transition: all 0.3s;
            cursor: pointer;
            white-space: nowrap;
            z-index: 3;
            border: none;
        }

        .product-card:hover .quick-view-btn {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            margin-top: 25px;
        }

        .page-num {
            min-width: 37px;
            height: 37px;
            border: 1px solid var(--gray-300);
            background: #fff;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 13px;
            color: var(--gray-700);
            transition: all 0.2s;
        }

        .page-num:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .page-num.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .page-num:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .filter-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .filter-overlay.show {
            display: block;
            opacity: 1;
        }

        /* ==================== PROFILE PAGE ==================== */
        .profile-section {
            padding: 30px 0;
            background: var(--gray-100);
            min-height: calc(100vh - 200px);
        }

        .profile-header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .profile-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(232, 93, 4, .2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .profile-header-content {
            display: flex;
            align-items: center;
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .profile-avatar {
            position: relative;
        }

        .avatar-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 5px solid #fff;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
        }

        .avatar-badge {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 50%;
            border: 3px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
        }

        .profile-info {
            flex: 1;
            color: #fff;
        }

        .profile-name {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .profile-email {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .profile-stats {
            display: flex;
            gap: 30px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, .2);
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-label {
            font-size: 12px;
            opacity: 0.8;
        }

        .edit-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, .2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, .3);
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .edit-btn:hover {
            background: rgba(255, 255, 255, .3);
            transform: translateY(-2px);
        }

        .profile-grid {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .profile-sidebar {
            background: #fff;
            border-radius: 12px;
            padding: 0;
            height: fit-content;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
        }

        .sidebar-menu {
            list-style: none;
        }

        .sidebar-menu li {
            border-bottom: 1px solid var(--gray-200);
        }

        .sidebar-menu li:last-child {
            border-bottom: none;
        }

        .sidebar-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s;
            position: relative;
        }

        .sidebar-menu a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            transform: scaleY(0);
            transition: transform 0.3s;
        }

        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background: var(--gray-100);
            color: var(--primary);
        }

        .sidebar-menu a.active::before,
        .sidebar-menu a:hover::before {
            transform: scaleY(1);
        }

        .sidebar-menu i {
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        .notification-dot {
            position: absolute;
            top: 10px;
            right: -5px;
            width: 8px;
            height: 8px;
            background: var(--red);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .profile-content {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
        }

        .content-section {
            display: none;
            animation: fadeIn 0.3s;
        }

        .content-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

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

        .section-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            color: var(--primary);
        }

        .orders-grid {
            display: grid;
            gap: 15px;
        }

        .order-card {
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .order-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 15px rgba(232, 93, 4, .1);
        }

        .order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--gray-200);
        }

        .order-number {
            font-size: 15px;
            font-weight: 700;
            color: var(--secondary);
        }

        .order-status {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .order-status.delivered {
            background: #E6F9ED;
            color: var(--green);
        }

        .order-status.processing {
            background: #FFF4E6;
            color: var(--primary);
        }

        .order-status.shipped {
            background: #E6F0FF;
            color: var(--blue);
        }

        .order-status.cancelled {
            background: #FEE2E2;
            color: var(--red);
        }

        .order-items {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .order-item-img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            border: 1px solid var(--gray-200);
        }

        .order-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .order-date {
            font-size: 13px;
            color: var(--gray-600);
        }

        .order-total {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
        }

        .order-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--gray-200);
        }

        .addresses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .address-card {
            border: 2px solid var(--gray-200);
            border-radius: 10px;
            padding: 20px;
            position: relative;
            transition: all 0.3s;
            cursor: pointer;
        }

        .address-card.default {
            border-color: var(--primary);
            background: rgba(232, 93, 4, .05);
        }

        .address-card:hover {
            border-color: var(--primary);
        }

        .default-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
        }

        .address-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .address-details {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .address-actions {
            display: flex;
            gap: 10px;
        }

        /* ==================== WISHLIST PAGE ==================== */
        .wishlist-wrapper {
            padding: 40px 0;
            background: var(--gray-100);
            flex: 1
        }

        .wishlist-header {
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .page-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 12px
        }

        .page-title i {
            color: var(--primary)
        }

        .wishlist-count {
            font-size: 14px;
            color: var(--gray-500);
            font-weight: 500
        }

        .wishlist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px
        }

        .empty-wishlist {
            text-align: center;
            padding: 60px 20px;
            background: #fff;
            border-radius: 16px
        }

        .empty-icon {
            font-size: 72px;
            color: var(--gray-300);
            margin-bottom: 18px
        }

        .empty-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 8px
        }

        .empty-text {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 24px
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 7px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s
        }

        .back-btn:hover {
            background: var(--primary-dark)
        }

        /* ==================== AUTH PAGES (Login & Register) ==================== */
        .auth-wrapper {
            width: 100%;
            max-width: 1000px;
            margin: auto;
            padding: 20px;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .auth-container {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
            display: grid;
            grid-template-columns: 45% 55%;
            min-height: 600px;
            position: relative;
            width: 100%;
            transition: transform .5s ease-in-out;
            margin: 0 auto;
        }

        .auth-brand {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 50px 40px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            transition: all .5s;
        }

        .auth-brand::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 120%;
            height: 200%;
            background: rgba(255, 255, 255, .05);
            transform: rotate(-20deg);
            pointer-events: none;
        }

        .brand-header {
            position: relative;
            z-index: 1;
        }

        .brand-logo {
            height: 40px;
            margin-bottom: 30px;
            filter: brightness(0) invert(1);
        }

        .brand-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .brand-subtitle {
            font-size: 15px;
            opacity: .9;
            line-height: 1.6;
        }

        .brand-features {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .brand-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0;
            animation: fadeInLeft .6s forwards;
        }

        .brand-feature:nth-child(1) {
            animation-delay: .2s;
        }

        .brand-feature:nth-child(2) {
            animation-delay: .4s;
        }

        .brand-feature:nth-child(3) {
            animation-delay: .6s;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

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

        .brand-feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, .15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .brand-feature-text h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .brand-feature-text p {
            font-size: 12px;
            opacity: .8;
        }

        .auth-forms {
            padding: 50px 40px;
            position: relative;
            transition: all .5s;
        }

        .form-header {
            margin-bottom: 35px;
        }

        .form-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .form-subtitle {
            font-size: 14px;
            color: var(--gray-600);
        }

        .form-subtitle a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all .3s;
        }

        .form-subtitle a:hover {
            color: var(--primary-dark);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 8px;
        }

        .form-input-wrapper {
            position: relative;
        }

        .form-input-wrapper i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-500);
            font-size: 16px;
            transition: color .3s;
        }

        .form-input {
            width: 100%;
            padding: 14px 15px 14px 45px;
            border: 2px solid var(--gray-300);
            border-radius: 12px;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            transition: all .3s;
            background: #fff;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(232, 93, 4, .1);
        }

        .form-input:focus~i {
            color: var(--primary);
        }

        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-500);
            cursor: pointer;
            font-size: 16px;
            transition: color .3s;
            z-index: 2;
        }

        .password-toggle:hover {
            color: var(--primary);
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 13px;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .form-checkbox input {
            cursor: pointer;
            width: 16px;
            height: 16px;
            accent-color: var(--primary);
        }

        .form-checkbox label {
            cursor: pointer;
            color: var(--gray-700);
        }

        .form-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: color .3s;
        }

        .form-link:hover {
            color: var(--primary-dark);
        }

        .form-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            border-radius: 12px;
            color: #fff;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all .3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(232, 93, 4, .3);
        }

        .form-btn:active {
            transform: translateY(-1px);
        }

        .form-divider {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 25px 0;
            font-size: 13px;
            color: var(--gray-500);
        }

        .form-divider::before,
        .form-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--gray-300);
        }

        .social-login {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }

        .social-btn {
            padding: 12px;
            border: 2px solid var(--gray-300);
            border-radius: 12px;
            background: #fff;
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--gray-700);
        }

        .social-btn:hover {
            border-color: var(--primary);
            background: var(--gray-100);
            transform: translateY(-2px);
        }

        .social-btn i {
            font-size: 18px;
        }

        .social-btn.google i {
            color: #DB4437;
        }

        .social-btn.facebook i {
            color: #4267B2;
        }

        .form-footer {
            text-align: center;
            margin-top: 25px;
            font-size: 13px;
            color: var(--gray-600);
        }

        .success-state {
            text-align: center;
            padding: 40px 20px;
            display: none;
        }

        .success-state.active {
            display: block;
            animation: fadeIn .5s;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--green), #2f855a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: #fff;
            animation: scaleIn .6s;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }

            to {
                transform: scale(1);
            }
        }

        .success-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .success-text {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 25px;
        }

        /* ==================== PRODUCT PAGE RESPONSIVE ==================== */
        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .gallery-area {
                position: static;
                width: 100%;
                max-width: 600px;
                margin: 0 auto 10px;
            }

            .info-panel {
                padding: 20px;
            }

            .main-img-wrap {
                padding: 10px;
            }

            /* Ensure zoom is disabled */
            .zoom-result,
            .zoom-lens {
                display: none !important;
            }

            .main-img-wrap {
                cursor: default;
                pointer-events: none;
                /* simple way to disable zoom interactions if any JS remains */
            }
        }

        @media (max-width: 576px) {
            .product-wrapper {
                padding-top: 15px;
            }

            .prod-title {
                font-size: 20px;
                margin-bottom: 8px;
            }

            .rating-row {
                margin-bottom: 12px;
                padding-bottom: 12px;
            }

            .big-price {
                font-size: 26px;
            }

            .price-wrap {
                margin-bottom: 15px;
                padding-bottom: 15px;
            }

            .action-row {
                flex-wrap: wrap;
            }

            .add-cart {
                flex: 100%;
                order: 1;
                /* Keep simple */
                margin-bottom: 8px;
                padding: 12px;
            }

            .icon-btn {
                flex: 1;
                order: 2;
                padding: 10px;
            }

            .tab-headers {
                padding-bottom: 5px;
                /* Scrollbar space */
            }

            .tab-head {
                padding: 10px 15px;
                font-size: 13px;
            }

            .thumbs-row {
                gap: 6px;
            }

            .thumb-item {
                padding: 5px;
                border-radius: 5px;
            }

            .specs-section,
            .qty-wrap,
            .ship-box {
                margin-bottom: 15px;
            }

            .review-top {
                flex-direction: column;
                gap: 20px;
            }

            .score-box {
                margin-bottom: 10px;
            }
        }

        /* ==================== CHECKOUT RESPONSIVE ==================== */
        @media (max-width: 992px) {
            .checkout-grid {
                display: flex;
                flex-direction: column;
                gap: 30px;
                align-items: stretch;
                /* Fix for content not taking full width */
            }

            .summary-box {
                margin-top: 0;
                width: 100%;
                position: static;
            }

            .checkout-left {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .checkout-area {
                padding: 30px 0;
            }

            .section-box {
                padding: 20px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .form-group.full {
                grid-column: span 1;
            }

            .payment-option {
                padding: 12px;
            }

            .summary-heading {
                font-size: 18px;
            }

            .summary-item {
                gap: 10px;
            }

            .summary-pic {
                width: 50px;
                height: 50px;
            }

            .summary-name {
                font-size: 13px;
            }

            .summary-qty {
                font-size: 11px;
            }

            .total-line {
                font-size: 13px;
            }

            .final-total {
                font-size: 16px;
            }

            .place-order-btn {
                padding: 14px;
                font-size: 15px;
            }
        }

        /* ==================== CART PAGE RESPONSIVE ==================== */
        @media (max-width: 992px) {
            .cart-layout {
                display: flex;
                flex-direction: column;
                gap: 24px;
            }

            .summary-box {
                position: static;
                width: 100%;
                margin-top: 0;
            }
        }

        @media (max-width: 576px) {
            .cart-item {
                grid-template-columns: 80px 1fr;
                padding: 15px;
                gap: 12px;
            }

            .item-pic {
                grid-row: span 2;
                padding: 5px;
                height: 80px;
                /* matched to row span assumption or let it flow */
            }

            .item-details {
                grid-column: 2;
            }

            .item-actions {
                grid-column: 1 / -1;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                border-top: 1px solid #f5f5f5;
                padding-top: 12px;
                margin-top: 5px;
                width: 100%;
            }

            .item-price {
                order: 1;
                font-size: 16px;
            }

            .qty-box {
                order: 2;
            }

            .remove-btn {
                order: 3;
            }

            .item-old-price {
                display: none;
                /* Hide old price on mobile to save space if needed, or move next to price */
            }

            .item-name {
                font-size: 14px;
            }

            .item-options {
                font-size: 11px;
            }
        }