
        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary: #2c3e50;
            --gold: #d4af37;
            --text: #2c3e50;
            --border: #e5e5e5;
            --bg: #f8f9fa;
        
            
            --black: #000000;
            --matte-black: #1A1A1A;

            --brown: #6B4F3A;
            --matte-brown: #5A4636;

            --dark-blue: #0A1E3F;
            --matte-dark-blue: #1C2F4A;

            --blue: #0047AB;
            --light-blue: #6EC1E4;
            --baby-blue: #B7DDF2;

            --mint-grey: rgba(127, 143, 122, 0.85);
            --mint-grey-solid: #7F8F7A;

            --green-grey: #7F8F85;

            --grey: #808080;
            --matte-grey: #6B6B6B;

            --yellow: #FFD700;
            --pink: #F4A7B9;
            --mauve: #8E7AB5;
            --red: #C1121F;
            --orange: #F28C28;

            --hazel: #8E7618;

            --tiger: #C6862A;
            --light-tiger: #E0A96D;
            --tiger-blue: #1F3A5F;

            --silver: #C0C0C0;
            --gold: #D4AF37;
            --rose-gold: #B76E79;

            --oxeday: #3A2F2F;
            --matte-oxeday: #2E2525;

            --transparent: rgba(255, 255, 255, 0);
            --matte-clear: rgba(255, 255, 255, 0.18);

            
            --black-gold: linear-gradient(90deg, #000 50%, #D4AF37 50%);
            --black-blue: linear-gradient(90deg, #000 50%, #0047AB 50%);
            --black-red: linear-gradient(90deg, #000 50%, #C1121F 50%);
            --black-pink: linear-gradient(90deg, #000 50%, #F4A7B9 50%);
            --black-orange: linear-gradient(90deg, #000 50%, #F28C28 50%);
            --black-tiger: linear-gradient(90deg, #000 50%, #C6862A 50%);
            --yellow-tiger: linear-gradient(90deg, #FFD700 50%, #C6862A 50%);

            
            --transparent-black: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #000000 50%);
            --transparent-tiger: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #C6862A 50%);
}

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background: #fff;
            overflow-x: hidden;
        }

        .container { 
            max-width: 1400px; 
            margin: 0 auto; 
            padding: 0 20px; 
        }

        .top-bar { 
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%); 
            color: white; padding: 10px 0; text-align: center; 
            font-weight: 700; font-size: 13px; 
        }
        .top-bar i { color: #FFD700; margin: 0 6px; animation: bounce 2s infinite; }
        @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

        .header { 
            background: white; 
            box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
            position: sticky; top: 0; z-index: 1000; 
        }
        .header-content { 
            display: flex; justify-content: space-between; 
            align-items: center; padding: 16px 0; gap: 20px; 
        }

        .logo { 
            text-decoration: none; display: flex; 
            align-items: center; gap: 10px; flex-shrink: 0; 
        }
        .logo-img { 
            height: 50px; width: auto; display: block; object-fit: contain; 
        }
        .logo-text { 
            font-size: 22px; font-weight: 900; color: var(--text); 
            letter-spacing: 0.5px; text-transform: uppercase; 
        }

        .nav-menu { 
            display: flex; gap: 18px; list-style: none; 
            flex: 1; justify-content: center; 
        }
        .nav-menu a { 
            color: var(--text); text-decoration: none; 
            font-weight: 700; font-size: 13px; 
            transition: all 0.3s; position: relative; padding: 6px 0; 
            white-space: nowrap;
        }
        .nav-menu a::after { 
            content: ''; position: absolute; bottom: -4px; 
            left: 0;             width: 0; height: 2px; background: var(--gold); transition: width 0.3s; 
        }
        .nav-menu a:hover { color: var(--gold); }
        .nav-menu a:hover::after { width: 100%; }

        .header-actions { 
            display: flex; gap: 10px; align-items: center; flex-shrink: 0; 
        }

        .icon-btn { 
            background: transparent; border: none; cursor: pointer; 
            padding: 8px; position: relative; border-radius: 50%; 
            transition: all 0.3s; min-width: 42px; min-height: 42px; 
            display: flex; align-items: center; justify-content: center; 
        }
        .icon-btn:hover { 
            background: rgba(212,175,55,0.1); transform: translateY(-2px); 
        }
        .icon-btn i { font-size: 18px; color: var(--text); }
        .icon-btn:hover i { color: var(--gold); }

        .cart-badge, .wishlist-badge { 
            position: absolute; top: 2px; 
            right: 2px;             background: #e74c3c; color: white; width: 18px; height: 18px; 
            border-radius: 50%; display: flex !important; align-items: center; 
            justify-content: center; font-size: 10px; font-weight: 700; 
        }
        .wishlist-badge {
            background: #e91e63;
        }

        .lang-switcher { 
            background: var(--primary); color: white; border: none; 
            padding: 8px 15px; border-radius: 50px; font-size: 11px; 
            font-weight: 700; cursor: pointer; transition: all 0.3s; 
        }
        .lang-switcher:hover { 
            background: var(--gold); transform: translateY(-2px); 
        }

        .account-btn { 
            background: transparent; border: 2px solid var(--primary); 
            color: var(--primary); padding: 7px 14px; border-radius: 50px; 
            font-size: 11px; font-weight: 700; cursor: pointer; 
            transition: all 0.3s; display: flex; align-items: center; gap: 6px; 
            white-space: nowrap; text-decoration: none;
        }
        .account-btn:hover { background: var(--primary); color: white; }

        .mobile-header { display: none; }

        
        .cart-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.6);
            z-index: 9998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .cart-overlay.active {
            display: block;
            opacity: 1;
        }
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;    width: 420px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 9999;
    box-shadow: 0 0 40px rgba(0,0,0,0.3);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
.cart-sidebar.active {
    right: 0;}

@media (max-width: 992px) {
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100vw;
        max-width: 100vw;
    }
}

        .cart-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
            color: white;
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .cart-header h3 {
            font-size: 17px;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 9px;
        }
        .cart-close {
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 300;
        }
        .cart-close:hover {
            background: white;
            color: var(--primary);
            transform: rotate(90deg);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 18px;
            background: #fafafa;
        }
        .cart-items::-webkit-scrollbar {
            width: 6px;
        }
        .cart-items::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 10px;
        }

        .cart-item {
            background: white;
            border-radius: 12px;
            padding: 14px;
            margin-bottom: 12px;
            display: flex;
            gap: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .cart-item:hover {
            box-shadow: 0 4px 16px rgba(212,175,55,0.2);
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        .cart-item-img {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg);
        }
        .cart-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-item-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }
        .cart-item-name {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text);
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .cart-item-brand {
            font-size: 11px;
            color: var(--gold);
            font-weight: 700;
            text-transform: uppercase;
        }
        .cart-item-price {
            font-size: 16px;
            font-weight: 900;
            color: var(--primary);
        }

        .cart-item-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 8px;
            gap: 10px;
        }
        .qty-control {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg);
            border-radius: 50px;
            padding: 4px;
        }
        .qty-btn {
            background: white;
            border: 2px solid var(--border);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
            font-weight: 900;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
        }
        .qty-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: white;
            transform: scale(1.15);
        }
        .qty-display {
            min-width: 30px;
            text-align: center;
            font-weight: 700;
            font-size: 14px;
        }
        .cart-item-remove {
            background: rgba(231,76,60,0.1);
            border: none;
            color: #e74c3c;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cart-item-remove:hover {
            background: #e74c3c;
            color: white;
            transform: scale(1.15);
        }

        .cart-empty {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }
        .cart-empty i {
            font-size: 70px;
            margin-bottom: 20px;
            opacity: 0.2;
        }
        .cart-empty p {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .cart-footer {
            padding: 18px;
            padding-bottom: calc(18px + env(safe-area-inset-bottom));
            border-top: 1px solid var(--border);
            background: white;
            flex-shrink: 0;
        }
        .cart-total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 20px;
            font-weight: 900;
            margin-bottom: 16px;
        }
        .cart-total-amount {
            color: var(--gold);
            font-weight: 900;
        }
        .checkout-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 900;
            font-size: 16px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(44,62,80,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }
        .checkout-btn:hover {
            background: linear-gradient(135deg, var(--gold) 0%, #c49b2d 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212,175,55,0.4);
        }

        
        .main-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.6);
            z-index: 9998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .main-menu-overlay.active {
            display: block;
            opacity: 1;
        }

        .main-menu-sidebar {
            position: fixed;
            top: 0;
            left: -100%;            width: 85%;
            max-width: 320px;
            height: 100vh;
            height: 100dvh;
            background: white;
            z-index: 9999;
            box-shadow: 0 0 50px rgba(0,0,0,0.4);
            transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);            overflow-y: auto;
        }
        .main-menu-sidebar.active {
            left: 0;        }

        .main-menu-header {
            padding: 18px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }
        .main-menu-header h3 {
            font-size: 16px;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 9px;
        }
        .main-menu-close {
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .main-menu-close:hover {
            background: white;
            color: var(--primary);
            transform: rotate(90deg);
        }

        .main-menu-items {
            padding: 14px 0;
        }
        .main-menu-items a, .main-menu-items button {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            border-left: 3px solid transparent;            background: transparent;
            border-top: none;
            border-bottom: none;
            border-right: none;            width: 100%;
            text-align: left;
            cursor: pointer;
        }
        .main-menu-items a i, .main-menu-items button i {
            font-size: 18px;
            width: 28px;
            color: var(--gold);
        }
        .main-menu-items a:hover, .main-menu-items button:hover {
            background: var(--bg);
            border-left-color: var(--gold);            padding-left: 26px;        }
        .menu-divider {
            height: 1px;
            background: var(--border);
            margin: 10px 18px;
        }

        .product-page {
            padding: 40px 0;
            background: white;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            margin-bottom: 30px;
            color: #666;
        }
        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: all 0.3s;
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb i {
            font-size: 10px;
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 700;
        }

        .product-container {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 50px;
            margin-bottom: 50px;
        }

        .product-gallery {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .main-image-container {
            width: 100%;
            max-width: 600px;
            aspect-ratio: 1 / 1;
            border-radius: 16px;
            overflow: hidden;
            background: #f5f5f5;
            margin: 0 auto 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            position: relative;
        }
        .main-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .image-thumbnails {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 8px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--gold) var(--bg);
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            max-width: 600px;
            margin: 0 auto;
        }
        .image-thumbnails::-webkit-scrollbar {
            height: 5px;
        }
        .image-thumbnails::-webkit-scrollbar-track {
            background: var(--bg);
            border-radius: 10px;
        }
        .image-thumbnails::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 10px;
        }
        .image-thumbnails::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        .thumbnail {
            min-width: 90px;
            max-width: 90px;
            width: 90px;
            aspect-ratio: 1 / 1;
            border-radius: 10px;
            overflow: hidden;
            background: #f5f5f5;
            cursor: pointer;
            transition: all 0.3s;
            border: 3px solid transparent;
            flex-shrink: 0;
        }
        .thumbnail:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212,175,55,0.3);
        }
        .thumbnail.active {
            border-color: var(--primary);
            box-shadow: 0 5px 20px rgba(44,62,80,0.3);
        }
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .product-info-section {
            padding: 10px 0;
        }

        .product-header-info {
            margin-bottom: 25px;
        }

        .product-brand-tag {
            display: inline-block;
            background: var(--gold);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .product-title {
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        
        .product-specs-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .spec-badge {
            background: linear-gradient(135deg, rgba(44,62,80,0.08) 0%, rgba(44,62,80,0.12) 100%);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            color: var(--primary);
            border: 2px solid rgba(44,62,80,0.15);
        }

        .product-rating-row {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .rating-stars {
            color: #FFD700;
            font-size: 18px;
        }

        .product-price-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .current-price {
            font-size: 38px;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 5px;
        }
        .stock-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 700;
            margin-top: 12px;
        }
        .stock-status.in-stock {
            color: #27ae60;
        }
        .stock-status.out-of-stock {
            color: #e74c3c;
        }

        .color-selector-section {
            margin-bottom: 30px;
            padding: 25px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
        }

        .color-selector-title {
            font-size: 16px;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .color-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
        }

        .color-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: white;
            border-radius: 12px;
            border: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            color: var(--text);
        }

        .color-option:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212,175,55,0.3);
        }

        .color-option.active {
            border-color: var(--primary);
            box-shadow: 0 5px 20px rgba(44,62,80,0.3);
            background: linear-gradient(135deg, rgba(44,62,80,0.05) 0%, rgba(44,62,80,0.1) 100%);
        }

        .color-swatch {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 3px solid rgba(0,0,0,0.1);
            flex-shrink: 0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .color-checkmark {
            opacity: 0;
            color: white;
            font-size: 18px;
            font-weight: 900;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s;
        }

        .color-option.active .color-checkmark {
            opacity: 1;
        }

        .color-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .color-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text);
            text-transform: capitalize;
        }

        .color-stock {
            font-size: 11px;
            color: #27ae60;
            font-weight: 700;
        }

        .product-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            align-items: stretch;
        }

        .qty-selector {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg);
            padding: 8px 20px;
            border-radius: 50px;
            border: 2px solid var(--border);
        }
        .qty-selector-btn {
            background: white;
            border: 2px solid var(--border);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .qty-selector-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: white;
        }
        .qty-value {
            font-size: 18px;
            font-weight: 700;
            min-width: 40px;
            text-align: center;
        }

.add-cart-main-btn {
    flex: 0 1 auto; 
    min-width: 250px; 
    max-width: 400px; 
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.add-cart-main-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--gold) 0%, #c49b2d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.add-cart-main-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.add-cart-main-btn i {
    font-size: 18px;
}

        .product-tabs {
            margin-top: 40px;
        }
        .tabs-nav {
            display: flex;
            gap: 5px;
            border-bottom: 2px solid var(--border);
            margin-bottom: 30px;
        }
        .tab-btn {
            padding: 15px 30px;
            background: transparent;
            border: none;
            color: #666;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            font-family: inherit;
        }
        .tab-btn:hover {
            color: var(--gold);
        }
        .tab-btn.active {
            color: var(--primary);
        }
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content p {
            color: #666;
            line-height: 1.8;
            font-size: 15px;
            margin-bottom: 15px;
        }
        .tab-content h4 {
            color: var(--primary);
            font-size: 18px;
            font-weight: 700;
            margin: 25px 0 15px;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        .specs-table tr {
            border-bottom: 1px solid var(--border);
        }
        .specs-table td {
            padding: 15px 10px;
            font-size: 14px;
        }
        .specs-table td:first-child {
            font-weight: 700;
            color: var(--primary);
            width: 40%;
        }
        .specs-table td:last-child {
            color: #666;
        }

        .mobile-hidden {
            display: block;
        }

        .desktop-hidden {
            display: none;
        }

        .mobile-product-header {
            display: none;
        }

        .mobile-product-gallery {
            display: none;
        }

        .footer {
                font-family: 'Poppins', sans-serif !important;

            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 55px 0 22px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--gold);
            font-weight: 900;
        }
        .footer-col p {
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .footer-col a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            line-height: 2.3;
            font-size: 13px;
            display: block;
            transition: all 0.3s;
        }
        .footer-col a:hover {
            color: var(--gold);
            padding-left: 9px;        }
        
        
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s;
            padding: 0 !important;
        }
        .social-links a:hover {
            background: var(--gold);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 20px rgba(212,175,55,0.4);
            color: white !important;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 26px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            font-size: 12px;
        }
        .developer-credit {
            margin-top: 8px;
            color: rgba(255,255,255,0.6);
        }
        .developer-credit a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            display: inline;
            padding: 0;
        }
        .developer-credit a:hover {
            color: white;
        }

       .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 99999;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    max-width: 400px;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.notification.error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.notification-icon i {
    font-size: 18px;
    color: white;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.notification-message {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .notification {
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

        @media (max-width: 1300px) {
            .product-container {
                grid-template-columns: 42% 58%;
                gap: 40px;
            }
            .main-image-container {
                max-width: 500px;
            }
            .image-thumbnails {
                max-width: 500px;
            }
            .color-options {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
                gap: 10px;
            }
        }

@media (max-width: 992px) {
    .header, .top-bar, .nav-menu {
        display: none;
    }

    .mobile-header {
        display: block;
        position: sticky;
        top: 0;
        background: white;
        z-index: 1000;
        padding: 12px 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .mobile-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-menu-btn {
        background: transparent;
        border: none;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
    }
    .mobile-menu-btn span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--primary);
        border-radius: 3px;
        transition: all 0.3s;
    }
    
    .mobile-logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    .mobile-logo img {
        height: 65px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
    }
    
    .mobile-icons {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .mobile-icon-btn {
        background: transparent;
        border: none;
        font-size: 18px;
        cursor: pointer;
        padding: 6px;
        position: relative;
        color: var(--text);
    }

  
    
    .cart-footer {
        padding: 22px 18px;
        padding-bottom: calc(35px + env(safe-area-inset-bottom, 20px));
    }
    .cart-footer .cart-total-row {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .checkout-btn {
        padding: 19px;
        font-size: 18px;
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mobile-hidden {
        display: none !important;
    }
    
    .desktop-hidden {
        display: block !important;
    }
    
    .mobile-product-header {
        display: block !important;
        margin-bottom: 20px;
    }
    
    .mobile-product-gallery {
        display: block !important;
        margin-bottom: 25px;
    }
    
    .product-header-info {
        display: none !important;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }
    .main-image-container {
        max-width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    .image-thumbnails {
        display: flex;
        max-width: 100%;
        justify-content: flex-start;
        gap: 8px;
        padding: 8px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .thumbnail {
        min-width: 70px;
        max-width: 70px;
        width: 70px;
        border-radius: 8px;
    }
    
    .product-title {
        font-size: 22px;
    }
    .current-price {
        font-size: 30px;
    }
    
    
    .product-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .qty-selector {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .add-cart-main-btn {
        width: 100%;
        min-width: unset;
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .tabs-nav {
        overflow-x: auto;
        scrollbar-width: thin;
        gap: 0;
    }
    .tab-btn {
        padding: 12px 20px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .color-options {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 8px;
    }
    .color-swatch {
        width: 35px;
        height: 35px;
    }
    .color-name {
        font-size: 12px;
    }
    .color-stock {
        font-size: 10px;
    }
    
    .product-specs-badges {
        gap: 6px;
    }
    .spec-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
}


@media (max-width: 576px) {
    .main-image-container {
        aspect-ratio: 1 / 1;
        border-radius: 10px;
    }
    
    .product-title {
        font-size: 19px;
    }
    
    .current-price {
        font-size: 26px;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    .cart-footer {
        padding-bottom: calc(40px + env(safe-area-inset-bottom, 25px));
    }
    
    .thumbnail {
        min-width: 65px;
        max-width: 65px;
        width: 65px;
    }
    
    .image-thumbnails {
        gap: 6px;
    }
    
    .color-options {
        grid-template-columns: 1fr;
    }
    
    .color-option {
        padding: 10px;
    }
    
    .add-cart-main-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .add-cart-main-btn i {
        font-size: 16px;
    }
}
.checkout-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}
.checkout-btn.disabled:hover {
    transform: none;
    background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
}
.cart-empty {
    text-align: center;
    padding: 50px 20px;
    color: #777;
}
.cart-empty i {
    font-size: 60px;
    margin-bottom: 16px;
    color: #d4af37;
    opacity: 0.25;
}
.cart-empty p {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #444;
}

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 2px solid #d4af37;
    background: transparent;
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.continue-shopping-btn i {
    font-size: 13px;
}
.continue-shopping-btn:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.35);
}


    

.main-image-container{ position:relative; }
.img-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;height:42px;
    border-radius:50%;
    border:0;
    background:rgba(0,0,0,.35);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:center;
}
.img-nav.prev{ left:10px; }
.img-nav.next{ right:10px; }
.img-nav:hover{ background:rgba(0,0,0,.5); }

.thumbnail.active{ outline:2px solid #000; border-radius:10px; }

.zoom-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}
.zoom-modal.open{ display:flex; }
.zoom-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}
#zoomedImage{
    position:relative;
    max-width:min(92vw, 920px);
    max-height:92vh;
    border-radius:14px;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
    background:#fff;
}
.zoom-close{
    position:absolute;
    top:18px;
    right:18px;
    width:44px;height:44px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    z-index:2;
}
.zoom-close:hover{ background:rgba(255,255,255,.25); }


/* ===== Language-specific font families ===== */
body.lang-ar { font-family: 'Cairo', sans-serif; }
body.lang-en { font-family: 'Poppins', sans-serif; }

body.lang-ar .footer { font-family: 'Cairo', sans-serif !important; }
body.lang-en .footer { font-family: 'Poppins', sans-serif !important; }

/* ===== RTL directional overrides ===== */
[dir="rtl"] .nav-menu a::after {
    right: 0;
    left: auto;
}

[dir="rtl"] .cart-badge, [dir="rtl"] .wishlist-badge {
    left: 2px;
    right: auto;
}

[dir="rtl"] .cart-sidebar {
    right: auto;
    left: -100%;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[dir="rtl"] .cart-sidebar.active {
    left: 0;
    right: auto;
}

[dir="rtl"] .main-menu-sidebar {
    left: auto;
    right: -100%;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[dir="rtl"] .main-menu-sidebar.active {
    right: 0;
    left: auto;
}

[dir="rtl"] .main-menu-items a, [dir="rtl"] .main-menu-items button {
    border-right: 3px solid transparent;
    border-left: none;
    text-align: right;
}
[dir="rtl"] .main-menu-items a:hover, [dir="rtl"] .main-menu-items button:hover {
    border-right-color: var(--gold);
    padding-right: 26px;
}

[dir="rtl"] .footer-col a:hover {
    padding-left: 0;
    padding-right: 9px;
}
