/* ====================== GLOBAL STYLES ====================== */
:root {
    --gold: #D4AF37;
    --dark-brown: #3E2723;
    --light-beige: #F5E6D3;
}

body {
    font-family: 'Poppins', sans-serif;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}

/* ====================== NAVBAR ====================== */
.custom-navbar {
    background: linear-gradient(to right, #3E2723, #2C1810);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px 0;
    font-family: 'Playfair Display', serif;
}

/* LOGO CENTER FIX */
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    object-fit: cover;
}

/* LINKS */
.nav-link {
    color: #F5E6D3 !important;
    font-size: 14px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #D4AF37 !important;
}

/* ICONS */
.icon-btn {
    color: #F5E6D3;
}

.icon-btn:hover {
    color: #D4AF37;
}

/* CUSTOM GAP LIKE ZOHBITES */
.custom-gap {
    gap: 18px;
}

/* NAV LINKS LOOK */
.nav-link {
    color: #F5E6D3 !important;
    font-size: 13px;
    font-weight: 500;
    padding: 0 !important;
    letter-spacing: 0.5px;
}

/* LEFT + RIGHT SECTIONS CONTROL */
.container {
    max-width: 1200px;
}

/* ICON SPACING */
.right-section,
.d-flex.align-items-center.gap-4 {
    gap: 15px !important;
}

/* Cart Badge Fix */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #D4AF37;
    color: #3E2723;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Logo Fix */
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* REMOVE BOX LOOK */
.mobile-menu {
    background: transparent;
    padding: 0;
}

/* ====================== CART SIDEBAR ====================== */
.offcanvas {
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #D4AF37;
    background: #F5E6D3;
    color: #3E2723;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #D4AF37;
    color: white;
}

/* Cart Item Card */
.offcanvas-body .bg-white {
    border: 1px solid #D4AF37 !important;
    border-radius: 16px !important;
}

/* Proceed Button */
.offcanvas-footer button {
    background: #3E2723 !important;
    color: #D4AF37 !important;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.3);
}

.offcanvas-footer button:hover {
    background: #5D4037 !important;
    transform: translateY(-2px);
}

/* Background Color */
.offcanvas-body {
    background: #FAF7F0 !important;
}

.lang {
    font-size: 13px;
}

/* FULL WIDTH CLEAN MENU */
@media (max-width: 991px) {

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #3E2723, #2C1810);
        padding: 15px 0;
        z-index: 9;
    }

    .navbar-collapse ul {
        gap: 10px;
    }

    .navbar-collapse .nav-link {
        padding: 10px 0 !important;
        font-size: 14px;
    }

    /* LOGO FIX */
    .logo-center {
        position: static;
        transform: none;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }
}

/* DESKTOP SIDE SPACING (IMPORTANT) */
@media (min-width: 992px) {
    .custom-navbar .container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* ====================== HERO SECTION ====================== */
.hero {
    height: 100vh;
    min-height: 650px;
    background: url('../img/hero-image.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    font-size: 5.8rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.tagline {
    font-size: 2.3rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.description {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 35px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.btn-explore {
    background: var(--gold) !important;
    color: var(--dark-brown) !important;
    font-weight: 700;
    padding: 16px 48px;
    font-size: 1.2rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    transition: all 0.4s ease;
    z-index: 2;
}

.btn-explore:hover {
    background: #c19a2f !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

/* ==================== RESPONSIVE HERO ==================== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .tagline {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.8rem;
    }

    .tagline {
        font-size: 1.6rem;
    }

    .description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.4rem;
    }
}

/* ====================== HERO EXPLORE MENU BUTTON (Golden) ====================== */
.btn-explore {
    background: var(--gold) !important;
    color: var(--dark-brown);
    font-weight: 700;
    padding: 14px 40px;
    font-size: 1.1rem;
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
}

.btn-explore:hover {
    background: #c19a2f;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    color: var(--dark-brown);
}

/* Extra safety for all buttons */
.btn {
    transition: all 0.3s ease;
}

/* Make sure View All Products and Start Shopping remain dark */
.btn-shop,
.text-center .btn {
    background: #3E2723;
}

.btn-shop:hover,
.text-center .btn:hover {
    background: #5D4037;
}

/* ====================== FEATURED PRODUCTS ====================== */
.section-bg {
    background: linear-gradient(135deg, #F5E6D3 0%, #E6D5C3 100%);
    padding: 80px 0;
}

.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.18);
}

.product-img {
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .product-img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold);
    color: var(--dark-brown);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-title {
    font-size: 1.45rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
    line-height: 1.3;
}

.stars {
    color: var(--gold);
    font-size: 1.35rem;
    margin-bottom: 15px;
}

/* ==================== BUTTONS (Chhote aur Clean) ==================== */
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--dark-brown);
    font-weight: 600;
    padding: 10px 22px;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark-brown);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark-brown);
    font-weight: 700;
    padding: 10px 22px;
    font-size: 0.95rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-gold:hover {
    background: #c19a2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* View All Products Button */
.text-center .btn {
    padding: 14px 40px;
    font-size: 1.1rem;
    border-radius: 10px;
    background: #3E2723;
    color: white;
    border: none;
}

.text-center .btn:hover {
    background: #5D4037;
    transform: translateY(-3px);
}

/* ====================== TESTIMONIALS ====================== */
.testimonial-section {
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
    color: #F5E6D3;
    padding: 80px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.review-text {
    font-style: italic;
    line-height: 1.7;
    font-size: 1.12rem;
    margin-bottom: 20px;
}

.customer-name {
    color: var(--gold);
    font-weight: 700;
}

/* ====================== READY TO INDULGE (CTA) ====================== */
.indulge-section {
    background: linear-gradient(90deg, #D4AF37 0%, #B8942F 100%);
    color: #3E2723;
    padding: 90px 0;
}

.section-title2 {
    font-size: 3rem;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #5D4037;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.btn-shop {
    background: #3E2723;
    color: #F5E6D3;
    font-size: 1.15rem;
    padding: 14px 45px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.3);
    transition: all 0.4s ease;
}

.btn-shop:hover {
    background: #5D4037;
    transform: scale(1.06) translateY(-3px);
}

/* ====================== FOOTER ====================== */
.footer {
    background-color: #2C1810;
    color: #F5E6D3;
    padding-top: 80px;
    padding-bottom: 40px;
}

.text-gold {
    color: #D4AF37 !important;
}

.footer h3,
.footer h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #D4AF37;
}

.footer h3 {
    font-size: 2.2rem;
}

/* Social Icons */
.social-icon {
    width: 46px;
    height: 46px;
    background: #D4AF37;
    color: #3E2723;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #F5E6D3;
    transform: translateY(-4px);
}

.footer a {
    color: #F5E6D3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #D4AF37;
}

/* ====================== CONTACT SECTION ====================== */

.contact-section {
    background: var(--light-beige);
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: #3E2723;
    font-size: 2.8rem;
    font-weight: 700;
}

.form-input {
    border: 2px solid #E6D5C3;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.contact-form-box {
    background: white;
    border: 1px solid #E6D5C3;
    height: 100%;
}

.btn-gold {
    background: #D4AF37;
    color: #3E2723;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #c19a2f;
    transform: translateY(-3px);
}

.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.3s ease;
}

.contact-info {
    background: #ffffff !important;
    text-align: left;
    transition: all 0.3s ease;
    min-height: 160px;
}

.contact-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card-link:hover {
    color: inherit;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.09) !important;
}

.contact-info h6 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-info p {
    font-size: 0.95rem;
}

.visit-card {
    border-top: 5px solid #3E2723;
    padding-top: 25px;
}

/* ====================== SHOP / COLLECTION PAGE ====================== */

.shop-section {
    background: #F5E6D3 !important;
}

.collection-title {
    font-size: 60px;
    font-weight: bolder;
    color: #3E2723;
    font-family: serif;
}

.collection-subtitle {
    color: #5D4037;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

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

.product-image-wrapper {
    position: relative;
}

.product-img {
    height: 280px;
    object-fit: cover;
}

.new-arrival-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3E2723;
    color: #D4AF37;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #3E2723;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-info {
    padding: 24px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #3E2723;
    margin-bottom: 8px;
    line-height: 1.3;
}

.stars {
    color: #D4AF37;
    font-size: 1.4rem;
}

.product-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.view-details-btn {
    background: #D4AF37;
    color: #3E2723;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: #c19a2f;
    transform: translateY(-2px);
}

/* Category Buttons */
.category-btn {
    background: white;
    color: #3E2723;
    border: 2px solid #E6D5C3;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background: #D4AF37;
    color: #3E2723;
    border-color: #D4AF37;
}

/* ====================== INFO PAGE ====================== */
.info-page {
    background: linear-gradient(to bottom right, #F5E6D3, #E6D5C3);
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 100px;
}

.First-section {
    padding: 30px 80px !important;
}

.First-section h2 {
    font-size: 40px;
}

.First-section p {
    font-size: 16px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #F5E6D3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
}

/* Delivery Boxes */
.free-delivery-box {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    color: #155724;
    font-size: 12px;
}

.paid-delivery-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    font-size: 12px;
}

.border-gold {
    border-color: #D4AF37 !important;
}

.text-dark-brown {
    color: #3E2723 !important;
}

.text-gold {
    color: #D4AF37 !important;
}

.btn-dark-brown {
    background: #3E2723;
    color: #F5E6D3;
    border: none;
    font-weight: 700;
}

.btn-dark-brown:hover {
    background: #5D4037;
    transform: translateY(-3px);
}

/* ================= PRODUCT DETAIL (SCOPED) ================= */
.shop {
    margin-bottom: 70px !important;
    font-size: 14px;
}

.pd-section {
    background: linear-gradient(to bottom right, #F5E6D3, #E6D5C3);
}

.pd-card {
    background: #fff;
    border-radius: 20px;
    padding-bottom: 50px;
    border: 1px solid #D4AF37;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pd-back {
    color: #3E2723;
    text-decoration: none;
    font-weight: 500;
}

/* IMAGE */
.pd-img-box {
    position: relative;
}

.pd-img {
    width: 100%;
    border-radius: 15px;
    object-fit: contain;
}

.pd-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #3E2723;
    color: #D4AF37;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* TEXT */
.pd-title {
    font-size: 2.3rem;
    color: #3E2723;
}

.pd-subtitle {
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

/* PRICE */
.pd-price-wrap {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.pd-price {
    color: #D4AF37;
    font-size: 2rem;
    font-weight: bold;
}

.pd-old {
    text-decoration: line-through;
    color: #999;
}

/* DESC */
.pd-desc {
    margin-bottom: 30px;
    color: #555;
    font-size: 14px;
}

/* QTY */
.pd-qty {
    display: flex;
    align-items: center;
    border: 1px solid #D4AF37;
    border-radius: 8px;
    overflow: hidden;
}

.pd-qty button {
    background: #F5E6D3;
    border: none;
    padding: 10px 15px;
}

.pd-qty span {
    padding: 0 15px;
}

/* BUTTONS */
.pd-cart {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #3E2723;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

.pd-cart:hover {
    background: #D4AF37;
}

.pd-buy {
    background: #D4AF37;
    color: #3E2723;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
}

.pd-buy:hover {
    background: #c19a2f;
}

/* ================= CHECKOUT PAGE ================= */
.checkout-section {
    background: #f8f5f0;
}

.checkout-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.checkout-title {
    font-weight: 700;
    color: #3E2723;
}

.custom-input {
    border: 2px solid #E6D5C3;
    border-radius: 10px;
    padding: 14px 16px;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.order-summary {
    font-size: 0.95rem;
}

.checkout-btn {
    background: #D4AF37;
    color: #3E2723;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: #c19a2f;
    transform: translateY(-2px);
}