:root {
    --luxury-black: #111111;
    --soft-black: #1c1c1c;
    --primary-gold: #c7a15a;
    --dark-gold: #b08d57;
    --light-gold: #e8d5aa;
    --cream: #f8f6f2;
    --white: #ffffff;
    --muted: #666666;
    --border: #e8e0d2;
    --card-shadow: 0 12px 32px rgba(0,0,0,0.08);
    --hover-shadow: 0 20px 42px rgba(0,0,0,0.12);
    --radius: 20px;
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--luxury-black);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #171717;
    line-height: 1.15;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #ece5d8;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo img {
    width: 52px;
    max-width: none;
}

.brand-text h2 {
    font-size: 22px;
    color: #152744;
    margin: 0;
    font-weight: 700;
}

.brand-text p {
    margin-top: 4px;
    font-size: 13px;
    color: var(--dark-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #111;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}




.btn-primary {
    background: transparent;
    color: white;
}
.btn-primary:hover {
    background: #b8955e;
    color: #fff;
}

.btn-secondary{
  background: transparent;
    color: white;
    border: 1px solid #b8955e;
    backdrop-filter: blur(3px);
}

.btn-outline {
    background: transparent;
    color: #2b140c;
    border: 1px solid #b8955e;
    backdrop-filter: blur(3px);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: #b8955e;
    color: #fff;
    border-color: var(--primary-gold);
}

.product-overlay .btn-outline {
    background: transparent;
    color: #2b140c;
    border: 1px solid #b8955e;}

.product-overlay .btn-outline:hover {
    border-color: var(--primary-gold);
    background: #b8955e;
    color: #fff;
}
.btn-full {
    width: 100%;
}



/* ===== UNIVERSAL HERO FIX ===== */



.hero img,
.page-hero img,
.page-hero2 img,
.products-hero img,
.hero-bg-image {
    transform: none !important;
    animation: none !important;
    transition: opacity 0.6s ease !important;
    will-change: auto !important;
}

.hero,
.page-hero,
.page-hero2,
.products-hero {
    background-attachment: scroll !important;
}



.hero,
.page-hero,
.page-hero2 {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* hero images */
.hero img,
.page-hero img,
.page-hero2 img,
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2;
}

/* text container */
.hero .container,
.page-hero .container,
.page-hero2 .container {
    position: relative;
    z-index: 3;
}

/* hero text */
.hero-content,
.page-hero-content {
    text-align: center;
    color: #fff;
}


/* title responsive */
.hero-title,
.page-hero-content h1 {
    font-size: clamp(36px, 6vw, 80px);
    line-height: 1.1;
}

/* subtitle */
.hero-title-sub,
.page-hero-content p {
    font-size: clamp(16px, 2vw, 24px);
}

/* mobile fix */
@media (max-width:768px){

.hero,
.page-hero,
.page-hero2{
    min-height:75vh;
}

.hero-title,
.page-hero-content h1{
    font-size:32px;
}

.hero-title-sub,
.page-hero-content p{
    font-size:16px;
}

}
/* =========================
   INNER PAGE HERO
=========================*/ 

.page-hero2,
.products-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

.page-hero2 img,
.products-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.page-hero::after,
.page-hero2::after,
.products-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
}

.page-hero .container,
.page-hero2 .container,
.products-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 62px;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 22px;
    color: #f6ead1;
    max-width: 760px;
    margin: 0 auto;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 950px;
    margin: 0 auto;
}

.hero .btn,
.hero .btn-secondary{
background: transparent;
    color: white;
border:none;
box-shadow:0 10px 25px rgba(199,161,90,0.4);
}
.hero .btn:hover{
  background: #b8955e;
    color: #fff;
}

@media (max-width:768px){

.hero h1{
font-size:34px;
line-height:1.2;
}

.hero-buttons{
margin-top:25px;
}

.hero-buttons .btn{
width:85%;
margin:10px auto;
display:block;
}
}

.product-overlay .btn-outline {
background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.95);
}

.product-overlay .btn-outline:hover {
background: #b8955e;
    color: #fff;
    border-color: #c7a15a;
}

@media (max-width: 768px) {
    .home-products-grid {
        grid-template-columns: 1fr;
    }
}
.contact-card i,
.feature-card i,
.process-step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3efe9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

/* 1) Cards ko softer premium shadow */
.product-card,
.contact-card,
.material-card,
.value-card,
.faq-item,
.timeline-item,
.contact-form-container,
.map-placeholder,
.stat-item {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover,
.contact-card:hover,
.material-card:hover,
.value-card:hover,
.faq-item:hover,
.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
}

/* 2) Headings ko thoda refined spacing */
.section-title,
.product-info h3,
.contact-card h3,
.material-card h3,
.value-card h3,
.timeline-content h3 {
    letter-spacing: 0.2px;
}

/* 3) Paragraph readability better */
.product-info p,
.contact-card p,
.material-card p,
.value-card p,
.timeline-content p,
.intro-text,
.story-text p,
.form-content p {
    color: #555;
    line-height: 1.8;
}

/* 4) Product images more premium */
.product-image {
    background: #f3efe8;
}

.product-image img {
    transition: transform 0.45s ease;
}

/* 5) Buttons thode richer */
.btn,
.luxury-btn {
    box-shadow: 0 8px 18px rgba(199, 161, 90, 0.18);
}

.btn:hover,
.luxury-btn:hover {
    transform: translateY(-1px);
}

/* 6) Footer thoda more elegant */
.footer {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-social a {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.contact-card,
.material-card,
.value-card,
.timeline-item {
    text-align: center;
}

.contact-icon,
.material-icon,
.value-icon,
.timeline-number {
    margin-left: auto;
    margin-right: auto;
}

.contact-card p,
.material-card p,
.value-card p,
.timeline-content p {
    margin-left: auto;
    margin-right: auto;
}



/* =========================
   SECTION TITLES
========================= */

.section-header {
    text-align: center;
    margin-bottom: 54px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 48px;
}



.brand-intro,
.materials-section,
.featured-products,
.brand-story,
.values-section,
.process-section,
.products-section,
.contact-info-section,
.contact-form-section,
.map-section,
.faq-section {
    padding: 90px 0;
}

.brand-intro,
.featured-products,
.values-section,
.products-section,
.contact-form-section,
.faq-section {
    background: var(--cream);
}

.materials-section,
.brand-story,
.process-section,
.contact-info-section,
.map-section {
    background: #fffdf9;
}

.intro-grid,
.contact-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.intro-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.stat-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--muted);
}

.intro-text,
.form-content p {
    font-size: 18px;
    color: #444;
}


.intro-image img{
    border-radius: 22px;
    box-shadow: var(--card-shadow);
    width: 100%;
    height: 520px;
    object-fit: cover;
}


/* INFRASTRUCTURE VIDEO SECTION */
.infrastructure-section {
    padding: 100px 0;
    background: #f8f5ef;
}

.infra-intro {
    max-width: 900px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #5b5b5b;
}

.infra-video-wrapper {
    max-width: 1100px;
    margin: 50px auto 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    background: #000;
}

.infra-video-wrapper video {
    width: 100%;
    display: block;
    height: auto;
    max-height: 620px;
    object-fit: cover;
}


@media (max-width: 768px) {
    .story-slides img {
        height: 320px;
    }

    .infrastructure-section {
        padding: 70px 0;
    }

    .infra-video-wrapper {
        border-radius: 18px;
        margin-top: 30px;
    }

    .story-text p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .infra-intro {
        font-size: 15px;
        line-height: 1.7;
    }
}


.brand-story {
    padding: 90px 0;
    background: #f8f5ef;
}


/* Infrastructure video */
.infrastructure-section {
    padding: 100px 0;
    background: #fff;
}

.infra-intro {
    max-width: 900px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #5b5b5b;
}

.infra-video-wrapper {
    max-width: 1150px;
    margin: 45px auto 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    background: #000;
}

.infra-video-wrapper video {
    width: 100%;
    display: block;
    height: auto;
    max-height: 640px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1100px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .story-slider {
        max-width: 540px;
    }

    .story-slides img {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .story-image {
        justify-content: flex-start;
    }

    .story-slider {
        max-width: 100%;
    }

    .story-slides img {
        height: 420px;
    }

    .story-text p {
        font-size: 17px;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .brand-story {
        padding: 70px 0;
    }

    .story-slides img {
        height: 300px;
    }

    .story-text p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 18px;
    }

    .infra-intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .infrastructure-section {
        padding: 70px 0;
    }
}
/* =========================
   MATERIAL / VALUE CARDS
========================= */

.materials-grid,
.values-grid,
.contact-info-grid,
.faq-grid {
    display: grid;
    gap: 28px;
}

.materials-grid,
.values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.material-card,
.value-card,
.contact-card,
.faq-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: 0.3s ease;
}

.material-card:hover,
.value-card:hover,
.contact-card:hover,
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
}

.material-icon,
.value-icon,
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(199, 161, 90, 0.14);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 22px;
}

.material-card h3,
.value-card h3 {
    font-size: 34px;
    margin-bottom: 12px;
}

.material-card p,
.value-card p,
.contact-card p,
.contact-card small {
    color: #555;
}

/* =========================
   FEATURED / PRODUCTS GRID
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: 0.3s ease;
    height: 100%;
}

.product-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f5f1e8;
}

.product-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 22px 22px 26px;
    text-align: center;
}

.product-info h3 {
    font-size: 36px;
    margin-bottom: 8px;
}

.product-info p {
    color: #666;
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.section-cta{
    text-align: center;
    margin-top: 36px;
}

.cta-buttons {
    text-align: center;
    margin-top: 36px;
   color:white;

}


.custom-furniture-cta,
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #1c1c1c, #2a241c);
    color: #fff;
    text-align: center;
}

.custom-furniture-cta h2,
.cta-content h2 {
    color: #fff;
    font-size: 46px;
    margin-bottom: 16px;
}

.custom-furniture-cta p,
.cta-content p {
    color: #f0e8d6;
    max-width: 760px;
    margin: 0 auto 24px;
}
.products-section-header{
    padding:70px 20px 30px;
    text-align:center;
}

.section-subtitle{
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#c7a15a;
    display:block;
    margin-bottom:12px;
}

.section-title{
    font-family:'Playfair Display',serif;
    font-size:42px;
    margin-bottom:10px;
    color:#111;
}

.section-description{
    color:#666;
    max-width:520px;
    margin:0 auto;
    line-height:1.7;
}

.products-grid{
    margin-top:40px;
}


.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 26px;
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* =========================
   ABOUT TIMELINE
========================= */

.process-timeline {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 22px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--card-shadow);
}

.timeline-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(199, 161, 90, 0.14);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.timeline-content h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-card .btn {
    margin-top: 12px;
    min-width: auto;
    padding: 12px 18px;
}

.form-features {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-gold);
}

.contact-form-container {
    background: #fff;
    border-radius: 22px;
    padding: 34px;
    box-shadow: var(--card-shadow);
}

.form-message {
    display: none;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(34,197,94,0.12);
    color: #166534;
    font-weight: 500;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #232323;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd5c9;
    background: #fcfbf8;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: #222;
    outline: none;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(199,161,90,0.10);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.checkbox-label input {
    width: auto;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--card-shadow);
}

.map-content {
    text-align: center;
}

.map-content i {
    font-size: 34px;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.map-content h3 {
    font-size: 34px;
    margin-bottom: 10px;
}

.map-content p {
    color: #555;
    margin-bottom: 10px;
}


.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 24px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #171717;
}

.faq-question i {
    color: #c7a15a;
    font-size: 20px;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    margin-top: 16px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h3 {
        font-size: 20px;
    }
}
/* =========================
   FOOTER
========================= */

.footer {
    background: #111111;
    color: #ddd;
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 36px;
    padding-bottom: 44px;
}

.footer h2,
.footer h3 {
    color: #fff;
}

.footer-brand h2 {
    font-size: 34px;
    margin-bottom: 14px;
}

.footer-brand p {
    color: #bfbfbf;
    max-width: 420px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.footer-section ul {
    display: grid;
    gap: 10px;
}

.footer-section a {
    color: #cfcfcf;
    transition: 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: #111;
}

.contact-info {
    display: grid;
    gap: 12px;
}

.contact-info p {
    display: flex;
    gap: 10px;
    color: #d0d0d0;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary-gold);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 18px 0 24px;
    color: #bdbdbd;
}

/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary-gold);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* =========================
   PRODUCTS PAGE SPECIAL
========================= */

.no-products {
    text-align: center;
    color: #666;
    font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .materials-grid,
    .values-grid,
    .products-grid,
    .contact-info-grid,
    .faq-grid,
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-grid,
    .story-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 14px 16px;
    }

    .logo img {
        width: 44px;
    }

    .brand-text h2 {
        font-size: 16px;
    }

    .brand-text p {
        font-size: 11px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 18px 14px;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-title-main {
        font-size: 44px;
        letter-spacing: 1px;
    }

    .hero-title-sub {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .hero-cta .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .page-hero,
    .page-hero2,
    .products-hero {
        min-height: 58vh;
    }

    .page-hero-content h1 {
        font-size: 38px;
    }

    .page-hero-content p {
        font-size: 17px;
    }

    .section-title {
        font-size: 34px;
    }

    .materials-grid,
    .values-grid,
    .products-grid,
    .contact-info-grid,
    .faq-grid,
    .footer-content,
    .form-row {
        grid-template-columns: 1fr;
    }

    .intro-image img,
    .story-image img {
        height: 320px;
    }

    .product-image img {
        height: 280px;
    }

    .material-card h3,
    .value-card h3,
    .product-info h3,
    .contact-card h3,
    .faq-question h3,
    .timeline-content h3 {
        font-size: 28px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-number {
        width: 56px;
        height: 56px;
    }

    .contact-form-container,
    .map-placeholder {
        padding: 22px;
    }

    .custom-furniture-cta h2,
    .cta-content h2 {
        font-size: 34px;
    }

    .footer {
        padding-top: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 72vh;
    }

    .hero-title-main {
        font-size: 34px;
    }

    .hero-title-sub {
        font-size: 22px;
    }

    .page-hero-content h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        min-width: auto;
        width: 100%;
    }

    .material-card,
    .value-card,
    .contact-card,
    .faq-item,
    .product-info,
    .stat-item {
        padding: 22px;
    }

    .product-image img {
        height: 240px;
    }

    .footer-brand h2 {
        font-size: 28px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}








/* ==================================================
   PRODUCTS PAGE
================================================== */

.products-section {
    padding: 80px 0;
    background: #f8f7f5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.product-item {
    width: 100%;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.product-image {
    display: block;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: #ece8e1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 22px 22px 24px;
    text-align: center;
}

.product-info h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #1f1f1f;
    margin-bottom: 18px;
    font-family: serif;
}

.product-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.no-products {
    font-size: 18px;
    color: #666;
}

.product-detail-section {
    padding: 50px 0 70px;
    background: #f8f7f5;
    overflow-x: hidden;
}

.detail-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.image-section {
    min-width: 0;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #ece8e1;
}

.main-product-image {
    width: 100%;
    height: 560px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f3eee7;
}

@media (max-width: 768px) {
    .main-product-image {
        height: 320px;
        object-fit: contain;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .main-product-image {
        height: 260px;
    }
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow.prev {
    left: 14px;
}

.slider-arrow.next {
    right: 14px;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.85;
    border: 2px solid transparent;
    transition: 0.3s ease;
    background: #f3eee7;
}

.thumb.active,
.thumb:hover {
    opacity: 1;
    border-color: #b8955e;
}

.info-section {
    min-width: 0;
}

.info-section h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: serif;
    color: #1d1d1d;
    word-break: normal;
    overflow-wrap: break-word;
}

.product-description {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 28px;
}

.product-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    min-width: 180px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s ease;
    background: transparent;
    color: #2b140c;
    border: 1px solid #b8955e;
}
}


.luxury-btn:hover {
    background: #2b140c;
}


@media (max-width: 991px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .info-section h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .main-product-image {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 30px 0 50px;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .main-product-image {
        height: 280px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .thumbnail-row {
        gap: 8px;
        margin-top: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .thumbnail-row::-webkit-scrollbar {
        height: 4px;
    }

    .thumb {
        width: 60px;
        height: 60px;
        flex: 0 0 auto;
    }

    .info-section h1 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .product-description {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .luxury-btn {
        width: 100%;
        min-width: auto;
        padding: 14px 18px;
    }
}

@media (max-width: 480px) {
    .main-product-image {
        height: 240px;
    }

    .info-section h1 {
        font-size: 24px;
    }

    .product-description {
        font-size: 14px;
    }
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        overflow: hidden;
        border-radius: 16px;
    }

    .product-image {
        display: block;
        width: 100%;
        height: 240px;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* HOME PAGE FEATURED PRODUCTS - FORCE 2 PER ROW */
.home-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.home-products-grid .product-card {
    width: 100% !important;
}

@media (max-width: 768px) {
    .home-products-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Safe premium hover polish */
.product-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.10);
}

.product-image img {
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}




/* =========================================
   DARBAR LIVING - PREMIUM OVERRIDE CSS
   Paste this at the END of your style.css
========================================= */

:root{
    --luxury-black: #0f0f10;
    --soft-black: #171717;
    --charcoal: #1f1b18;
    --primary-gold: #c7a15a;
    --gold-deep: #a77f3f;
    --gold-soft: #e5d2a5;
    --cream: #f6f1e8;
    --ivory: #fbf8f3;
    --white: #ffffff;
    --text-dark: #181818;
    --text-soft: #5f5a54;
    --line: rgba(199,161,90,0.18);
    --card-shadow: 0 14px 40px rgba(0,0,0,0.08);
    --hover-shadow: 0 22px 50px rgba(0,0,0,0.14);
    --radius-lg: 24px;
    --radius-md: 16px;
}

/* ---------- GLOBAL POLISH ---------- */
body{
    background: linear-gradient(to bottom, #fbf8f3 0%, #f6f1e8 100%);
    color: var(--text-dark);
}

h1,h2,h3,h4{
    letter-spacing: 0.2px;
}

section{
    overflow: hidden;
}

.section-header{
    margin-bottom: 60px;
}

.section-subtitle{
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-weight: 700;
}

.section-title{
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.12;
    color: #111;
    margin-bottom: 12px;
}

.section-description{
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.8;
}



/* optional stats style if added under hero later */
.hero-stats{
    margin-top: 42px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-stat{
    min-width: 180px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
}

.hero-stat strong{
    display:block;
    font-size: 28px;
    color: #f2d59a;
    font-family: 'Playfair Display', serif;
}

.hero-stat span{
    display:block;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-top: 4px;
}

/* ---------- INNER HERO ---------- */
.page-hero::after,
.page-hero2::after,
.products-hero::after{
    background:
        linear-gradient(180deg, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0.48) 100%);
}

.page-hero-content h1{
    font-size: clamp(34px, 6vw, 68px);
    letter-spacing: 1px;
}

.page-hero-content p{
    font-size: clamp(16px, 2vw, 22px);
    color: #f1dfb5;
}

/* ---------- BRAND / STORY / PROCESS SECTIONS ---------- */
.brand-intro,
.materials-section,
.featured-products,
.brand-story,
.values-section,
.process-section,
.products-section,
.contact-info-section,
.contact-form-section,
.map-section,
.faq-section{
    padding: 110px 0;
}

.brand-intro,
.featured-products,
.values-section,
.products-section,
.contact-form-section,
.faq-section{
    background: #fbf8f3;
}

.materials-section,
.brand-story,
.process-section,
.contact-info-section,
.map-section{
    background: #f6f1e8;
}

.stat-item,
.material-card,
.value-card,
.contact-card,
.faq-item,
.timeline-item,
.product-card,
.contact-form-container,
.map-placeholder{
    border: 1px solid rgba(199,161,90,0.10);
    box-shadow: var(--card-shadow);
}

/* ---------- FIX TYPO BROKEN IMAGE BLOCK ---------- */
.intro-image img{
    border-radius: 24px;
    box-shadow: var(--hover-shadow);
    width: 100%;
    height: 560px;
    object-fit: cover;
}


/* ---------- MATERIAL / VALUE CARDS ---------- */
.material-card,
.value-card,
.contact-card{
    background: rgba(255,255,255,0.9);
    border-radius: 22px;
    padding: 34px 30px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.material-card:hover,
.value-card:hover,
.contact-card:hover{
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(199,161,90,0.24);
}

.material-icon,
.value-icon,
.contact-icon{
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(199,161,90,0.16), rgba(199,161,90,0.06));
    border: 1px solid rgba(199,161,90,0.20);
}

.material-card h3,
.value-card h3,
.contact-card h3{
    font-size: 28px;
    margin-bottom: 12px;
}

.material-card p,
.value-card p,
.contact-card p{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-soft);
}

/* ---------- PRODUCTS GRID ---------- */
.products-section{
    background: linear-gradient(to bottom, #fbf8f3 0%, #f5efe5 100%);
}

.products-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card{
    background: #fffdfa;
    border-radius: 24px;
    overflow: hidden;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.product-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 26px 48px rgba(0,0,0,0.14);
    border-color: rgba(199,161,90,0.25);
}

.product-image{
    position: relative;
    background: #efe8dd;
    height: 360px;
}

.product-image::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgba(0,0,0,0.08), transparent 40%);
    pointer-events:none;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.product-card:hover .product-image img{
    transform: scale(1.06);
}

.product-overlay{
    background: linear-gradient(to top, rgba(15,15,16,0.50), rgba(15,15,16,0.15));
    opacity: 0;
    transition: .3s ease;
}

.product-info{
    padding: 24px 22px 28px;
    text-align: center;
}

.product-info h3{
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #151515;
}

.product-info p{
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.product-actions{
    gap: 10px;
}

/* ---------- HOME FEATURED PRODUCTS ---------- */
.home-products-grid{
    max-width: 1100px !important;
    gap: 30px !important;
}

.home-products-grid .product-image{
    height: 400px;
}

/* ---------- PRODUCT DETAIL PAGE ---------- */
.product-detail-section{
    padding: 70px 0 90px;
    background: linear-gradient(to bottom, #fbf8f3 0%, #f4ede2 100%);
}

.detail-grid{
    max-width: 1320px;
    gap: 54px;
    align-items: start;
}

.main-image-wrapper{
    border-radius: 26px;
    background: #efe8dd;
    border: 1px solid rgba(199,161,90,0.10);
    box-shadow: var(--card-shadow);
}

.main-product-image{
    height: 620px;
    object-fit: contain;
    background: #f7f2ea;
}

.thumbnail-row{
    gap: 12px;
    margin-top: 18px;
}

.thumb{
    width: 74px;
    height: 74px;
    border-radius: 14px;
    border: 2px solid transparent;
}

.thumb.active,
.thumb:hover{
    border-color: var(--primary-gold);
}

.info-section h1{
    font-size: clamp(30px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 18px;
}

.product-description{
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 28px;
}


/* optional table/cards for details if later added in HTML */
.product-specs{
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
    margin-top: 26px;
}

.product-spec{
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(199,161,90,0.12);
    border-radius: 16px;
    padding: 16px 18px;
}

.product-spec span{
    display:block;
    font-size:13px;
    color: #8a7b63;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-spec strong{
    color:#171717;
    font-size:16px;
    font-weight:600;
}

/* ---------- CTA / CUSTOM SECTION ---------- */
.custom-furniture-cta,
.cta-section{
    position: relative;
    background:
        linear-gradient(135deg, rgba(15,15,16,0.96), rgba(34,27,20,0.96)),
        url('/static/images/wood-texture.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 110px 0;
}

.custom-furniture-cta h2,
.cta-content h2{
    color: #fff;
    font-size: clamp(30px, 4vw, 54px);
}

.custom-furniture-cta p,
.cta-content p{
    color: rgba(255,245,225,0.88);
    font-size: 17px;
    line-height: 1.9;
}


/* ---------- CONTACT FORM ---------- */
.contact-form-container{
    border-radius: 24px;
    padding: 38px;
    background: rgba(255,255,255,0.92);
}

.form-group label{
    font-size: 14px;
    letter-spacing: .2px;
}

.form-group input,
.form-group select,
.form-group textarea{
    background: #fffdfa;
    border: 1px solid rgba(160,141,111,0.22);
    border-radius: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 5px rgba(199,161,90,0.10);
}

/* ---------- FAQ ---------- */
.faq-item{
    border-radius: 22px;
    background: rgba(255,255,255,0.92);
}

.faq-question h3{
    font-size: 22px;
}

/* ---------- FOOTER ---------- */
.footer{
    background:
        linear-gradient(180deg, #121212 0%, #0b0b0b 100%);
    border-top: 1px solid rgba(199,161,90,0.18);
    padding-top: 80px;
}

.footer-brand h2{
    font-size: 36px;
    color: #fff;
}

.footer-brand p,
.footer-section a,
.contact-info p{
    color: rgba(255,255,255,0.72);
}

.footer-section a:hover{
    color: #f0d493;
}

.footer-social a{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(199,161,90,0.16);
}

.footer-social a:hover{
    background: var(--primary-gold);
    color: #111;
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.56);
}

/* ---------- STICKY WHATSAPP / QUICK CTA ---------- */
.floating-cta{
    position: fixed;
    left: 20px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-cta a{
    min-width: 170px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    border: 1px solid rgba(199,161,90,0.26);
    box-shadow: 0 16px 28px rgba(0,0,0,0.18);
    font-size: 14px;
    font-weight: 600;
}

.floating-cta a:hover{
    background: var(--primary-gold);
    color: #111;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px){
    .products-grid{
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .detail-grid{
        grid-template-columns: 1fr;
    }

    .main-product-image{
        height: 500px;
    }
}

@media (max-width: 768px){
    .brand-intro,
    .materials-section,
    .featured-products,
    .brand-story,
    .values-section,
    .process-section,
    .products-section,
    .contact-info-section,
    .contact-form-section,
    .map-section,
    .faq-section,
    .custom-furniture-cta,
    .cta-section{
        padding: 72px 0;
    }

    .hero{
        min-height: 82vh;
    }

    .hero-title-main{
        font-size: 38px;
        letter-spacing: 1px;
    }

    .hero-title-sub{
        font-size: 16px;
        line-height: 1.7;
    }


    .products-grid,
    .home-products-grid{
        grid-template-columns: 1fr !important;
    }

    .product-image,
    .home-products-grid .product-image{
        height: 280px;
    }

    .intro-image img{
        height: 320px;
    }

    .story-slider{
        height: 320px;
    }

    .story-slides img{
        height: 320px;
    }

    .main-product-image{
        height: 320px;
    }

    .product-specs{
        grid-template-columns: 1fr;
    }

    .floating-cta{
        left: 14px;
        right: 14px;
        bottom: 16px;
    }

    .floating-cta a{
        min-width: auto;
        text-align: center;
    }
}

@media (max-width: 480px){
    .section-title{
        font-size: 28px;
    }

    .product-info{
        padding: 20px 18px 24px;
    }

    .product-info h3{
        font-size: 22px;
    }

    .main-product-image{
        height: 260px;
    }

    .thumb{
        width: 62px;
        height: 62px;
    }
}


}



/* ===== exact premium upgrades ===== */

.hero-text{
    max-width: 760px;
    margin: 18px auto 28px;
    color: #f3ead6;
    font-size: 18px;
    line-height: 1.9;
}

.nav-cta{
    background: var(--primary-gold);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(199,161,90,0.25);
}

.nav-cta:hover{
    background: #b8934f;
    color: #fff !important;
}

.whatsapp-float{
    position: fixed;
    left: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
    z-index: 999;
    transition: transform 0.25s ease;
}

.whatsapp-float:hover{
    transform: translateY(-3px);
}

.product-short-line{
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-badge{
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(199,161,90,0.12);
    color: #8f6d31;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.product-tagline{
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-highlights{
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.highlight-item{
    display: flex;
    gap: 12px;
    align-items: center;
    color: #333;
}

.highlight-item i{
    color: var(--primary-gold);
}

.product-specs{
    background: #fff;
    border: 1px solid #eee1cc;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 26px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.product-specs h3{
    font-size: 28px;
    margin-bottom: 14px;
}

.product-specs ul{
    display: grid;
    gap: 10px;
    padding-left: 18px;
    list-style: disc;
}

.luxury-btn-outline{
    background: transparent;
    color: #2b140c;
    border: 1px solid #b8955e;
}

.luxury-btn-outline:hover{
    background: #b8955e;
    color: #fff;
}

.product-detail-extra,
.product-assurance-strip,
.home-categories,
.why-darbar,
.home-bottom-cta{
padding: 80px 0;
}


.assurance-grid,
.trust-grid,
.why-grid,
.extra-grid,
.category-grid{
    display: grid;
    gap: 24px;
}

.assurance-grid,
.trust-grid,
.why-grid,
.extra-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.assurance-grid > div,
.trust-grid > div,
.why-card,
.extra-card{
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.assurance-grid strong,
.trust-grid strong{
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: #171717;
    font-family: 'Playfair Display', serif;
}

.assurance-grid span,
.trust-grid span{
    color: #666;
    line-height: 1.7;
}

.why-card i{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(199,161,90,0.12);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
}

.why-card h3,
.extra-card h3{
    font-size: 28px;
    margin-bottom: 12px;
}

.why-card p,
.extra-card p{
    color: #555;
    line-height: 1.85;
}

.category-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    min-height: 380px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

.category-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-card:hover img{
    transform: scale(1.05);
}

.category-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.10));
    display: flex;
    align-items: end;
    padding: 26px;
}

.category-overlay h3{
    color: #fff;
    font-size: 34px;
}

.contact-whatsapp-btn{
    margin-top: 18px;
}

@media (max-width: 991px){
    .assurance-grid,
    .trust-grid,
    .why-grid,
    .extra-grid,
    .category-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px){
    .whatsapp-float{
        left: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .hero-text{
        font-size: 15px;
        line-height: 1.8;
    }

    .product-specs h3,
    .why-card h3,
    .extra-card h3{
        font-size: 24px;
    }
}

.about-legacy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 8%;
    background: #f5f1eb;
}

.about-left {
    width: 46%;
}

.about-left h2 {
    font-size: 72px;
    line-height: 1.02;
    margin-bottom: 28px;
    color: #111;
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.about-left p {
    font-size: 21px;
    line-height: 1.8;
    color: #1e1e1e;
    margin-bottom: 24px;
}

.about-right {
    width: 54%;
}

.about-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #e9e3d8;
}

.about-slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.about-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.about-slide img {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
    border-radius: 22px;
}

.about-prev,
.about-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s ease;
}

.about-prev:hover,
.about-next:hover {
    background: rgba(0, 0, 0, 0.75);
}

.about-prev {
    left: 16px;
}

.about-next {
    right: 16px;
}

.about-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.about-dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
}

.about-dots button.active {
    background: #111;
}

@media (max-width: 991px) {
    .about-legacy {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left h2 {
        font-size: 42px;
        line-height: 1.1;
    }

    .about-left p {
        font-size: 18px;
        line-height: 1.7;
    }

    .about-slide img {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .about-slide img {
        height: 300px;
    }

    .about-prev,
    .about-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

    max-width: 1100px;
}

/* Custom CTA Section */
.custom-cta {
    position: relative;
    padding: 120px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url("/static/images/cta-bg.jpg") center center/cover no-repeat;
}

.custom-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.custom-cta .container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.custom-cta h2 {
    font-size: clamp(2rem, 5vw, 4.8rem);
    line-height: 1.1;
    color: #f8f4ee;
    margin-bottom: 20px;
    font-weight: 700;
}

.custom-cta p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    max-width: 780px;
    margin: 0 auto 35px;
}

.custom-cta .cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.custom-cta .btn {
    min-width: 220px;
    padding: 16px 30px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-cta .btn-primary {
    background: #c9a04d;
    color: #fff;
    border: none;
}

.custom-cta .btn-primary:hover {
    transform: translateY(-2px);
}

.custom-cta .btn-secondary {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}

.custom-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.22);
}

@media (max-width: 768px) {
    .custom-cta {
        min-height: auto;
        padding: 80px 18px;
    }

    .custom-cta h2 {
        font-size: 2.2rem;
    }

    .custom-cta p {
        font-size: 1rem;
    }

    .custom-cta .btn {
        width: 100%;
        min-width: unset;
    }

    .custom-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* HERO SECTION */

.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */

    text-align: center;
    padding: 0 20px;
}

/* Background */

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Slider images */

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    /* FULL IMAGE SHOW */
    object-fit: contain;

    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

/* Overlay */

.hero-overlay{
position:absolute;
inset:0;
background: linear-gradient(
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.25)
);
}
/* Text */

.hero-content {
    max-width: 900px;
    margin: auto;
}
/* Title */

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #e7c47a;
    margin-bottom: 15px;
}

/* Sub heading */

.hero h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 20px;
}

/* Paragraph */

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: #c9a04d;
    color: white;
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}
@media (max-width:768px){

.hero{
    min-height:90vh;
    padding:40px 15px;
}

.hero-bg-image{
    object-fit:contain;
}

.hero h1{
    font-size:2.2rem;
}

.hero h2{
    font-size:1.2rem;
}

.hero p{
    font-size:0.95rem;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.hero-buttons a{
    width:200px;
}

}
@media (max-width:768px){

.hero{
    min-height:90vh;
    padding:40px 20px;
}

.hero-content{
    text-align:center;
}

}
.founder-story {
    padding: 90px 0;
    background: #fffdf9;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}

.founder-content p {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.founder-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-image img {
        height: 360px;
    }
}
.product-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

.trust-box {
    padding: 14px 16px;
    border: 1px solid #e6ddcf;
    border-radius: 12px;
    background: #fcfaf6;
    color: #333;
    font-weight: 500;
}

.trust-strip {
    padding: 26px 0;
    background: #111;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-item {
    text-align: center;
    padding: 14px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
}

.trust-item strong {
    display: block;
    font-size: 18px;
    color: #d4af6a;
    margin-bottom: 6px;
}

.trust-item span {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}


.seo-intro {
    padding: 50px 0;
    background: #faf8f4;
}

.seo-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.seo-content {
    padding: 80px 0;
    background: #ffffff;
}

.seo-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
    text-align: center;
}

.seo-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
}

.seo-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
    max-width: 850px;
}

.seo-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seo-products {
    padding: 70px 0;
    background: #fdfaf6;
    text-align: center;
}

.seo-products h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #222;
}

.seo-products p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h2,
.seo-products h2 {
    letter-spacing: 0.5px;
}

.seo-content p,
.seo-products p,
.seo-intro p {
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {

    .seo-intro {
        padding: 40px 0;
    }

    .seo-intro p {
        font-size: 15px;
        padding: 0 12px;
    }

    .seo-content {
        padding: 60px 0;
    }

    .seo-content h2 {
        font-size: 26px;
    }

    .seo-content h3 {
        font-size: 18px;
    }

    .seo-content p {
        font-size: 15px;
        padding: 0 12px;
    }

    .seo-products {
        padding: 50px 0;
    }

    .seo-products h2 {
        font-size: 24px;
    }

    .seo-products p {
        font-size: 15px;
        padding: 0 12px;
    }
}
.seo-content {
    padding: 80px 0;
    background: #ffffff;
}

.seo-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
    text-align: center;
}

.seo-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
}

.seo-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
    max-width: 850px;
}

.seo-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
