:root {
    --primary-gold: #B88E2F;
    --primary-bg: #FFF3E3;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* --- Navigation Bar Section --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    background-color: var(--white);
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; 
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-icons {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-icons a {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.nav-icons a img {
    width: 24px;
    height: 24px;
}

.nav-icons a:hover {
    transform: scale(1.05);
}

/* --- Hero Section --- */
.hero {
    background-image: url('../images/hero-bg.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 100px); 
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 4%;
    background-color: #f5f5f5; 
}


.hero-1 {
    background-image: url('../images/backbg.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 100px); 
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 4%;
    background-color: #f5f5f5; 
}
/* Card Section */
.hero-content {
    background-color: var(--primary-bg);
    padding: 60px 40px 60px 40px;
    max-width: 640px;
    border-radius: 10px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); 
    margin-right: 4%;
}

.hero-content .subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 45px;
}

/* Button Section */
.btn {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 22px 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: none;
}

.btn:hover {
    background-color: #9e7a28; 
}



/* ---Browse The Range Section --- */
.browse-range {
    padding: 60px 8%;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-light);
}


.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px; 
    margin: 0 auto; 
}

.card {
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.card img {
    width: 100%; 
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

/* ---Hover Effects --- */
.card:hover img {
    transform: translateY(-8px); 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); 
}

.card:hover h3 {
    color: var(--primary-gold); 
}

/* ---Our Products Section --- */
.our-products {
    padding: 60px 8%;
    background-color: #F4F5F7; 
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    max-width: 1200px; 
    margin: 0 auto 50px auto; 
}

.product-card {
    background-color: var(--white);
    position: relative;
    transition: box-shadow 0.3s ease;
}

/* Overall card hover */
.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    display: block;
}

/* Discount and New */
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.badge.discount { background-color: #E97171; }
.badge.new { background-color: #2EC1AC; }

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 58, 58, 0.72);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}


.product-card:hover .product-image-wrapper::before,
.product-card:hover .card-overlay {
    opacity: 1;
}

/* Overlay Elements */
.add-to-cart {
    background-color: var(--white);
    color: var(--primary-gold);
    border: none;
    padding: 12px 45px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.add-to-cart:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

.overlay-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; 
    width: 100%;
}

.overlay-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px; 
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px; 
    white-space: nowrap; 
    transition: color 0.2s ease;
}

.overlay-links a img {
    width: 60px; 
    height: 20px; 
    display: block;
    flex-shrink: 0; 
    object-fit: contain; 
}

.overlay-links a:hover {
    color: var(--primary-gold);
}


.product-info {
    padding: 20px 15px 30px 15px;
}

.product-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.product-info p {
    font-size: 16px;
    color: #898989;
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-price .current {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.product-price .old {
    font-size: 14px;
    color: #B0B0B0;
    text-decoration: line-through;
}

/* Show More Button */
.show-more-container {
    text-align: center;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 15px 70px;
    text-decoration: none;
    font-weight: 600;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}







/* --- Room Inspiration Section --- */
.room-inspiration {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 0; 
    max-width: 1200px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 1;
}
.room-inspiration::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50vw; 
    width: 200vw; 
    height: 100%;
    background-color: #FCF8F3;
    z-index: -1; 
}

/* Text Section */
.inspiration-text {
    flex: 0 0 400px; 
    margin-right: 40px; 
    padding-right: 0; 
}

.inspiration-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.inspiration-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Carousel Section */
.inspiration-carousel {
    display: flex;
    gap: 24px;
    align-items: center; 
    flex-wrap: nowrap; 
    position: relative;
    width: 100%;
}
.slide {
    flex: 0 0 auto; 
    position: relative;
}

.slide img {
    object-fit: cover;
    display: block;
}

/* Main Active Slide */
.main-slide {
    position: relative;
    margin-top: 95px;
}

.main-slide img {
    width: 404px;
    height: 582px;
    object-fit: cover;
}

/* The Info Box over the main slide */
.slide-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: rgba(255, 255, 255, 0.9); 
    padding: 32px 24px;
    min-width: 220px; 
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slide-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-light);
}

.slide-meta .line {
    width: 25px;
    height: 1px;
    background-color: var(--text-light);
}

.slide-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
}

/* The Gold Arrow Box */
.slide-arrow {
    position: absolute;
    bottom: 0;
    right: -48px;
    background-color: var(--primary-gold);
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease; 
}

.slide-arrow:hover {
    background-color: var(--primary-gold);
    opacity: 0.85; 
}

.slide-arrow img {
    width: 20px;
    height: 20px;
    transform: scale(1.5); 
    display: block;
}

/* Second Slides */
.side-slide img {
    width: 372px;
    height: 486px;
    object-fit: cover;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 29px; 
    left: 428px; 
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10; 
}

.dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #D8D8D8;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* Active Dot with Ring */
.dot.active {
    background-color: transparent;
    width: 27px;
    height: 27px;
    border: 1px solid var(--primary-gold);
}

.dot.active .dot-inner {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--primary-gold);
}

/* Next Button */
.next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    bottom: 260px; 
    left: 348px; 
}
.next-btn:hover {
    transform: scale(1.1);
}

.next-btn img {
    width: 24px;
    height: 24px;
    transform: scale(1.5); 
    display: block;
}




/* Share Setup Section */
.share-setup {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center; 
    overflow: hidden; 
}

.setup-text {
    margin-bottom: 40px;
}

.setup-text p {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.setup-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
}

.setup-gallery {
    width: 100%; 
    display: flex;
    justify-content: center;
}

.setup-gallery img {
    width: 100%;
    max-width: 1800px; 
    height: auto;
    object-fit: contain;
}




/* Footer Section */
.footer {
    background-color: var(--white);
    border-top: 1px solid #D9D9D9; 
    padding: 60px 8% 30px 8%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #D9D9D9; 
    margin-bottom: 30px;
}

.footer-col h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
}

.footer-col p {
    font-size: 16px;
    color: #9F9F9F;
    line-height: 1.5;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 500;
    color: #9F9F9F;
    margin-bottom: 40px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-col ul a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--primary-gold);
}

/* Newsletter Form */
.newsletter-col form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.newsletter-col input {
    border: none;
    border-bottom: 1px solid #000000;
    padding: 5px 0;
    font-size: 14px;
    color: #9F9F9F;
    outline: none;
    width: 200px;
    background: transparent;
}

.newsletter-col button {
    border: none;
    border-bottom: 1px solid #000000;
    background: transparent;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}


/* Copyright Bar */
.footer-bottom p {
    font-size: 16px;
    color: #000000;
}


/* Hamburger Menu */
.menu-bar {
    display: none; 
}

.menu-bar svg {
    width: 32px;
    height: 32px;
    color: var(--text-dark);
}

.hero-banner {
            background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../images/backbg.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            min-height: 315px; 
        }

.custom-pagination .page-link {
        background-color: #F9F1E7; /* Light beige */
        color: #000;
        border: none;
        border-radius: 10px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }
    
    .custom-pagination .page-link:hover {
        background-color: #e8e0d5;
    }

    .custom-pagination .page-item.active .page-link {
        background-color: #B88E2F; /* Furniro Gold */
        color: #fff;
    }

    .custom-pagination .page-next .page-link {
        width: 98px; /* Wider button for 'Next' */
        font-weight: 300;
    }       






.footer-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}
.footer-heading {
    color: #9F9F9F;
    font-weight: 500;
    margin-bottom: 2.5rem;
}
.newsletter-input {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding-left: 0;
    font-size: 0.9rem;
}
.newsletter-input:focus {
    box-shadow: none;
    border-bottom: 2px solid #000;
}
.newsletter-btn {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background: transparent;
    font-weight: 600;
    padding-right: 0;
    padding-left: 0;
    font-size: 0.9rem;
}

.custom-pagination .page-link {
    background-color: #F9F1E7;
    color: #000;
    border: none;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.custom-pagination .page-link:hover {
    background-color: #e8e0d5;
}

.custom-pagination .page-item.active .page-link {
    background-color: #B88E2F;
    color: #fff;
}

.custom-pagination .page-next .page-link {
    width: 98px;
    font-weight: 300;
}

/* Footer Links Styling */
.footer-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: #9F9F9F;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.newsletter-input {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding-left: 0;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    box-shadow: none;
    border-bottom: 2px solid #000;
}

.newsletter-btn {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background: transparent;
    font-weight: 600;
    padding-right: 0;
    padding-left: 0;
    font-size: 0.9rem;
}

.form-control:focus {
    box-shadow: none !important;
}

.nav-link:hover {
    color: #D4AF37 !important; 
}

.footer-links a:hover {
    color: #D4AF37 !important; 
}

.newsletter-btn {
    color: black !important;
}

.newsletter-btn:hover {
    color: #D4AF37 !important;
    border-bottom-color: #D4AF37 !important;
}



/* --- Shop Styles --- */
.product-image-container .product-overlay {
    background-color: rgba(58, 58, 58, 0.72);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}

.product-image-container:hover .product-overlay {
    opacity: 1;
}

.product-overlay button {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-overlay button:hover {
    background-color: #B88E2F !important;
    color: #FFF !important;
}

.product-overlay span {
    cursor: pointer;
    transition: color 0.2s ease;
}

.product-overlay span:hover {
    color: #B88E2F !important;
}
.product-card:hover img {
    transform: none !important;
}


 /* ===== SINGLE PRODUCT PAGE STYLES ===== */

        /* --- Breadcrumb Bar --- */
        .sp-breadcrumb-bar {
            background-color: #F9F1E7;
            padding: 18px 0;
        }
        .sp-breadcrumb-bar .breadcrumb {
            margin-bottom: 0;
        }
        .sp-breadcrumb-bar .breadcrumb-item a {
            color: #9F9F9F;
            text-decoration: none;
            font-size: 16px;
        }
        .sp-breadcrumb-bar .breadcrumb-item.active {
            color: #000;
            font-weight: 500;
            font-size: 16px;
        }
        .sp-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            color: #9F9F9F;
        }
        /* Pipe separator before last item */
        .sp-breadcrumb-bar .pipe-sep {
            color: #9F9F9F;
            margin: 0 8px;
        }

        /* --- Thumbnail Gallery --- */
        .thumb-gallery .thumb-img {
            width: 76px;
            height: 76px;
            object-fit: cover;
            border-radius: 8px;
            background-color: #F9F1E7;
            cursor: pointer;
            transition: opacity 0.2s;
        }
        .thumb-gallery .thumb-img:hover {
            opacity: 0.8;
        }
        .main-product-img {
            width: 100%;
            height: 430px;
            object-fit: cover;
            border-radius: 10px;
            background-color: #F9F1E7;
        }

        /* --- Product Info --- */
        .product-title {
            font-size: 42px;
            font-weight: 400;
            color: #000;
            margin-bottom: 8px;
        }
        .product-price {
            font-size: 24px;
            color: #9F9F9F;
            font-weight: 400;
            margin-bottom: 14px;
        }
        .star-review-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #D9D9D9;
        }
        .stars img {
            width: 20px;
            height: 20px;
        }
        .review-count {
            color: #9F9F9F;
            font-size: 13px;
            border-left: 1px solid #9F9F9F;
            padding-left: 12px;
        }
        .product-desc-text {
            font-size: 13px;
            color: #9F9F9F;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        /* --- Size Selector --- */
        .option-label {
            font-size: 14px;
            color: #9F9F9F;
            margin-bottom: 10px;
        }
        .size-btn {
            background-color: #F9F1E7;
            border: none;
            color: #000;
            font-size: 13px;
            font-weight: 500;
            width: 40px;
            height: 32px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.2s, color 0.2s;
        }
        .size-btn.active,
        .size-btn:hover {
            background-color: #B88E2F;
            color: #fff;
        }

        /* --- Color Selector --- */
        .color-dot {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.2s;
            display: inline-block;
        }
        .color-dot.active,
        .color-dot:hover {
            border-color: #000;
        }

        /* --- Quantity + Buttons Row --- */
        .qty-box {
            display: flex;
            align-items: center;
            border: 1px solid #9F9F9F;
            border-radius: 10px;
            overflow: hidden;
            height: 64px;
            width: 124px;
        }
        .qty-btn {
            background: transparent;
            border: none;
            font-size: 20px;
            padding: 0 14px;
            color: #000;
            cursor: pointer;
            line-height: 1;
        }
        .qty-input {
            border: none;
            width: 36px;
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            outline: none;
            background: transparent;
        }
        .btn-add-cart {
            background: transparent;
            border: 1px solid #000;
            border-radius: 15px;
            color: #000;
            font-size: 16px;
            font-weight: 500;
            padding: 0 36px;
            height: 64px;
            cursor: pointer;
            transition: background-color 0.2s, color 0.2s;
        }
        .btn-add-cart:hover {
            background-color: #B88E2F;
            border-color: #B88E2F;
            color: #fff;
        }
        .btn-compare {
            background: transparent;
            border: 1px solid #000;
            border-radius: 15px;
            color: #000;
            font-size: 16px;
            font-weight: 500;
            padding: 0 36px;
            height: 64px;
            cursor: pointer;
            transition: background-color 0.2s, color 0.2s;
        }
        .btn-compare:hover {
            background-color: #000;
            color: #fff;
        }

        /* --- Meta Info (SKU / Category / Tags / Share) --- */
        .product-meta {
            border-top: 1px solid #D9D9D9;
            padding-top: 24px;
            margin-top: 32px;
        }
        .meta-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 16px;
        }
        .meta-label {
            color: #9F9F9F;
            min-width: 90px;
        }
        .meta-value {
            color: #9F9F9F;
        }
        .share-icons a img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        /* --- Description Tabs --- */
        .desc-tabs {

            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 30px;
        }
        .desc-tab-btn {
            background: none;
            border: none;
            font-size: 24px;
            font-weight: 500;
            color: #9F9F9F;
            padding: 0 0 16px 0;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            transition: color 0.2s;
        }
        .desc-tab-btn.active {
            color: #000;
            border-bottom: 2px solid #000;
        }
        .desc-tab-btn:hover {
            color: #000;
        }
        .desc-body p {
            font-size: 16px;
            color: #9F9F9F;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 24px auto;
        }

        /* --- Description Showcase Images --- */
        .desc-img-row {
            display: flex;
            gap: 24px;
            margin-top: 40px;
        }
        .desc-img-box {
            flex: 1;
            background-color: #F9F1E7;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 348px;
        }
        .desc-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- Related Products --- */
        .related-section {
            padding: 60px 0 40px 0;
            text-align: center;
        }
        .related-title {
            font-size: 36px;
            font-weight: 700;
            color: #000;
            margin-bottom: 40px;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        .related-card {
            background-color: #F4F5F7;
            text-align: left;
            cursor: pointer;
            position: relative;
        }
        .related-card-img-wrap {
            position: relative;
            overflow: hidden;
        }
        .related-card-img-wrap img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }
        .related-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            z-index: 2;
        }
        .badge-discount { background-color: #E97171; }
        .badge-new { background-color: #2EC1AC; }

        .related-card-info {
            padding: 16px 16px 24px 16px;
        }
        .related-card-name {
            font-size: 22px;
            font-weight: 600;
            color: #000;
            margin-bottom: 4px;
        }
        .related-card-sub {
            font-size: 14px;
            color: #898989;
            margin-bottom: 8px;
        }
        .related-card-prices {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .price-current {
            font-size: 18px;
            font-weight: 600;
            color: #000;
        }
        .price-old {
            font-size: 14px;
            color: #B0B0B0;
            text-decoration: line-through;
        }

        .btn-show-more {
            background: transparent;
            border: 1px solid #B88E2F;
            color: #B88E2F;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 70px;
            cursor: pointer;
            transition: background-color 0.2s, color 0.2s;
        }
        .btn-show-more:hover {
            background-color: #B88E2F;
            color: #fff;
        }
a{
    text-decoration: none;
    color:black;
}

        /* ===== STATIC SHOPPING CART STYLES ONLY ===== */
        .shopping-cart-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5); 
            z-index: 999;
        }
        
        .shopping-cart-static {
            position: fixed;
            right: 0;
            top: 0;
            width: 415px;
            height: 100vh;
            background: white;
            z-index: 1000;
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .cart-item-img {
            width: 105px;
            height: 105px;
            object-fit: cover;
            border-radius: 10px;
        }

        .text-gold {
            color: #B88E2F !important;
        }

        .cart-btn {
            font-size: 13px;
            padding: 6px 22px;
            border-radius: 50px;
            border: 1px solid #000;
            background: transparent;
            color: #000;
            transition: 0.3s;
        }

        .cart-btn:hover {
            background: #000;
            color: #fff;
        }
   
        .bg-beige { background-color: #F9F1E7; }
        .text-gold { color: #B88E2F !important; }
        .bg-gold { background-color: #B88E2F !important; }
        .hover-gold:hover { color: #B88E2F !important; transition: 0.3s; }
        
        /* Table Layout */
        .compare-table-wrapper { overflow-x: auto; padding-top: 2rem; }
        .compare-table { width: 100%; min-width: 1000px; table-layout: fixed; border-collapse: collapse; }
        
        /* Spacing */
        .compare-table th { padding: 0 30px 40px 30px; vertical-align: top; border: none; }
        .compare-table td { padding: 15px 30px; vertical-align: top; border: none; }
        
        /* Flush Edges */
        .compare-table th:first-child, .compare-table td:first-child { padding-left: 0; }
        .compare-table th:last-child, .compare-table td:last-child { padding-right: 0; }
        
        /* Vertical Lines ONLY inside the Table Data (td) */
        .compare-table td:nth-child(1),
        .compare-table td:nth-child(2),
        .compare-table td:nth-child(3) {
            border-right: 1px solid #D9D9D9;
        }

        /* ===== NEW: Continuous Horizontal Line Fix ===== */
        .table-divider td {
            border-top: 1px solid #D9D9D9 !important;
            padding-top: 40px !important;
            padding-bottom: 25px !important;
        }
        
        /* Typography */
        .compare-section-title { font-size: 1.5rem; font-weight: 600; color: #000; margin: 0; }
        .compare-label { font-weight: 500; font-size: 1.05rem; color: #000; }
        .compare-value { font-size: 0.95rem; color: #333; line-height: 1.6; }

        /* Buttons */
        .btn-choose { background-color: #B88E2F; color: white; border-radius: 6px; padding: 12px 20px; font-size: 1rem; font-weight: 600; border: none; text-align: left; }
        .add-cart-btn { background-color: #B88E2F; color: white; border: none; padding: 12px 35px; font-weight: 500; font-size: 1rem; transition: 0.3s; }
        .add-cart-btn:hover { background-color: #9c7826; }


                .bg-beige { background-color: #F9F1E7; }
        .text-gold { color: #B88E2F !important; }
        .bg-gold { background-color: #B88E2F !important; }
        .hover-gold:hover { color: #B88E2F !important; border-color: #B88E2F !important; transition: 0.3s; }
        
        /* Contact Form Styling */
        .contact-label {
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 1rem;
            color: #000;
        }
        .contact-input {
            border: 1px solid #9F9F9F;
            border-radius: 10px;
            padding: 16px 20px;
            font-size: 0.95rem;
            color: #9F9F9F;
            box-shadow: none !important;
            width: 100%;
        }
        .contact-input:focus {
            border-color: #B88E2F;
        }
        .contact-textarea {
            min-height: 120px;
            resize: none;
        }
        .submit-btn {
            background-color: #B88E2F;
            color: #fff;
            border: none;
            border-radius: 5px;
            padding: 12px 60px;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background-color: #9c7826;
        }

        /* Info Block Styling */
        .info-title {
            font-weight: 600;
            font-size: 1.25rem;
            margin-bottom: 5px;
        }
        .info-text {
            color: #000;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        /* Exact Add to Cart Overlay Button */
.btn-overlay-cart {
    background-color: #FFFFFF;
    color: #B88E2F;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 0 !important; 
    width: 75%; 
    padding: 14px 0; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-overlay-cart:hover {
    background-color: #B88E2F;
    color: #FFFFFF;
}




/* ===== Index.html CSS Redesign ===== */

        .text-gold { color: #B88E2F !important; }
        .bg-gold { background-color: #B88E2F !important; }
        .hover-gold:hover { color: #B88E2F !important; transition: 0.3s; }
        .bg-beige { background-color: #F9F1E7; }
        
        /* Hero Section */
        .hero-section {
            background-image: url('../images/hero-bg.png');
            background-size: cover;
            background-position: center;
            min-height: calc(100vh - 100px);
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        .hero-card {
            background-color: #FFF3E3;
            border-radius: 10px;
            padding: 40px 40px 50px 40px;
            max-width: 600px;
        }

        /* Range Cards */
        .range-card img {
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }
        .range-card:hover img {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        }

        /* Product Cards (Reused from Shop) */
        .product-card {
    background-color: #F4F5F7 !important;
    transition: all 0.3s ease;
}

.product-image-container {
    height: 301px; 
    position: relative;
}

.product-image-container img {
    object-fit: cover;
}

/* Hover Overlay */
.product-overlay {
    background-color: rgba(58, 58, 58, 0.72);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}

.product-image-container:hover .product-overlay {
    opacity: 1;
}

.btn-overlay-cart {
    background-color: #FFFFFF;
    color: #B88E2F;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 40px;
    width: 202px;
    transition: all 0.3s ease;
}

.btn-overlay-cart:hover {
    background-color: #B88E2F !important;
    color: #FFFFFF !important;
}

/* Overlay Links (Share, Compare, Like) */
.overlay-action-link {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.overlay-action-link:hover {
    color: #B88E2F;
}

/* Badges (Discount/New) */
.product-badge {
    width: 48px;
    height: 48px;
    top: 20px !important;
    right: 24px !important;
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
}

/* Card Body Typography */
.card-body {
    padding: 16px 16px 30px 16px !important;
}

.product-title {
    color: #3A3A3A;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;

}

.product-subtitle {
    color: #898989;
    font-size: 16px;
    font-weight: 500;
    
}

.product-price {
    color: #3A3A3A;
    font-size: 20px;
    font-weight: 600;
    
}

.product-old-price {
    color: #B0B0B0;
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
}

        /* Inspiration Section */
        .inspiration-bg { background-color: #FCF8F3; overflow: hidden; }
        .insp-main-img { height: 550px; object-fit: cover; border-radius: 8px; }
        .insp-side-img { height: 450px; object-fit: cover; border-radius: 8px; }
        .insp-box { background: rgba(255,255,255,0.9); padding: 24px; min-width: 200px; bottom: 24px; left: 24px; }
        .insp-arrow { background: #B88E2F; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; position: absolute; bottom: 0; right: -48px; }

        /* General Buttons */
        .btn-show-more { border: 1px solid #B88E2F; color: #B88E2F; font-weight: 600; padding: 12px 70px; background: transparent; transition: 0.3s; }
        .btn-show-more:hover { background-color: #B88E2F; color: white; }

/* --- END --- */









/* ===== cart Styles ===== */
.bg-beige { background-color: #F9F1E7; }
        .text-gold { 
            color: #B88E2F !important; 
        }
        .bg-gold { 
            background-color: #B88E2F !important; 
        }
        .hover-gold:hover { 
            color: #B88E2F !important; 
            transition: 0.3s; 
        }
        
        /* Table overrides for perfectly clean layout */
        .cart-table { vertical-align: middle; }
        .cart-table thead th { 
            background-color: #F9F1E7; 
            border: none; padding: 16px 0; 
            font-weight: 500; 
            text-align: center; 
        }
        .cart-table thead th:first-child { 
            text-align: left; 
            padding-left: 120px;
         }
        .cart-table tbody td { 
            border: none; 
            padding: 30px 0; 
            text-align: center; 
            color: #9F9F9F; 
        }
        .cart-table tbody td:first-child { 
            text-align: left; 
        }
        
        .cart-qty-input { 
            width: 45px; 
            height: 45px; 
            border-radius: 5px; 
            border: 1px solid #9F9F9F;
             text-align: center; 
             outline: none; 
            }
        
        /* Totals Box */
        .cart-totals-box { 
            background-color: #F9F1E7; 
            padding: 40px 30px 60px 30px; 
            text-align: center; 
            border-radius: 4px; 
        }
        .checkout-btn {
             border: 1px solid #000; 
             border-radius: 12px; 
             background: transparent; 
             padding: 12px 45px; 
             font-size: 1.1rem; 
             transition: 0.3s; 
             color: #000; 
             text-decoration: none; 
             display: inline-block; 
            }
        .checkout-btn:hover { 
            background-color: #000; 
            color: #fff; 
        }
/* end */




/* ===== Checkout Styles ===== */
 .bg-beige { background-color: #F9F1E7; }
        .text-gold { 
            color: #B88E2F !important; 
        }
        .hover-gold:hover { 
            color: #B88E2F !important; 
            border-color: #B88E2F !important; 
            transition: 0.3s; 
        }
        
        /* Checkout Form Styling */
        .checkout-input {
            border: 1px solid #9F9F9F;
            border-radius: 10px;
            padding: 16px 20px;
            font-size: 0.95rem;
            color: #9F9F9F;
            box-shadow: none !important;
        }
        .checkout-input:focus {
            border-color: #B88E2F;
        }
        
        .checkout-label {
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        /* Perfectly Aligned Radio Buttons */
        .payment-radio {
            width: 14px;
            height: 14px;
            cursor: pointer;
        }
        .payment-radio:checked {
            background-color: #000;
            border-color: #000;
        }
        .payment-radio:focus {
            box-shadow: none;
            border-color: #000;
        }
        
        .place-order-btn {
            border: 1px solid #000;
            background: transparent;
            color: #000;
            border-radius: 15px;
            padding: 14px 0;
            font-size: 1.1rem;
            font-weight: 500;
            width: 60%;
            transition: all 0.3s ease;
        }
        .place-order-btn:hover {
            background-color: #000;
            color: #fff;
        }

/* end */
#offcanvasNavbar {
  width: 75%;      
  max-width: 75%;  
}
