body {
    font-family: 'Poppins', sans-serif;
}

/* ===== TOP HEADER (Offer Bar) ===== */
.top-header {
    background-color: #b28c42;   /* Exact Adil Qadri color */
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    letter-spacing: 0.3px;
}


/* ===== HERO SLIDER ===== */
.hero-slide {
    height: 90vh; /* full viewport height for desktop */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #fff;
}

.carousel-caption h1 {
    font-size: 2.5rem;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .hero-slide {
        height: auto; /* not used on mobile since <img> will show */
    }
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
}



/* ===== SHOP BY CATEGORY ===== */
.category-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-title {
    font-weight: 700;
    font-size: 28px;
    color: #000;
}

.category-card {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
}

.category-card img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.category-card h6 {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.category-card:hover img {
    transform: scale(1.05);
}




/* ===== ADVANCED BEST SELLER SECTION ===== */
.bestseller-advanced {
    background-color: #502020; /* Same light background */
    padding: 70px 0;
}

.aq-product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
}

.aq-product-card:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.aq-product-img img {
    width: 100%;
    height: auto;
}

.aq-product-info {
    padding: 15px;
}

.aq-category {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}

.aq-rating {
    font-size: 13px;
    margin: 4px 0;
    color: #000;
}

.aq-rating span {
    color: #777;
}

.aq-title {
    font-size: 14px;
    font-weight: 600;
    margin: 6px 0;
}

.aq-price {
    margin: 6px 0;
}

.sale-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.regular-price {
    text-decoration: line-through;
    color: #777;
    font-size: 13px;
    margin-left: 6px;
}

.discount {
    color: #f2b01e;
    font-size: 13px;
    font-weight: 600;
    margin-left: 6px;
}

.aq-emi {
    font-size: 12px;
    color: #555;
    margin-bottom: 6px;
}

.aq-emi a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}



/* ===== TRUST SECTION ===== */
.trust-section {
    background-color: #ffffff;
    padding: 35px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-item i {
    font-size: 32px;
    color: #f2b01e; /* Same gold */
    margin-bottom: 8px;
    display: block;
}

.trust-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
    letter-spacing: 0.3px;
}





.btn-gold {
    background-color: #f2b01e;
    color: #000;
    font-weight: 600;
    padding: 10px 25px;
}

.btn-gold:hover {
    background-color: #d89c15;
    color: #000;
}


.brand-text {
    color: #000;
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
}

.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url('../images/hero.jpg') center/cover;
}

.btn-gold {
    background: #caa24d;
    color: #000;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
}

.cat-box {
    border: 1px solid #ddd;
    padding: 40px;
    font-weight: 600;
}

.product-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,.08);
}

.product-img {
    height: 180px;
    background: #eee;
}

.price {
    font-weight: bold;
}



/* ===== VIDEO GALLERY ===== */
.video-gallery {
    padding: 60px 0;
    background-color: #ffffff;
}

/* 5 column layout */
.video-row {
    display: flex;
    flex-wrap: wrap;
}

.video-col {
    width: 20%;
}

/* iframe styling */
.video-col iframe {
    border-radius: 6px;
}

/* Responsive breakpoints */
@media (max-width: 991px) {
    .video-col {
        width: 33.33%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .video-col {
        width: 50%;
        margin-bottom: 15px;
    }
}

/* ===== HALF & HALF IMAGE SECTION ===== */
.half-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.half-image-link {
    display: block;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.half-image-link:hover img {
    transform: scale(1.05);
}
.combo-section {
    padding: 80px 0;
    background: #fff;
}

/* LEFT */
.combo-left h2 {
    font-size: 36px;
    font-weight: 700;
}

.combo-left a {
    font-size: 14px;
    text-decoration: underline;
    color: #000;
}

/* RIGHT PRODUCTS */
.combo-products {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.combo-card {
    min-width: 260px;
    border: 1px solid #eee;
    background: #fff;
    padding: 10px;
}

.combo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.combo-info {
    padding: 10px 5px;
}

.rating {
    font-size: 13px;
    margin-bottom: 5px;
}

.combo-info h6 {
    font-size: 14px;
    font-weight: 600;
}

.price .sale {
    font-weight: 700;
}

.price .regular {
    font-size: 13px;
    color: #777;
    text-decoration: line-through;
    margin-left: 5px;
}

.off {
    color: #f2b01e;
    font-size: 13px;
    margin-left: 5px;
}

.emi {
    font-size: 12px;
    color: #555;
}

/* ===== FULL WIDTH BANNER ===== */
.full-banner-section {
    margin: 60px 0;
}

.full-banner-section img {
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.full-banner-section img:hover {
    transform: scale(1.02);
}

/* ===== MEET THE FOUNDER ===== */
.founder-section {
    padding: 90px 0;
    background: #fff;
}

.founder-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}

.founder-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.founder-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin-left: auto;
}
/* ===== WHY TRUST US ===== */
.trust-us-section {
    background-color: #2d0a06;
}

.trust-us-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.trust-card img {
    width:100%;
    height: auto;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* ===== IN THE NEWS ===== */
.in-the-news-section {
    background-color: #fff;
}

.in-the-news-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.news-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    /* width: 80px; */
    margin-bottom: 10px;
}

.news-card p {
    font-size: 14px;
    color: #555;
}

.footer-section {
    background-color: #2d0a06;
    color: #fff;
    font-size: 14px;
}

.footer-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #b28c42;
}

.footer-section input.form-control {
    border-radius: 0;
}

.footer-section button.btn {
    border-radius: 0;
}
