

/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* 🔥 FIXED HEADER */
.top-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1a0f0b;
    color: #fff;
    z-index: 1000;
    padding: 10px 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    font-size: 13px;
}

.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    letter-spacing: 5px;
}


.header-icons i {
    font-size: 20px;
    margin-left: 20px;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
}

/* Hover effect like luxury sites */
.header-icons i:hover {
    color: #c49a6c;
    transform: scale(1.1);
}
/* NAVBAR */
.main-nav {
    position: fixed;
    top: 45px;
    width: 100%;
    background: #2a1a14;
    z-index: 999;
}

.navbar-nav {
    margin: auto;
}

.nav-link {
    color: #fff !important;
    padding: 15px;
}

/* HERO */
/* HERO SLIDER */
.hero-slider {
    margin-top: 100px; /* adjust based on header height */
}

.carousel-item {
    height: 50vh;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LUXURY OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(40,20,10,0.7), rgba(0,0,0,0.2));
}

/* TEXT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 500;
}

.hero-content p {
    font-size: 18px;
    color: #ddd;
}

.hero-content button {
    margin-top: 20px;
    padding: 12px 30px;
    background: #c49a6c;
    border: none;
    color: #fff;
    letter-spacing: 1px;
}

/* DOTS */
.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* MOBILE */
@media(max-width:768px){

    .carousel-item {
    height: 75vh;
}

    .hero-content {
        left: 20px;
        right: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}

/* CATEGORIES */
/* CATEGORY SECTION */
.category-section {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.category-title {
    letter-spacing: 3px;
    font-size: 16px;
    margin-bottom: 40px;
}

/* HORIZONTAL SCROLL */
.category-scroll {
    display: flex;
    gap: 30px;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* REMOVE SCROLLBAR */
.category-scroll::-webkit-scrollbar {
    display: none;
}

/* ITEM */
.category-item {
    min-width: 100px;
    text-align: center;
    cursor: pointer;
}

/* IMAGE */
.category-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    transition: 0.3s;
}

/* HOVER EFFECT */
.category-item:hover img {
    transform: scale(1.1);
}

/* TEXT */
.category-item p {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* MOBILE */
@media(max-width:768px){
    .category-scroll {
        justify-content: flex-start;
        padding-left: 15px;
    }
}

/* PRODUCTS */

/* PRODUCT CARD */
.product-card {
    text-align: center;
}

/* IMAGE BOX FIX SIZE */
.product-img {
    position: relative;
    width: 100%;
    height: 320px; /* FIXED HEIGHT */
    overflow: hidden;
    background: #f5f5f5;
}

/* IMAGE FIT */
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* IMPORTANT */
    transition: 0.4s;
}

/* HOVER ZOOM */
.product-card:hover img {
    transform: scale(1.05);
}

/* ACTION BUTTONS */
.product-actions {
    position: absolute;
    bottom: -50px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

/* SHOW ON HOVER */
.product-card:hover .product-actions {
    bottom: 20px;
}

/* BUTTON STYLE */
.btn-view, .btn-cart {
    background: #fff;
    padding: 8px 15px;
    font-size: 12px;
    border: none;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* HOVER */
.btn-view:hover, .btn-cart:hover {
    background: #c49a6c;
    color: #fff;
}

/* INFO */
.product-info {
    margin-top: 15px;
}

.product-info h6 {
    font-size: 14px;
    letter-spacing: 1px;
}

.product-info p {
    font-size: 13px;
    color: #555;
}

/* MOBILE */
@media(max-width:768px){
    .product-img {
        height: 250px;
    }
}

/* BANNERS */

/* SECTION */
.promo-section {
    margin: 80px auto;
}

/* CARD */
.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* IMAGE */
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* HEIGHT CONTROL */
.promo-card {
    height: 350px;
}

/* OVERLAY */
.promo-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
}

/* CONTENT */
.promo-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
}

.promo-content h3,
.promo-content h4 {
    margin-bottom: 10px;
}

/* BUTTON */
.promo-btn {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    font-size: 13px;
}

/* 🔥 HOVER EFFECT */
.promo-card:hover img {
    transform: scale(1.1);
}

.promo-card:hover .promo-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* MOBILE */
@media(max-width:768px){
    .promo-card {
        height: 250px;
    }
}



/* SECTION */

/* SECTION */
.testimonial-section {
    padding: 80px 0;
    background: #f8f8f8;
}

/* TITLE */
.testimonial-title {
    letter-spacing: 2px;
}

.review-count {
    color: #777;
    margin-bottom: 40px;
}

/* CARD */
.testimonial-card {
    padding: 20px;
    text-align: center;
}

/* STARS */
.stars {
    color: #c49a6c;
    margin-bottom: 10px;
}

/* TEXT ALIGN FIX */
.testimonial-card p {
    font-size: 14px;
    color: #555;
    min-height: 60px;
}

/* IMAGE */
.testimonial-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-top: 10px;
}

/* DOTS STYLE */
.carousel-indicators {
    bottom: -30px;
}
.carousel-item{
    height: auto;
}

.carousel-indicators button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}

/* MOBILE */
@media(max-width:768px){

    .testimonial-card {
        margin-bottom: 20px;
    }

}
/* FOOTER */

/* FOOTER */
.footer-section {
    background: #f8f8f8;
    padding: 70px 0;
}

/* TITLES */
.footer-title {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    color: #555;
}

/* LINKS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

/* HOVER */
.footer-section ul li a:hover {
    color: #c49a6c;
}

/* SOCIAL ICONS */
.social-icons i {
    margin-right: 15px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    color: #c49a6c;
}

/* INPUT */
.footer-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    margin-top: 10px;
}

/* BUTTON */
.subscribe-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    letter-spacing: 2px;
}

/* COPY */
.footer-copy {
    margin-top: 20px;
    font-size: 13px;
    color: #777;
}

/* MOBILE */
@media(max-width:768px){

    .footer-section {
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
    }

}

/* MOBILE */
@media(max-width:768px){

    .logo-center {
        position: static;
        transform: none;
    }

    .header-content {
        flex-direction: column;
    }

    .main-nav {
        top: 80px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        text-align: center;
    }

}

