/* --- Global Theme & Variables --- */
:root {
    --silk-bg: #f4eee1;         /* Champagne silk background */
    --gold-primary: #d4af37;
    --gold-dark: #8b6b1a;
    --gold-gradient: linear-gradient(180deg, #f1d38e 0%, #d4af37 50%, #a67c37 100%);
    --white-glass: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 15px 35px rgba(139, 107, 26, 0.1);
    --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--silk-bg); 
    color: #3a3a3a; 
    scroll-behavior: smooth;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, .logo { 
    font-family: 'Playfair Display', serif; 
    font-weight: 700;
    color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- Header & Navbar Core --- */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px); /* Modern Glass Effect */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    height: 80px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    color: #1a1a1a;
    flex: 0 0 auto;
}

/* --- Desktop Navigation --- */
.nav-links {
    list-style: none;
    display: flex;      
    gap: 40px;
    align-items: right;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--gold-primary);
}

.mobile-only-cart { display: none; } /* Hidden on Desktop */

/* --- Nav Actions (Cart & Toggle) --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    font-size: 20px;
    color: #1a1a1a;
    transition: var(--transition);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* --- Custom Hamburger Menu --- */
#nav-check { display: none; }

.nav-btn {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.nav-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: 0.4s;
}

/* --- Mobile Styling (The "Beautiful" Part) --- */
@media (max-width: 992px) {
    .navbar { height: 70px; }
    
    .nav-btn { display: flex; }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0; /* Animated Height */
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        overflow: hidden;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.3s;
    }

    .nav-links li a {
        display: block;
        padding: 20px 30px;
        border-bottom: 1px solid #f8f8f8;
        font-size: 16px;
    }

    .mobile-only-cart { display: block; }

    /* Open State */
    #nav-check:checked ~ .nav-links {
        height: calc(100vh - 70px);
    }

    #nav-check:checked ~ .nav-links li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s; /* Staggered entrance */
    }

    /* Hamburger Animation */
    #nav-check:checked ~ .nav-actions .nav-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #nav-check:checked ~ .nav-actions .nav-btn span:nth-child(2) {
        opacity: 0;
    }
    #nav-check:checked ~ .nav-actions .nav-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* --- Buttons (Gold Metallic Theme) --- */
.btn-gold, .btn-buy-now, .btn-proceed, .btn-nav-order, .btn-proceed-luxury { 
    background: var(--gold-gradient) !important; 
    color: white !important; 
    padding: 12px 30px; 
    border-radius: 5px; 
    border: 1px solid var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(139, 107, 26, 0.2);
    transition: var(--transition);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.btn-gold:hover, .btn-buy-now:hover, .btn-proceed:hover, .btn-proceed-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 107, 26, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover { background: var(--gold-primary); color: white; }

/* --- Hero Section --- */
/* Ensure the slider takes up the right amount of space */
.hero-slider {
    width: 100%;
    height: 100vh; /* Full screen height */
    position: relative;
}

/* Container for the image to live in */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: 1; */
}

/* THE MAGIC FIX: This makes the image responsive and adjustable */
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* This keeps the aspect ratio perfect */
    object-position: center; /* Keeps the middle of your photo visible */
    display: block;
}

/* Dark overlay to make white text pop */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.4); Adjust brightness here */
}

/* Centering the content on top of the image */
.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Responsive adjustment for Mobile Phones */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh; /* Slightly shorter on mobile */
    }
}
.badge {
    background: var(--gold-primary);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

/* --- Features Bar --- */
.features-bar { padding: 60px 0; background: #fff; border-bottom: 1px solid #eee; }
.features-flex { display: flex; justify-content: space-around; gap: 30px; flex-wrap: wrap; text-align: center; }
.feature-item i { color: var(--gold-primary); font-size: 32px; margin-bottom: 12px; display: block; }
.feature-item span { font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* --- Product Section --- */
.products-section { padding: 100px 0; text-align: center; }
.section-title .sub-title { color: var(--gold-primary); text-transform: uppercase; letter-spacing: 2px; font-size: 14px; }
.gold-divider { width: 80px; height: 3px; background: var(--gold-gradient); margin: 20px auto; border-radius: 10px; }

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 40px; 
    margin-top: 60px; 
}

.product-card { 
    background: var(--white-glass); 
    padding: 30px; 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--card-shadow);
    transition: var(--transition); 
}

.product-card:hover { transform: translateY(-12px); border-color: var(--gold-primary); }
.product-img img { width: 100%; border-radius: 12px; margin-bottom: 20px; }

/* --- Quote Section --- */
.quote-section { padding: 120px 0; background: #fdfaf4; text-align: center; border-top: 1px solid #f0e6d2; }
.italic-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(24px, 4vw, 32px); color: #555; margin-bottom: 15px; }
.quote-author { color: var(--gold-primary); letter-spacing: 2px; font-size: 14px; text-transform: uppercase; }

/* --- Order Section (The Modern Flex Layout) --- */
.order-section { padding: 100px 0; background: #fff; }
.order-wrapper { display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
.order-content-side { flex: 1.2; min-width: 320px; }
.order-form-side { flex: 1; min-width: 350px; }

.luxury-label { text-transform: uppercase; letter-spacing: 3px; color: var(--gold-dark); font-size: 13px; font-weight: 700; margin-bottom: 15px; }
.display-title { font-size: clamp(32px, 5vw, 48px); line-height: 1.2; margin-bottom: 25px; }
.display-title span { color: var(--gold-dark); font-style: italic; }

.order-description { font-size: 1.1rem; color: #666; margin-bottom: 30px; }
.order-perks { list-style: none; margin-bottom: 40px; }
.order-perks li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; font-weight: 500; }
.order-perks i { color: var(--gold-primary); }

.payment-info-box {
    background: #fdfaf0;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--gold-primary);
    display: flex;
    gap: 15px;
}

.premium-card {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(139, 107, 26, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.luxury-form .input-group { margin-bottom: 20px; text-align: left; }
.luxury-form label { font-size: 13px; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; color: #333; }
.luxury-form input, .luxury-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    background: #fcfcfc;
    transition: var(--transition);
    font-family: inherit;
}

.luxury-form input:focus { border-color: var(--gold-primary); background: #fff; outline: none; box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); }

.order-summary-mini { background: #fdfaf4; padding: 20px; border-radius: 12px; margin: 25px 0; border: 1px dashed #d4af37; }
.summary-line { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.summary-total { display: flex; justify-content: space-between; font-weight: 700; color: var(--gold-dark); border-top: 1px solid rgba(212, 175, 55, 0.2); padding-top: 10px; }

.secure-footer { text-align: center; margin-top: 25px; }
.payment-img { max-width: 180px; margin-bottom: 10px; opacity: 0.8; }
.secure-footer p { font-size: 12px; color: #999; display: flex; justify-content: center; align-items: center; gap: 6px; }

/* --- Mobile Menu & Responsive --- */
#nav-check { display: none; }
.nav-btn { display: none; }

@media (max-width: 992px) {
    .nav-btn { display: block; }
    .nav-links {
        position: absolute;
        width: 100%;
        background: #fff;
        top: 70px;
        left: 0;
        flex-direction: column;
        gap: 0;
        height: 0;
        overflow: hidden;
        transition: 0.4s ease-in-out;
    }
    #nav-check:checked ~ .nav-links { height: 350px; border-bottom: 1px solid #eee; }
    .nav-links li { width: 100%; text-align: center; border-top: 1px solid #f9f9f9; }
    .nav-links li a { padding: 20px; display: block; }

    .hero { text-align: center; padding: 0 5%; }
    .hero-content { margin: 0 auto; }
    .order-wrapper { flex-direction: column; gap: 50px; }
    .order-content-side { text-align: center; }
    .order-perks { display: inline-block; text-align: left; }
    .payment-info-box { text-align: left; }
}

/* --- Main Footer --- */
.main-footer {
    background-color: #111; /* Luxury dark background */
    color: #fff;
    padding: 80px 0 30px;
    margin-top: 50px;
    border-top: 2px solid var(--gold-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Brand takes more space */
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: #999;
    margin: 20px 0;
    max-width: 300px;
    font-size: 14px;
}

.footer-group h3 {
    color: var(--gold-primary);
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-group ul {
    list-style: none;
}

.footer-group ul li {
    margin-bottom: 12px;
}

.footer-group ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-group ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

/* --- Social Icons --- */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-5px);
}

/* --- Footer Bottom --- */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

/* --- Responsive Footer --- */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand p {
        margin: 20px auto;
    }
    
    .social-links {
        justify-content: center;
    }
}


/* Ensure the hamburger button is visible on mobile */
@media (max-width: 992px) {
    .nav-btn {
        display: flex !important; /* Forces it to show */
        flex-direction: column;
        gap: 6px;
    }

    /* Animation: Turns the hamburger into an 'X' when checked */
    #nav-check:checked ~ .nav-right-group .nav-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #nav-check:checked ~ .nav-right-group .nav-btn span:nth-child(2) {
        opacity: 0;
    }
    #nav-check:checked ~ .nav-right-group .nav-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px; /* Distance from bottom */
    right: 30px;  /* Distance from right */
    background-color: #25d366; /* Official WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 3000; /* Higher than header and swiper */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Darker green on hover */
    transform: scale(1.1);
    color: #fff;
}

/* Tooltip text (Optional) */
.whatsapp-float .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    right: 75px; /* Position to the left of the icon */
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Pulse Animation */
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive adjustment for small phones */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Mobile Styles (Inside your Media Query) */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    /* This is what shows the menu when clicked */
    .nav-links.active {
        display: flex !important;
    }
}

/* --- Quote Section with Background Image --- */
.quote-section.luxury-image-bg {
    position: relative;
    padding: 150px 0;
    /* REPLACE the URL below with your local image path like assets/images/quote-bg.jpg */
    /* background-image: url('assets/images/hero2.jpeg'); */
    background-attachment: fixed; /* Creates the Parallax effect */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
}

/* Dark Overlay to make the text "Pop" */
.quote-section.luxury-image-bg .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
     /* Adjust 0.6 to make it darker or lighter */
    z-index: 2;  
}

.quote-content {
    position: relative;
    z-index: 2; /* Ensures text is above the overlay */
}

.quote-icon {
    color: var(--gold-primary);
    font-size: 35px;
    margin-bottom: 20px;
    display: block;
}

.italic-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(28px, 5vw, 45px);
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Helps legibility */
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.2;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 30px auto 0;
}