@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-gold: #dcb94a;
    --nav-black: #393838;
    --dark-bg: #000000;
    --card-bg: #7b724e;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
}


body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-bg);
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu-dark {
    background-color: var(--dark-bg);
    border: 1px solid var(--primary-gold);
    border-radius: 0;
    padding: 10px 0;
}

.dropdown-item {
    font-size: 0.8rem;
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #d4af37 !important;
    color: var(--dark-bg) !important;
}

.active-link {
    color: #d4af37 !important;
    border-bottom: 2px solid #d4af37;
}



.navbar {
    background-color: var(--dark-bg) !important;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-gold) !important;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--text-light) !important;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}


.navbar-nav .nav-link.active-link {
    color: var(--primary-gold) !important;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-gold);
}


.search-overlay {
    display: none;

    position: absolute;

    top: 70px;

    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-gold);
    z-index: 2000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
}

.search-input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #555;
    color: var(--text-light);
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

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

.search-input:focus {
    background-color: transparent;
    color: var(--text-light);
    box-shadow: none;
    border-color: var(--primary-gold);
}


.hero-slide {
    height: 85vh;

    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}


.hero-wrapper .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.hero-wrapper .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--text-light);
    opacity: 0.7;
}

.hero-wrapper .owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    opacity: 1;
}


.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x800/1a1a1avar(--text-light)?text=Luxury+Lighting+Decor');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ============================= */
/* 📱 Mobile Responsive CSS */
/* ============================= */

/* Tablet view (max-width: 992px) */
@media (max-width: 992px) {

    .hero-slide,
    .hero-section {
        height: 65vh;
    }

    .hero-content {
        max-width: 90%;
        padding: 15px;
    }

    .hero-wrapper .owl-dots {
        bottom: 20px;
    }

    .hero-wrapper .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
    }
}


/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {

    .hero-slide,
    .hero-section {
        height: 55vh;
        padding: 10px;
    }

    .hero-content {
        max-width: 100%;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-wrapper .owl-dots {
        bottom: 15px;
    }
}


/* Small mobile view (max-width: 480px) */
@media (max-width: 480px) {

    .hero-slide,
    .hero-section {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-wrapper .owl-theme .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
    }
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
}


.text-gold {
    color: var(--primary-gold) !important;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

.border-gold {
    border-color: var(--primary-gold) !important;
}


.form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.product-card {
    background-color: var(--card-bg);
    border: none;
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.card-title {
    color: var(--text-light);
}

.price {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: bold;
}


footer {
    background-color: var(--dark-bg);
    color: var(--text-muted);
    padding: 50px 0;
    margin-top: 50px;
    border-top: 1px solid #333;
}

footer h5 {
    color: var(--text-light);
    margin-bottom: 20px;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
}

footer a:hover {
    color: var(--primary-gold);
}

.list-unstyled li {
    color: var(--text-light) !important;
}


#mob-banner {
    padding-top: 50px;
    padding-bottom: 50px;
}


.category-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 2rem;
    justify-content: center;
}

.category-item {
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 15px 5px;
    border: 1px solid #333;
}

.category-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.category-item a {
    text-decoration: none;
    display: block;
}


.category-item img {
    height: auto;
    display: block;
    margin: 0 auto 15px;
    max-width: 100%;
    border-radius: 5px;
}


.category-item p {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--text-light);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-item:hover p {
    color: var(--primary-gold);
}


@media (max-width: 991px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .vanity-lights {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .category-item {
        padding: 10px 2px;
    }

    .category-item p {
        font-size: 11px !important;
        margin-top: 5px;
    }
}



.home-decor-section {
    background-color: var(--text-light);
    padding: 60px 0;

}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.decor-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin: 10px;
    transition: transform 0.3s;
}

.decor-card:hover {
    transform: translateY(-5px);
}

.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #d32f2f;

    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.card-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.card-details {
    padding: 20px;
    text-align: left;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-light);
}

.price-box {
    margin-bottom: 15px;
}

.current-price {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 10px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-add-cart {
    background-color: var(--dark-bg);

    color: white;
    width: 100%;
    padding: 10px;
    border-radius: 30px;

    border: 1px solid #333;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-add-cart:hover {
    background-color: var(--primary-gold);
    color: black;
    border-color: var(--primary-gold);
}


.owl-nav button {
    position: absolute;
    top: 40%;
    width: 40px;
    height: 40px;
    background: var(--dark-bg) !important;
    border-radius: 50% !important;
    color: var(--text-light) !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.owl-nav button.owl-prev {
    left: -20px;
}

.owl-nav button.owl-next {
    right: -20px;
}