/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4A843;
    --secondary-color: #111111;
    --accent-color: #E8B930;
    --text-dark: #1a1a1a;
    --text-light: #888888;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --gradient-gold: linear-gradient(135deg, #D4A843 0%, #E8B930 50%, #C9A04A 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.12);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.3);
    --glass-bg: rgba(255,255,255,0.08);
    --glass-border: rgba(212,168,67,0.2);
    --gold-glow: 0 0 20px rgba(212,168,67,0.3);
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.18) 0%, rgba(212, 168, 67, 0) 70%);
    z-index: -1;
    filter: blur(3px);
    animation: floatGlow 14s ease-in-out infinite;
}

body::before {
    top: 8%;
    right: -120px;
}

body::after {
    bottom: 10%;
    left: -120px;
    animation-delay: 2s;
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) translateX(15px) scale(1.05); opacity: 1; }
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==================== Topbar ==================== */
.topbar {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,169,97,0.12);
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar-contact a {
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    font-size: 13px;
}

.topbar-contact a:hover {
    color: var(--primary-color);
}

.topbar-contact i {
    color: var(--primary-color);
    font-size: 12px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-social {
    display: flex;
    gap: 6px;
    align-items: center;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,97,0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 13px;
}

.topbar-social a:hover {
    background: var(--gradient-gold);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201,169,97,0.3);
}

.topbar-divider {
    width: 1px;
    height: 18px;
    background: rgba(201,169,97,0.2);
}

/* ==================== Header & Navigation ==================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    box-shadow: 0 1px 0 rgba(201,169,97,0.15), 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(201,169,97,0.08);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 1px 0 rgba(201,169,97,0.25), 0 15px 50px rgba(0,0,0,0.4);
    border-bottom-color: rgba(201,169,97,0.15);
}

.navbar {
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(201,169,97,0.2));
    transition: filter 0.3s;
}

.logo:hover {
    filter: drop-shadow(0 4px 16px rgba(201,169,97,0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0 auto;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 220px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 14px;
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    z-index: 1001;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: rgba(201, 169, 97, 0.12);
    color: var(--primary-color);
    padding-right: 18px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== Nav Actions (cart + wishlist icons) ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border: 1.5px solid rgba(201, 169, 97, 0.25);
    color: var(--primary-color);
    font-size: 22px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-icon-btn:hover {
    background: var(--gradient-gold);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201,169,97,0.4);
}

.nav-icon-btn.has-items {
    border-color: var(--primary-color);
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
    border: 2px solid rgba(15,15,15,0.85);
}

.icon-badge.wishlist-badge {
    background: #e11d48;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* AJAX add-to-cart animation */
@keyframes cartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.3); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.nav-icon-btn.bounce {
    animation: cartBounce 0.5s ease;
}

/* Toast notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

[dir="rtl"] .toast-container {
    right: auto;
    left: 24px;
}

.toast {
    pointer-events: auto;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,169,97,0.3);
    border-radius: 14px;
    padding: 14px 22px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    min-width: 280px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

[dir="rtl"] .toast {
    transform: translateX(-40px);
}

[dir="rtl"] .toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 20px;
    color: var(--primary-color);
}

.toast.toast-success i { color: #22c55e; }
.toast.toast-error i { color: #ef4444; }
.toast.toast-wishlist i { color: #e11d48; }

/* Wishlisted state for heart buttons */
.ajax-wish-btn.wishlisted i {
    color: #e11d48;
}

.ajax-wish-btn.wishlisted {
    background: rgba(225, 29, 72, 0.15);
}

/* Wishlist sidebar drawer */
.wishlist-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(201,169,97,0.2);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

[dir="rtl"] .wishlist-drawer {
    right: auto;
    left: -420px;
    border-left: none;
    border-right: 1px solid rgba(201,169,97,0.2);
    box-shadow: 10px 0 40px rgba(0,0,0,0.5);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wishlist-drawer.open {
    right: 0;
}

[dir="rtl"] .wishlist-drawer.open {
    right: auto;
    left: 0;
}

.wishlist-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(201,169,97,0.15);
}

.wishlist-drawer-header h3 {
    color: var(--primary-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wishlist-drawer-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px;
}

.wishlist-drawer-close:hover {
    color: #fff;
}

.wishlist-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.4);
}

.wishlist-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: rgba(201,169,97,0.3);
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.wishlist-item:hover {
    border-color: rgba(201,169,97,0.2);
}

.wishlist-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-info h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
}

.wishlist-item-info span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
}

.wishlist-item-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wishlist-item-actions button,
.wishlist-action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}

.wishlist-add-cart,
.move-to-cart-btn {
    background: var(--gradient-gold);
    color: #1a1a1a;
}

.wishlist-add-cart:hover,
.move-to-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(201,169,97,0.4);
}

.wishlist-remove,
.remove-wish-btn {
    background: rgba(220,38,38,0.15);
    color: #ef4444;
}

.wishlist-remove:hover,
.remove-wish-btn:hover {
    background: rgba(220,38,38,0.3);
}

.wishlist-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.wishlist-overlay.open {
    opacity: 1;
    visibility: visible;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(201, 169, 97, 0.2);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-pill.active,
.lang-pill:hover {
    background: var(--gradient-gold);
    color: #1a1a1a;
    border-color: transparent;
}

.contact-header {
    display: flex;
    align-items: center;
}

.phone-btn {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    overflow: hidden;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 12s infinite;
}

.hero-slide.slide-1 {
    background-image: url('images/back.png');
    animation-delay: 0s;
}

.hero-slide.slide-2 {
    background-image:
        radial-gradient(circle at 22% 35%, rgba(212, 168, 67, .2), transparent 28%),
        linear-gradient(125deg, #0b0d0f 0%, #31363a 48%, #101214 100%);
    animation-delay: 6s;
}

@keyframes heroFade {
    0% { opacity: 0; transform: scale(1.03); }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-description {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.product-card .btn-secondary {
    color: var(--secondary-color);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
}

.product-card .btn-secondary:hover {
    color: var(--white);
    background: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==================== Sections ==================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
}

/* ==================== Page Hero ==================== */
.page-hero {
    padding: 80px 0 70px;
    background: linear-gradient(135deg, #faf7f0 0%, #f5f0e5 50%, #faf8f3 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,168,67,0.08), transparent 70%);
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 25%, rgba(212, 168, 67, 0.06) 0%, transparent 55%),
                radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 44px;
    font-weight: 900;
    margin: 16px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content p {
    font-size: 18px;
    color: var(--text-light);
}

.page-hero-image {
    position: absolute;
    bottom: -30px;
    right: 5%;
    width: 280px;
    height: 280px;
    opacity: 0.08;
    filter: grayscale(0.5) sepia(0.3);
    pointer-events: none;
    object-fit: contain;
}

/* Breadcrumb in hero */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .sep {
    color: var(--border-color);
}


/* ==================== About Section ==================== */
.about {
    background: var(--light-bg);
}

.about-text {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.feature-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.feature-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 10px 0;
    font-size: 17px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ==================== Stats Section ==================== */
.stats {
    background: var(--gradient-dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 60px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 60px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: inline-block;
}

.stat-label {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

/* ==================== Services Section ==================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: var(--primary-color);
}

/* ==================== Why Us Section ==================== */
.why-us {
    background: var(--light-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.why-us-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-us-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.why-us-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--white);
    margin: 0 auto 25px;
}

.why-us-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-us-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== Contact Section ==================== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(-5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 16px;
    color: var(--text-light);
    margin: 5px 0;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.contact-form button {
    width: 100%;
}

/* ==================== Shop Section ==================== */
.shop {
    background: var(--light-bg);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.category-pill {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.06);
    color: var(--text-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-pill.active,
.category-pill:hover {
    background: var(--gradient-gold);
    color: var(--white);
    border-color: rgba(201, 169, 97, 0.35);
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(212, 175, 55, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 2;
}

.product-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-action:hover {
    background: var(--gradient-gold);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.product-placeholder {
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.35);
}

.product-body {
    padding: 25px 22px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    margin-top: auto;
}

.product-meta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.product-price {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 18px;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, #141414 0%, #1e1e1e 50%, #161616 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212, 168, 67, 0.12) 0%, transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(232, 185, 48, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.footer-top-band {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4A843 15%, #E8B930 30%, #fff 50%, #E8B930 70%, #D4A843 85%, transparent);
    background-size: 200% 100%;
    animation: bandWave 3s linear infinite;
    box-shadow: 0 0 25px rgba(212, 168, 67, 0.6), 0 0 50px rgba(212, 168, 67, 0.2);
}

@keyframes bandWave {
    0% { background-position: 200% 50%; }
    100% { background-position: -200% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
    filter: drop-shadow(0 6px 12px rgba(201, 169, 97, 0.25));
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 169, 97, 0.35);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .product-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    section {
        padding: 60px 0;
    }

    .page-hero {
        padding: 60px 0 50px;
    }

    .page-hero-content h1 {
        font-size: 30px;
    }

    .topbar {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .logo {
        height: 45px;
    }

    .contact-form {
        padding: 20px;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ==================== Floating Buttons ==================== */
.floating-actions {
    position: fixed;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    font-size: 22px;
}

.floating-btn:hover {
    transform: translateY(-4px);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.ai {
    background: var(--gradient-gold);
}

/* ==================== Banners ==================== */
.banners {
    background: var(--white);
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    top: auto;
    z-index: 1;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.banner-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.97) 0%, rgba(30, 30, 30, 0.98) 100%);
    color: var(--white);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.25);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.15);
}

.banner-card::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.35), transparent 70%);
}

.banner-card.accent {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.95) 0%, rgba(212, 175, 55, 0.95) 100%);
    color: #1a1a1a;
}

.banner-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    margin-bottom: 14px;
}

.banner-card.accent .banner-tag {
    background: rgba(26, 26, 26, 0.15);
    color: #1a1a1a;
}

.banner-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    opacity: 0.85;
}

/* ==================== Highlight Products ==================== */
.products-highlight {
    background: transparent;
}

/* ==================== Cart Page ==================== */
.cart-section {
    padding: 60px 0;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 72px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.cart-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background: rgba(201, 169, 97, 0.1);
    color: var(--primary-color);
    padding: 14px 16px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.cart-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    vertical-align: middle;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-product-info img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.qty-input {
    width: 70px;
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    color: #111827;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.btn-remove {
    color: #dc2626;
    font-size: 18px;
    transition: color 0.3s;
}

.btn-remove:hover {
    color: #ef4444;
}

.cart-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.cart-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    margin-right: auto;
}

.cart-summary h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-light);
}

.summary-row.total-row {
    border-bottom: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid rgba(201, 169, 97, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* ==================== Checkout Page ==================== */
.checkout-section {
    padding: 60px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.checkout-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 30px;
}

.checkout-form h3 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 20px;
}

.checkout-form label {
    display: block;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 500;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.order-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    font-size: 14px;
}

.summary-totals .summary-row {
    font-size: 14px;
}

/* ==================== Order Confirmation ==================== */
.success-hero {
    text-align: center;
}

.success-icon {
    font-size: 72px;
    color: #059669;
    margin-bottom: 20px;
    display: block;
}

.order-details {
    padding: 60px 0;
}

.order-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.order-card h2 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 22px;
}

.order-card h3 {
    color: var(--white);
    margin: 24px 0 16px;
    font-size: 18px;
}

.order-info {
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-label {
    color: var(--text-light);
    font-size: 14px;
}

.info-value {
    color: var(--white);
    font-weight: 600;
}

.total-value {
    color: var(--primary-color);
    font-size: 18px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.order-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.item-details h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 4px;
}

.item-details p {
    color: var(--text-light);
    font-size: 12px;
}

.item-price {
    margin-right: auto;
    color: var(--primary-color);
    font-weight: 700;
}

.order-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

/* ==================== Responsive: Cart & Checkout ==================== */
@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        max-width: 100%;
    }
    .order-card {
        padding: 24px;
    }
    .cart-actions {
        flex-direction: column;
    }
}

/* ==================== AI Chat Widget ==================== */
.ai-chat-widget {
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 380px;
    max-height: 520px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,169,97,0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 1100;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlideUp 0.35s ease;
}

.ai-chat-widget.active {
    display: flex;
}

@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(201,169,97,0.15), rgba(201,169,97,0.05));
    border-bottom: 1px solid rgba(201,169,97,0.15);
}

.ai-chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
}

.ai-chat-title i {
    font-size: 20px;
}

.ai-chat-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.ai-chat-close:hover {
    color: #fff;
}

.ai-chat-messages {
    flex: 1;
    padding: 16px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 350px;
}

.ai-msg {
    display: flex;
}

.ai-msg.bot {
    justify-content: flex-start;
}

.ai-msg.user {
    justify-content: flex-end;
}

.ai-msg-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.ai-msg.bot .ai-msg-bubble {
    background: rgba(201,169,97,0.1);
    color: rgba(255,255,255,0.9);
    border-bottom-right: 4px;
}

.ai-msg.user .ai-msg-bubble {
    background: var(--gradient-gold);
    color: #1a1a1a;
    border-bottom-left: 4px;
}

.ai-chat-input {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(201,169,97,0.1);
    background: rgba(0,0,0,0.2);
}

.ai-chat-input input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,169,97,0.15);
    border-radius: 12px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

.ai-chat-input input:focus {
    border-color: rgba(201,169,97,0.4);
}

.ai-chat-input button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gradient-gold);
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(201,169,97,0.4);
}

.ai-typing {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.ai-typing span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: aiDotBounce 1.4s ease-in-out infinite;
}

.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes aiDotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ==================== Order Tracking Page ==================== */
.btn-gold {
    padding: 14px 28px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,168,67,0.35);
}

.track-section {
    padding: 60px 0;
    min-height: 60vh;
    background: var(--white) !important;
    color: var(--text-dark) !important;
}

.track-form-card {
    max-width: 550px;
    margin: 0 auto 40px;
    background: var(--white);
    border: 2px solid rgba(212,168,67,0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(212,168,67,0.08);
}

.track-form-card h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 20px;
}

.track-form-card .track-sub {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 14px;
}

.track-form {
    display: flex;
    gap: 10px;
}

.track-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--light-bg);
    color: var(--text-dark);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.track-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}

.track-result {
    max-width: 700px;
    margin: 0 auto;
}

.track-card {
    background: var(--white);
    border: 2px solid rgba(212,168,67,0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.track-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-card h3 i {
    color: var(--primary-color);
}

/* Order Timeline */
.order-timeline {
    position: relative;
    padding-right: 40px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(212,168,67,0.2);
    border-radius: 3px;
}

.timeline-step {
    position: relative;
    padding-bottom: 30px;
    padding-right: 20px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    right: -34px;
    top: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(212,168,67,0.12);
    border: 3px solid rgba(212,168,67,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-step.active .timeline-dot {
    background: var(--gradient-gold);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(201,169,97,0.4);
}

.timeline-step.active .timeline-dot::after {
    content: '✓';
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
}

.timeline-step.current .timeline-dot {
    background: var(--gradient-gold);
    border-color: var(--primary-color);
    animation: dotPulseTrack 2s ease-in-out infinite;
}

@keyframes dotPulseTrack {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,97,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(201,169,97,0); }
}

.timeline-content h4 {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 4px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 13px;
}

.timeline-step.active .timeline-content h4,
.timeline-step.current .timeline-content h4 {
    color: var(--primary-color);
}

/* ==================== Section Reveal Animations ==================== */
section {
    opacity: 1;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* Glass card effect */
.glass-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

/* Gold shimmer animation for special elements */
.gold-shimmer {
    position: relative;
    overflow: hidden;
}

.gold-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,0.15), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ==================== Responsive: Nav Actions ==================== */
@media (max-width: 992px) {
    .topbar-contact {
        display: none;
    }
    
    .topbar-inner {
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        border-top: 1px solid rgba(201,169,97,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-header {
        display: none;
    }

    .nav-icon-btn {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 30px;
    }

    .wishlist-drawer {
        width: 320px;
        right: -340px;
    }

    [dir="rtl"] .wishlist-drawer {
        left: -340px;
    }
}

@media (max-width: 768px) {
    .ai-chat-widget {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .ai-chat-widget {
        left: 5px;
        right: 5px;
        max-height: 450px;
    }
    .banner-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== Company Intro Section ==================== */
.company-intro {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%);
    position: relative;
}

.company-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.company-intro-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-intro-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
}

.company-intro-logo img {
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(212,168,67,0.3));
}

.company-intro-logo h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.3;
}

.company-intro-logo h2 span {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.company-intro-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

.company-intro-text .intro-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.intro-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(212,168,67,0.08);
    border-radius: 12px;
    border: 1px solid rgba(212,168,67,0.15);
}

.intro-highlight-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.intro-highlight-item span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.company-intro-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    aspect-ratio: 16/10;
    background: #000;
}

.company-intro-video video,
.company-intro-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.company-intro-video .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.company-intro-video .video-overlay:hover {
    background: rgba(0,0,0,0.15);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(212,168,67,0.4);
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .company-intro-grid {
        grid-template-columns: 1fr;
    }
    .company-intro-video {
        aspect-ratio: 16/9;
    }
}

/* ==================== Product Detail Page ==================== */
.product-detail {
    padding: 60px 0 80px;
    background: var(--white);
    color: var(--text-dark);
    min-height: 60vh;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--light-bg);
    border: 2px solid rgba(212,168,67,0.15);
    margin-bottom: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.product-thumbnails .thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: border-color 0.3s;
    background: var(--light-bg);
}

.product-thumbnails .thumb.active,
.product-thumbnails .thumb:hover {
    border-color: var(--primary-color);
}

.product-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-info .product-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info .product-name {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--text-dark);
}

.product-info .product-price-tag {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
}

.product-info .product-price-tag .original-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 12px;
    font-weight: 400;
}

.product-info .product-full-desc {
    color: var(--text-light);
    font-size: 16px;
    line-height: 2;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 16px;
    border: 2px solid rgba(212,168,67,0.1);
}

.product-specs h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-light);
}

.spec-value {
    color: var(--text-dark);
    font-weight: 600;
}

.product-detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.product-detail-actions .btn {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.product-detail-actions .btn-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.product-detail-actions .btn-icon:hover {
    background: rgba(212,168,67,0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.product-stock.in-stock {
    color: #22c55e;
}

.product-stock.low-stock {
    color: #eab308;
}

.product-stock.out-of-stock {
    color: #ef4444;
}

.product-stock i {
    font-size: 10px;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background: var(--light-bg);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        position: static;
    }
    .product-info .product-name {
        font-size: 24px;
    }
    .product-info .product-price-tag {
        font-size: 28px;
    }
}

/* ==================== Track Page Enhancement ==================== */
.track-hero-image {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: center;
    opacity: 0.85;
}

.track-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212,168,67,0.15));
}

.track-hero-image i {
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.35;
    animation: trackFloat 4s ease-in-out infinite;
}

@keyframes trackFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==================== Compare Icon ==================== */
.compare-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gradient-gold);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== Product Reviews Section ==================== */
.reviews-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.reviews-section .section-header {
    margin-bottom: 40px;
}

.reviews-overview {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.reviews-summary {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(212,168,67,0.12);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.reviews-summary .avg-rating {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.reviews-summary .stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.reviews-summary .stars i {
    color: var(--primary-color);
    font-size: 20px;
}

.reviews-summary .stars i.empty {
    color: var(--border-color);
}

.reviews-summary .review-count {
    color: var(--text-light);
    font-size: 14px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-bar-row .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-bar-row .label i {
    color: var(--primary-color);
    font-size: 12px;
}

.rating-bar {
    flex: 1;
    height: 10px;
    background: rgba(212,168,67,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 10px;
    transition: width 1s ease;
}

.rating-bar-row .count {
    font-size: 13px;
    color: var(--text-light);
    min-width: 30px;
    text-align: left;
}

/* Individual Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(212,168,67,0.2);
    box-shadow: 0 8px 30px rgba(212,168,67,0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.review-author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.review-author-info .review-date {
    font-size: 13px;
    color: var(--text-light);
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: var(--primary-color);
    font-size: 14px;
}

.review-stars i.empty {
    color: var(--border-color);
}

.review-body {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    margin-top: 12px;
}

.review-badge i {
    font-size: 11px;
}

/* Comment Form */
.comment-section {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    border: 2px solid rgba(212,168,67,0.12);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.comment-section h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.comment-section .comment-sub {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.comment-form .form-group {
    margin-bottom: 16px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    background: var(--light-bg);
    color: var(--text-dark);
    transition: all 0.3s;
    outline: none;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
    background: var(--white);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form .rating-select {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.comment-form .rating-select label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.comment-form .rating-select .star-picker {
    display: flex;
    gap: 6px;
}

.comment-form .rating-select .star-picker i {
    font-size: 24px;
    color: var(--border-color);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.comment-form .rating-select .star-picker i:hover,
.comment-form .rating-select .star-picker i.active {
    color: var(--primary-color);
    transform: scale(1.15);
}

.comment-form .btn-submit-review {
    padding: 16px 40px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.comment-form .btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,168,67,0.35);
}

/* ==================== Track Info Grid (Light Theme) ==================== */
.track-section .info-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.track-section .info-row:last-child {
    border-bottom: none;
}

.track-section .info-label {
    color: var(--text-light);
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.track-section .info-value {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 16px;
}

.track-section .info-value.total-value {
    color: var(--primary-color);
    font-size: 20px;
}

/* Track Order Items Light */
.track-section .order-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.track-section .order-item:last-child {
    border-bottom: none;
}

.track-section .order-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.track-section .order-item .item-details h4 {
    color: var(--text-dark);
    font-size: 15px;
}

.track-section .order-item .item-details p {
    color: var(--text-light);
    font-size: 13px;
}

.track-section .order-item .item-price {
    margin-left: auto;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

[dir="rtl"] .track-section .order-item .item-price {
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 768px) {
    .reviews-overview {
        grid-template-columns: 1fr;
    }
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==================== Responsive: Banners ==================== */
@media (max-width: 768px) {
    .banners {
        position: static;
    }
    .banner-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-form select option {
    background: #17191b;
    color: #fff;
}

.form-hint {
    display: block;
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 12px;
}

/* ==================== Header Search Form ==================== */
.header-search-form {
    display: flex;
    align-items: center;
    position: relative;
    margin-inline-end: 8px;
}

.header-search-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(200, 164, 61, 0.35);
    border-radius: 25px;
    padding: 7px 35px 7px 15px;
    color: #ffffff;
    font-size: 13px;
    width: 170px;
    transition: all 0.3s ease;
    outline: none;
}

[dir="rtl"] .header-search-input {
    padding: 7px 15px 7px 35px;
}

.header-search-input:focus {
    width: 220px;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color, #c8a43d);
    box-shadow: 0 0 10px rgba(200, 164, 61, 0.25);
}

.header-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color, #c8a43d);
    cursor: pointer;
    font-size: 13px;
    padding: 0;
}

[dir="rtl"] .header-search-btn {
    right: auto;
    left: 10px;
}

@media (max-width: 991px) {
    .header-search-input {
        width: 130px;
    }
    .header-search-input:focus {
        width: 160px;
    }
}

@media (max-width: 576px) {
    .header-search-form {
        display: none;
    }
}

/* ==================== Brands Track / Slider ==================== */
.brands-carousel-section {
    padding: 60px 0 70px;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.brands-slider-wrapper {
    overflow: hidden !important;
    width: 100% !important;
    position: relative;
    padding: 15px 0;
    direction: ltr !important;
}

.brands-slider-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    align-items: center !important;
    width: max-content !important;
    animation: smoothBrandsMarquee 28s linear infinite !important;
    will-change: transform;
}

.brands-slider-track:hover {
    animation-play-state: paused !important;
}

@keyframes smoothBrandsMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.brand-card-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    min-width: 175px;
    height: 105px;
    transition: all 0.35s ease;
    text-decoration: none;
    color: #1e293b;
}

.brand-card-slide:hover {
    background: #ffffff;
    border-color: #c8a43d;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(200, 164, 61, 0.2);
}

.brand-card-slide img {
    max-height: 60px;
    max-width: 135px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card-slide:hover img {
    transform: scale(1.06);
}

.brand-card-slide span {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 4px;
}

/* ==================== Search Modal Overlay ==================== */
.search-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 12, 14, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.search-modal-container {
    background: #181b1e;
    border: 1.5px solid rgba(212, 166, 44, 0.45);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
    border-radius: 24px;
    width: 100%;
    max-width: 720px;
    padding: 32px 30px;
    position: relative;
    transform: scale(0.92) translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal-overlay.active .search-modal-container {
    transform: scale(1) translateY(0);
}

.search-modal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-modal-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-modal-heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.3px;
}

.search-modal-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.search-modal-close:hover {
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.4);
    color: #ef4444;
    transform: rotate(90deg);
}

.search-modal-form {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.search-modal-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.search-modal-input-wrapper .search-icon-inside {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4a62c;
    font-size: 19px;
    pointer-events: none;
    z-index: 2;
}

[dir="ltr"] .search-modal-input-wrapper .search-icon-inside,
html[lang="en"] .search-modal-input-wrapper .search-icon-inside {
    right: auto;
    left: 20px;
}

.search-modal-input {
    width: 100% !important;
    height: 56px !important;
    padding: 0 54px 0 20px !important;
    background: #0f1113 !important;
    border: 2px solid #2d3238 !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
}

[dir="ltr"] .search-modal-input,
html[lang="en"] .search-modal-input {
    padding: 0 20px 0 54px !important;
}

.search-modal-input:focus {
    border-color: #d4a62c !important;
    background: #090a0c !important;
    box-shadow: 0 0 0 4px rgba(212, 166, 44, 0.22) !important;
}

.search-modal-input::placeholder {
    color: #64748b !important;
    font-size: 15px !important;
}

.search-modal-submit-btn {
    height: 56px !important;
    padding: 0 32px !important;
    background: linear-gradient(135deg, #d4a62c 0%, #b88b1e 100%) !important;
    color: #151719 !important;
    border: none !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 18px rgba(212, 166, 44, 0.32) !important;
}

.search-modal-submit-btn:hover {
    background: linear-gradient(135deg, #e5b940 0%, #c89823 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 166, 44, 0.45) !important;
}

[dir="ltr"] .search-modal-submit-btn .submit-arrow-icon,
html[lang="en"] .search-modal-submit-btn .submit-arrow-icon {
    transform: rotate(180deg);
}

.search-modal-hints {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.search-modal-hints .hints-label {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    margin-left: 6px;
}

[dir="ltr"] .search-modal-hints .hints-label,
html[lang="en"] .search-modal-hints .hints-label {
    margin-left: 0;
    margin-right: 6px;
}

.search-modal-hints .hint-tag {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.search-modal-hints .hint-tag:hover {
    background: rgba(212, 166, 44, 0.18);
    border-color: #d4a62c;
    color: #d4a62c;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .search-modal-container {
        padding: 24px 18px;
    }
    
    .search-modal-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-modal-submit-btn {
        width: 100% !important;
    }
}



.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f1113 !important;
    font-weight: 600;
}

/* Mobile Search Modal Fix */
@media (max-width: 768px) {
    .search-modal-container {
        padding: 20px 15px;
        border-radius: 16px;
        width: 95%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .search-modal-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-modal-input-wrapper {
        width: 100%;
        margin: 0;
    }
    
    .search-modal-submit-btn {
        width: 100%;
        justify-content: center;
        border-radius: 50px !important;
    }
    
    .search-modal-hints {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-modal-header h3 {
        font-size: 18px;
    }
}
