@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');
:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-light: #f8f6f0;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --gradient-gold: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #0c0c0c 0%, #2d2d2d 100%);
    --footer-light: #212529;
    --footer-text: #dee2e6;
    --footer-border: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
.navbar {
    background: rgba(10, 10, 10, 0.95);
    filter: blur(.5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.navbar .navbar-brand:hover {
    color: var(--text-light);
    transform: scale(1.05);
}

.navbar .nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--accent-gold);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar-toggler i {
    color: var(--accent-gold);
}

    .cart-count {
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            margin-left: 5px;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 10px;
        } 
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--secondary-dark);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 10px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
}

.footer {
    background: var(--footer-light);
    color: var(--footer-text);
    padding: 60px 0 30px;
    border-top: 1px solid var(--footer-border);
    font-family: 'Poppins', sans-serif;
}

.footer h5 {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    font-size: 0.9rem;
    color: var(--footer-text);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent-gold);
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-right: 15px;
    font-size: 1.2rem;
}




.footer-contact div {
    font-size: 0.9rem;
}

.social-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-links a:hover {
     color: var(--accent-gold);
            transform: translateX(5px);
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 50px;
    padding-left: 20px;
}

.footer-newsletter .form-control::placeholder {
    color: var(--text-muted);
}

.footer-newsletter .btn {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    margin-left: -50px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-newsletter .btn:hover {
    background: #e2c161;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods i {
    font-size: 1.5rem;
    margin-left: 10px;
    color: var(--text-muted);
}
