/* =========================
   RESET & BASE
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAFAFA;
    color: #111111;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .luxury-font {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* =========================
   COLOR VARIABLES
   ========================= */
:root {
    --gold: #C9A34E;
    --gold-light: #E6D2A2;
    --black: #111111;
    --soft-white: #FAFAFA;
    --warm-ivory: #F8F5EF;
    --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --hero-height-desktop: 82vh;
    --hero-height-tablet: 70vh;
    --hero-height-mobile: 60vh;
    --hero-height-small-mobile: 50vh;
}

/* =========================
   CUSTOM SCROLLBAR
   ========================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #E6D2A2; }
::-webkit-scrollbar-thumb { background: #C9A34E; border-radius: 10px; }

/* =========================
   NAVBAR (light white)
   ========================= */
.navbar {
    background: white !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 0.8rem 0;
    transition: box-shadow 0.3s;
}
/* =========================
   NAVBAR LOGO
   ========================= */
.navbar-brand img {
    max-height: 50px;
    width: auto;
}

/* Mobile par logo chhota ho jaye */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 38px;
    }
}
.navbar.scrolled {
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.nav-link {
    color: #111 !important;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* =========================
   HERO SLIDER
   ========================= */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: var(--hero-height-desktop);
    min-height: 400px;
    overflow: hidden;
    background: #111;
    margin-top: 76px; /* navbar height */
}

.hero-slider-wrapper .carousel-item {
    height: var(--hero-height-desktop);
    min-height: 400px;
    position: relative;
}

.banner-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 100%;
    gap: 0;
    overflow: hidden;
}

.banner-images-grid .banner-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.banner-images-grid .banner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.banner-images-grid .banner-img-wrap:hover img {
    transform: scale(1.04);
}

.banner-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5% 8%;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0.15) 100%);
}

.banner-text-overlay .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 400;
    margin-bottom: 0.5rem;
    background: rgba(0,0,0,0.3);
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    display: inline-block;
    backdrop-filter: blur(4px);
}

.banner-text-overlay h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    line-height: 1.1;
    max-width: 70%;
    margin-bottom: 0.5rem;
}

.banner-text-overlay p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 50%;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
    font-weight: 300;
}

.banner-text-overlay .btn-luxury-hero {
    background: transparent;
    border: 2px solid var(--gold);
    color: #fff;
    padding: 12px 38px;
    font-weight: 600;
    border-radius: 40px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    pointer-events: auto;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.banner-text-overlay .btn-luxury-hero:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201,163,78,0.35);
    transform: translateY(-3px);
}

/* Carousel controls */
.hero-slider-wrapper .carousel-control-prev,
.hero-slider-wrapper .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 20;
}

.hero-slider-wrapper .carousel-control-prev { left: 20px; }
.hero-slider-wrapper .carousel-control-next { right: 20px; }

.hero-slider-wrapper .carousel-control-prev:hover,
.hero-slider-wrapper .carousel-control-next:hover {
    opacity: 1;
    background: rgba(201,163,78,0.25);
    border-color: var(--gold);
}

.hero-slider-wrapper .carousel-indicators {
    bottom: 20px;
    z-index: 25;
    gap: 8px;
}

.hero-slider-wrapper .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    transition: all 0.4s ease;
    margin: 0 4px;
    padding: 0;
}

.hero-slider-wrapper .carousel-indicators button.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(201,163,78,0.4);
}

/* =========================
   SCROLL PROGRESS & BACK TO TOP
   ========================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold);
    z-index: 9999;
    transition: width 0.05s linear;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #b8933a;
}

/* =========================
   FLOATING WHATSAPP
   ========================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.2s;
    text-decoration: none;
    border: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #128C7E;
    color: #fff;
}

/* =========================
   PRODUCT CARDS
   ========================= */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(201,163,78,0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.2);
    border-color: var(--gold);
    border-width: 1.5px;
}

.card-img-top {
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s;
}
.card-title{
   padding: 0 0 6px 5px;
}
.card-text{
   padding: 0 0 6px 5px;
    line-height: 1.6;
    color: #555 !important;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 45px;
    margin-bottom: 8px;
}
/* Product Code styling */
.product-code {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
    background: #f5f3ef;
    display: inline-block;
    padding: 1px 12px;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 2px;
}
.product-card:hover .card-img-top {
    transform: scale(1.03);
}

.category-badge {
    background: var(--warm-ivory);
    color: var(--gold);
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

.price {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
}/* =========================
   PRODUCT CODE STYLING
   ========================= */
.product-code {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    background: #f0ede7;
    display: inline-block;
    padding: 2px 14px;
    border-radius: 30px;
    font-weight: 500;
    margin-inline-end: auto;
}

/* =========================
   MODAL DESCRIPTION - PROFESSIONAL FORMATTING
   ========================= */
#modalDesc {
    white-space: pre-wrap;
    line-height: 1.9;
    font-size: 0.95rem;
    color: #2c2c2c;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 5px;
}

#modalDesc strong {
    font-weight: 700;
    color: #111;
    display: block;
    margin-top: 14px;
    margin-bottom: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

#modalDesc br {
    display: block;
    content: "";
    margin: 4px 0;
}

/* Bullet points ko clean karein */
#modalDesc .bullet-item {
    display: block;
    padding-left: 20px;
    position: relative;
    margin-bottom: 2px;
}

#modalDesc .bullet-item::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 4px;
}

/* Mobile par height adjust */
@media (max-width: 768px) {
    #modalDesc {
        max-height: 220px;
        font-size: 0.85rem;
    }
}
.btn-details,
.btn-buy-now {
    border-radius: 30px;
    font-size: 0.8rem;
    padding: 6px 16px;
    transition: 0.2s;
}

.btn-details {
    background: var(--black);
    color: white;
    border: none;
}

.btn-details:hover {
    background: var(--gold);
    color: black;
}

.btn-buy-now {
    background: var(--gold);
    color: white;
    border: none;
}

.btn-buy-now:hover {
    background: #128C7E;
    color: #fff;
}

/* =========================
   FULLSCREEN MODAL
   ========================= */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: flex-start; 
    justify-content: center;
    overflow-y: auto;
    
    opacity: 0;
    transition: opacity 0.4s ease;
}
.fullscreen-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content-lux {
    background: var(--warm-ivory);
    max-width: 1300px;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    animation: modalZoom 0.5s;
}

@keyframes modalZoom {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    cursor: pointer;
    color: #111;
    z-index: 10;
    transition: 0.2s;
    background: none;
    border: none;
    line-height: 1;
}

.close-modal:hover {
    color: var(--gold);
}

/* =========================
   SECTION TITLE
   ========================= */
.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

/* =========================
   FILTER BUTTONS
   ========================= */
.filter-active {
    background: var(--gold) !important;
    color: black !important;
    border-color: var(--gold) !important;
}

.category-filter-btn {
    transition: var(--transition);
    border-color: #ccc;
    color: #333;
}

.category-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.category-filter-btn.active-filter {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}

/* =========================
   NEWSLETTER
   ========================= */
.newsletter {
    background: var(--black);
    color: white;
}

.newsletter .btn-outline-light {
    border-color: var(--gold);
    color: var(--gold);
}

.newsletter .btn-outline-light:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}

/* =========================
   FOOTER
   ========================= */
/* =========================
   FOOTER LOGO
   ========================= */
.footer-logo {
    max-height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-brand {
    display: inline-block;
    text-decoration: none;
}

/* Mobile par logo chhota ho jaye */
@media (max-width: 768px) {
    .footer-logo {
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        max-height: 35px;
    }
}
footer {
    background: #111;
    color: #ccc;
}

footer a {
    text-decoration: none;
    color: #ccc;
    transition: 0.2s;
}

footer a:hover {
    color: var(--gold);
}

.text-gold {
    color: var(--gold);
}

/* =========================
   RESPONSIVE STYLES
   ========================= */
@media (max-width: 1600px) {
    .banner-text-overlay h2 { font-size: 3.2rem; }
    .banner-text-overlay p { font-size: 1rem; max-width: 55%; }
}

@media (max-width: 1366px) {
    .banner-text-overlay h2 { font-size: 2.8rem; }
    .banner-text-overlay p { max-width: 60%; font-size: 0.95rem; }
    .banner-text-overlay .eyebrow { font-size: 0.7rem; padding: 0.2rem 1rem; }
}

@media (max-width: 1024px) {
    .hero-slider-wrapper,
    .hero-slider-wrapper .carousel-item {
        height: var(--hero-height-tablet);
        min-height: 350px;
    }
    .banner-text-overlay { padding: 4% 6%; }
    .banner-text-overlay h2 { font-size: 2.4rem; max-width: 80%; }
    .banner-text-overlay p { max-width: 70%; font-size: 0.9rem; }
    .banner-text-overlay .btn-luxury-hero { padding: 10px 30px; font-size: 0.85rem; }
    .hero-slider-wrapper .carousel-control-prev,
    .hero-slider-wrapper .carousel-control-next { width: 40px; height: 40px; }
    .hero-slider-wrapper .carousel-control-prev { left: 12px; }
    .hero-slider-wrapper .carousel-control-next { right: 12px; }
}

@media (max-width: 768px) {
    .hero-slider-wrapper,
    .hero-slider-wrapper .carousel-item {
        height: var(--hero-height-mobile);
        min-height: 300px;
        
    }
    .banner-text-overlay {
        padding: 3% 5%;
        background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.2) 100%);
    }
    .banner-text-overlay h2 { font-size: 1.8rem; max-width: 90%; }
    .banner-text-overlay p { max-width: 85%; font-size: 0.85rem; margin-bottom: 1rem; }
    .banner-text-overlay .eyebrow { font-size: 0.6rem; padding: 0.15rem 0.8rem; letter-spacing: 3px; }
    .banner-text-overlay .btn-luxury-hero { padding: 8px 24px; font-size: 0.8rem; }
    .section-title { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .hero-slider-wrapper,
    .hero-slider-wrapper .carousel-item {
        height: var(--hero-height-small-mobile);
        min-height: 260px;
        
    }
    .banner-text-overlay h2 { font-size: 1.4rem; max-width: 95%; }
    .banner-text-overlay p { max-width: 95%; font-size: 0.75rem; margin-bottom: 0.8rem; }
    .banner-text-overlay .eyebrow { font-size: 0.5rem; padding: 0.1rem 0.6rem; letter-spacing: 2px; }
    .banner-text-overlay .btn-luxury-hero { padding: 6px 18px; font-size: 0.7rem; border-width: 1.5px; }
    .hero-slider-wrapper .carousel-control-prev,
    .hero-slider-wrapper .carousel-control-next { width: 28px; height: 28px; }
    .hero-slider-wrapper .carousel-control-prev { left: 4px; }
    .hero-slider-wrapper .carousel-control-next { right: 4px; }
    .whatsapp-float { width: 40px; height: 40px; font-size: 20px; bottom: 16px; left: 16px; }
    .back-to-top { width: 36px; height: 36px; font-size: 1.2rem; bottom: 16px; right: 16px; }
}

/* Ensure no horizontal scroll */
.container, .container-fluid { overflow: hidden; }
img { max-width: 100%; height: auto; }
