 html {
    scroll-behavior: smooth;
 }

:root {
    --white: #FFFFFF;
    --black: #080808;
    --gray-text: rgba(255, 255, 255, 0.7);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    font-family: 'Inter', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

/* --- Hero & Video --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 1. The Tint: Darkens the video slightly */
    background-color: rgba(0, 0, 0, 0.5); 
    
    /* 2. The Blur: This is the magic part */
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); /* For Safari support */

    /* 3. Optional: Add a subtle gradient so the blur is stronger on the left */
    mask-image: linear-gradient(to right, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%);
    
    z-index: 1;
}

/* Add this to your text wrapper to ensure it stays above the overlay */
.text-wrapper {
    position: relative;
    z-index: 10;
    /* Optional: Add a subtle text-shadow for extra 'pop' */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--gray-text); }

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.menu-toggle i { font-size: 1.5rem; }

/* --- Sidebar --- */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 3rem;
    transition: 0.5s ease;
    border-left: 1px solid var(--glass-border);
}

.sidebar.active { right: 0; }

.close-btn {
    font-size: 2rem;
    text-align: right;
    cursor: pointer;
    margin-bottom: 3rem;
}

.side-links {
    list-style: none;
}

.side-links li { margin-bottom: 2rem; }

.side-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

/* --- Shop & Filter --- */
.shop-section { background: #080808; padding: 80px 5%; }
.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.filter-btn { background: none; border: 1px solid #333; color: white; padding: 10px 20px; cursor: pointer; margin-left: 10px; transition: 0.3s; }
.filter-btn.active { background: white; color: black; border-color: white; }

/* --- Modal Styling --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    display: none; /* Hidden by default */
    align-items: center; justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #111;
    width: 90%; max-width: 900px;
    padding: 40px;
    position: relative;
    border: 1px solid #222;
}

.close-modal {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 2.5rem; color: white; cursor: pointer;
}

.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.modal-img img { width: 100%; border-radius: 4px; }
.modal-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 10px; }
.modal-price { color: #C5A059; font-size: 1.5rem; margin-bottom: 20px; }
.scent-notes h4 { text-transform: uppercase; font-size: 0.7rem; letter-spacing: 2px; color: #777; margin-bottom: 10px; }

@media (max-width: 768px) {
    .modal-body { grid-template-columns: 1fr; text-align: center; }
}

/* --- Content --- */
.content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 5;
}

.text-wrapper { max-width: 650px; }

.eyebrow {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--gray-text);
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.headline i { font-weight: 400; }

.description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
    max-width: 450px;
    margin-bottom: 2.5rem;
}

/* --- Buttons --- */
.cta-wrapper { display: flex; gap: 1rem; }

.btn-light {
    background: var(--white);
    color: var(--black);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--glass);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .headline { font-size: 3.5rem; }
}

.hero-footer {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gray-text);
}

/* --- Featured Products Section --- */
.featured-products {
    background-color: #080808;
    padding: 100px 5%;
    color: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-top: 10px;
}

.section-title i {
    font-weight: 400;
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    transition: transform 0.5s ease;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #121212;
    border-radius: 4px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* --- Hover Effects --- */
.product-card:hover .product-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.add-to-vanity {
    background: #FFFFFF;
    color: #000000;
    border: none;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card:hover .add-to-vanity {
    transform: translateY(0);
}

/* --- Product Info --- */
.product-info {
    padding: 25px 0;
    text-align: center;
}

.category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 10px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.price {
    font-size: 1rem;
    font-weight: 300;
    color: #FFFFFF;
}

/* --- View All Link --- */
.view-all-wrapper {
    margin-top: 60px;
    text-align: center;
}

.view-all-link {
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
    transition: border 0.3s;
}

.view-all-link:hover {
    border-bottom: 1px solid #FFFFFF;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.5rem;
    }
}
/* Cart Icon */
.cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    color: var(--black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Sidebar Drawer */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* Hidden by default */
    width: 350px;
    height: 100vh;
    background: #111;
    z-index: 2000;
    transition: 0.4s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active { right: 0; }

.cart-items { flex: 1; overflow-y: auto; margin-top: 20px; }

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.checkout-btn {
    width: 100%;
    background: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 5%;
    background: #0F0F0F;
    border-top: 1px solid #222;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
}

.trust-item i {
    font-size: 2.5rem;
    color: #C5A059;
}

.trust-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 0.75rem;
    color: #888;
}

.founder-section {
    padding: 100px 5%;
    background: #080808;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 2px;
    z-index: 2;
    position: relative;
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid #C5A059;
    z-index: 1;
}

.founder-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 20px 0;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #AAA;
    font-style: italic;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .founder-content { grid-template-columns: 1fr; text-align: center; }
}

.main-footer {
    padding: 80px 5% 20px;
    background: #050505;
    border-top: 1px solid #111;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #C5A059;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #888; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #FFF; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 30px;
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 1px;
}

/* --- Testimonials Section --- */
.testimonials {
    background: #080808;
    padding: 100px 5%;
    color: #FFF;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: #111;
    padding: 40px;
    border: 1px solid #222;
    position: relative;
    transition: 0.4s ease;
}

/* Highlight the middle card for visual interest */
.testimonial-card.highlight {
    border-color: #C5A059;
    background: linear-gradient(145deg, #111, #0a0a0a);
}

.quote-icon {
    font-size: 2rem;
    color: #C5A059;
    margin-bottom: 20px;
    opacity: 0.6;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #CCC;
    font-style: italic;
    margin-bottom: 30px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #C5A059;
}

.customer-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.customer-info span {
    font-size: 0.7rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #C5A059;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact & Location --- */
.contact-location {
    padding: 100px 5%;
    background: #080808;
    border-top: 1px solid #111;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.info-blocks {
    margin: 40px 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.8rem;
    color: #C5A059;
}

.info-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #FFF;
}

.info-item p {
    color: #888;
    font-size: 0.9rem;
}

/* --- Map Styling --- */
.map-container {
    position: relative;
    border: 1px solid #222;
    padding: 10px;
    background: #111;
}

.map-container iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Makes map match Dark Mode */
}

/* --- Form Styling --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    background: #111;
    border: 1px solid #222;
    padding: 15px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .map-container { height: 350px; }
}