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

body {
    background-color: #121212;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav {
    position: fixed !important;
    width: 100%;
    z-index: 1000;
}

.navbar {
    background-color: #1c1c1c !important;
}

.navbar-brand {
    color: #d4af37 !important;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 10px 15px;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-brand:hover {
    color: #cda34d !important;
    text-decoration: none;
    transform: scale(1.1);
}

.icon {
    color: #d4af37;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37 !important;
    transform: scale3d(1.5, 1.5, 1.5);
}

.search-input::placeholder {
    color: #aaa;
}

.search-btn:hover {
    background-color: #cda34d;
    color: black;
    border: 2px solid #000;
}

.search-input {
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 5px 10px;
    background-color: transparent;
    color: #fff;
}

.search-input:focus {
    background-color: #1c1c1c;
    color: white;
    border-color: #FFD700;
    box-shadow: 0 0 5px #FFD700;
    outline: none;
}

.search-btn {
    background-color: #d4af37;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    color: #1c1c1c;
    font-weight: bold;
    transition: all 0.3s ease;
}

.search-btn:hover,
.search-btn:focus {
    background-color: #FFD700;
    color: black;
    border: 2px solid black;
    box-shadow: 0 0 5px #FFD700;
    outline: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
    padding: 120px 0 80px 0;
    text-align: center;
}

.hero-title {
    color: #d4af37;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    background-color: #d4af37;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.section-title {
    color: #d4af37;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: bold;
}

.category-card {
    background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.category-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.category-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-description {
    color: #aaa;
    font-size: 0.9rem;
}

/* Products Section */
.shop-section {
    padding: 80px 0;
    background-color: #121212;
}

.filter-section {
    background-color: #1c1c1c;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid #333;
}

.filter-title {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.filter-option {
    color: #ffffff;
    margin-bottom: 15px;
}

.filter-option input {
    margin-right: 10px;
    accent-color: #d4af37;
}

.filter-option label {
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-option label:hover {
    color: #d4af37;
}

.product-card {
    background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: opacity 0.3s ease;
    background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
}

.product-card:hover .card-img-top {
    opacity: 0.9;
}

.product-card .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .card-title {
    color: #d4af37;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.product-card .card-text {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
    opacity: 0.9;
}

.product-price {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-btn {
    background-color: #d4af37;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-btn:hover {
    background-color: #ffd700;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%);
    padding: 80px 0;
}

.about-content {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-highlight {
    color: #d4af37;
    font-weight: 600;
}

/* Featured Section */
.featured-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

.featured-card {
    background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.featured-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 25px;
}

.featured-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.featured-description {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #000;
    padding: 80px 0;
}

.contact-form-section h2,
.contact-form-section p {
    color: #d4af37;
}

.contact-form-section .form-control {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus {
    background-color: rgba(212, 175, 55, 0.05);
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    outline: none;
    color: #d4af37;
}

.contact-form-section .form-control::placeholder {
    color: #d4af37;
    opacity: 0.6;
}

.contact-form-section .btn {
    background-color: #d4af37;
    color: black;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-section .btn:hover {
    background-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
.lux-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 100%);
    color: #f5f5f5;
    padding: 60px 0 40px 0;
}

.lux-footer .text-gold {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lux-footer .text-gold:hover {
    color: #ffd700;
    text-decoration: underline;
}

.lux-footer .social-icons i {
    transition: all 0.3s ease;
}

.lux-footer .social-icons i:hover {
    color: #ffd700;
    transform: scale(1.2);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    color: #d4af37;
    font-size: 1.5rem;
    margin-left: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #ffd700;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .product-card .card-img-top {
        height: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

    .category-card,
    .featured-card {
        padding: 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .shop-section {
        padding-top: 80px;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .hero-section {
        padding: 100px 0 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Loading placeholder for images */
.img-placeholder {
    background: linear-gradient(45deg, #2a2a2a, #3a3a3a, #2a2a2a);
    background-size: 200% 200%;
    animation: shimmer 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 3rem;
}

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

    50% {
        background-position: 100% 100%;
    }

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