* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    overflow-x: hidden;
    padding-top: 80px;
}

/* --- HEADER & NAVBAR --- */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(36,35,35,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;          /* ← ADD THIS */
    z-index: 1000;        /* ← ADD THIS */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo i { color: #d63384; margin-right: 5px; }

/* --- NAVIGATION LINKS (desktop: centered in navbar) --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 300px;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        margin: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 3000;
        overflow-y: auto;
        display: flex;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }
    .nav-links.open { transform: translateX(0); }
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.nav-link:hover { color: #d63384; }
.nav-link i { font-size: 10px; }

/* --- DROPDOWNS --- */
.nav-item { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s ease; z-index: 99;
    min-width: 200px; padding: 20px; border-top: 2px solid #d63384;
}
.dropdown-menu li { list-style: none; margin-bottom: 10px; }
.dropdown-menu a { text-decoration: none; color: #666; font-size: 14px; display: block; }
.dropdown-menu a:hover { color: #d63384; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu { display: flex; gap: 40px; width: 500px; left: -100px; }
.mega-column h4 { margin-bottom: 10px; color: #d63384; font-size: 14px; text-transform: uppercase; }

/* --- RIGHT ICONS --- */
.nav-icons { display: flex; align-items: center; gap: 20px; }
.icon-btn { background: none; border: none; font-size: 20px; cursor: pointer; color: #333; }
.cart-wrapper { display: flex; align-items: center; gap: 5px; cursor: pointer; position: relative; }
.cart-count {
    background-color: #333; color: white; font-size: 10px;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    position: absolute; top: -5px; right: -5px;
}
.cart-price { font-size: 14px; font-weight: 600; }

/* --- SEARCH OVERLAY --- */
.search-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 300px;
    background: white; z-index: 5000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transform: translateY(-100%); transition: transform 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.search-overlay.active { transform: translateY(0); }
.search-box { position: relative; width: 60%; max-width: 600px; margin-top: 20px; }
.search-box input { width: 100%; padding: 15px; border-radius: 30px; border: 1px solid #ddd; outline: none; font-size: 16px; }
.search-box button { position: absolute; right: 15px; top: 15px; background: none; border: none; cursor: pointer; font-size: 16px; }
.close-search { position: absolute; top: 30px; right: 50px; font-size: 24px; border: none; background: none; cursor: pointer; }

/* --- CART SIDEBAR --- */
.cart-sidebar {
    position: fixed; top: 0; right: 0; width: 350px; height: 100%;
    background: white; z-index: 3500;
    transform: translateX(100%); transition: transform 0.3s ease;
    padding: 30px; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid #eee; margin-bottom: 20px; }
.close-cart { background: none; border: none; font-size: 20px; cursor: pointer; }

/* --- PAGE OVERLAY ---
   z-index: 2000 — BELOW nav-links (3000) so menu is never covered */
.page-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.page-overlay.active {
    opacity: 1; visibility: visible; pointer-events: all;
}


/* --- SLIDER --- */
.slider-container {
    margin-top: 70px;
    position: relative; max-width: 100%; height: 600px;
    overflow: hidden;

    /* ✅ UPDATED: Allows smooth background color fading */
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.85) 80%);
    background-color: #072a40; /* Default starting color */
    transition: background-color 1.2s ease-in-out; /* Makes the color fade smoothly! */
    
    color: #ffffff;
    margin-bottom: 50px;
}
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease-in-out, visibility 0.8s; }
.slide.active { opacity: 1; visibility: visible; z-index: 10; }
.slide-content { display: flex; align-items: center; justify-content: center; height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.slide-text { flex: 1; padding-right: 50px; transform: translateX(-50px); opacity: 0; transition: all 2s ease-out 1s; }
.slide.active .slide-text { transform: translateX(0); opacity: 1; }
.slide-text h2 { font-size: 3rem; color: #d63384; margin-bottom: 20px; font-weight: 700; }
.slide-text p { font-size: 1.1rem; color: #555; margin-bottom: 30px; line-height: 1.6; }
.slide-image { flex: 1; height: 80%; display: flex; align-items: center; justify-content: center; transform: translateX(50px); opacity: 0; transition: all 0.8s ease-out 0.3s; }
.slide.active .slide-image { transform: translateX(0); opacity: 1; }
.slide-image img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 15px 30px rgba(214,51,132,0.2)); }
.prev-btn, .next-btn { cursor: pointer; position: absolute; top: 50%; padding: 16px; margin-top: -22px; color: #d63384; font-weight: bold; font-size: 24px; transition: 0.6s ease; border: none; background: rgba(255,255,255,0.8); z-index: 20; border-radius: 0 3px 3px 0; }
.next-btn { right: 0; border-radius: 3px 0 0 3px; }
.prev-btn:hover, .next-btn:hover { background-color: #d63384; color: white; }
.slider-dots { position: absolute; bottom: 30px; width: 100%; text-align: center; z-index: 20; }
.dot { cursor: pointer; height: 12px; width: 12px; margin: 0 5px; background-color: #ddd; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; }
.dot.active, .dot:hover { background-color: #d63384; }

/* --- MOBILE TOGGLE (hidden on desktop) --- */
.mobile-toggle { display: none; }
.mobile-header { display: none; }

/* ============================================================
   MOBILE NAV — max-width: 900px
   nav-links is now a FIXED sidebar independent of navbar
   ============================================================ */
/* Desktop: sits naturally inside .navbar flex row */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
}

.mobile-header { display: none; }
.mobile-toggle { display: none; }

@media (max-width: 900px) {
    .mobile-toggle {
        display: block;
        background: none; border: none;
        font-size: 24px; cursor: pointer; color: #333; order: 1;
    }
    .logo { order: 2; margin-left: 10px; }
    .nav-icons { order: 3; gap: 15px; }

    /* Becomes a slide-in sidebar */
    .nav-links {
        position: fixed;
        top: 0; left: 0;
        height: 100%;
        width: 300px;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0; margin: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 3000;
        overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }
    .nav-links.open { transform: translateX(0); }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px;
        background: #f8f8f8;
        font-weight: bold;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;
    }
    .mobile-header button {
        background: none; border: none;
        font-size: 20px; cursor: pointer; color: #333; padding: 4px;
    }

    .nav-item { width: 100%; border-bottom: 1px solid #f0f0f0; }
    .nav-link {
        padding: 15px 24px;
        width: 100%; display: block;
        color: #333; font-size: 15px; font-weight: 500;
        background: white;
    }
    .nav-link:hover { color: #d63384; background: #fff5f9; }

    .page-overlay.active {
        left: 300px;
        width: calc(100% - 300px);
    }
}

/* --- PRODUCT SECTION --- */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section-title { text-align: center; font-size: 36px; font-weight: 600; margin-bottom: 50px; color: #222; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { background: white; transition: all 0.3s ease; position: relative; }
.product-image { width: 100%; height: 350px; background-color: #fff; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 0; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badge { position: absolute; top: 10px; right: 10px; background: #fff; color: #000; padding: 5px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; border-radius: 2px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); z-index: 5; }
.action-bar { position: absolute; bottom: 20px; left: 0; right: 0; margin: 0 auto; width: max-content; background: white; padding: 10px 20px; border-radius: 30px; display: flex; gap: 20px; list-style: none; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transform: translateY(0); opacity: 1; transition: all 0.4s ease-out; z-index: 10; }

.action-bar li a { color: #333; font-size: 18px; transition: color 0.3s; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.action-bar li a:hover { color: #d63384; }
.action-bar li a[data-tooltip] { position: relative; }
.action-bar li a[data-tooltip]::after { content: attr(data-tooltip); position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); background: #333; color: #fff; padding: 5px 10px; font-size: 11px; border-radius: 4px; white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.2s; pointer-events: none; }
.action-bar li a[data-tooltip]::before { content: ''; position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: #333; opacity: 0; visibility: hidden; transition: 0.2s;    }
.action-bar li a:hover::after, .action-bar li a:hover::before { opacity: 1; visibility: visible; }
.product-info { padding: 15px 0; text-align: center; }
.product-info h4 { font-size: 16px; font-weight: 500; margin-bottom: 8px; color: #333; }
.price { font-weight: 600; color: #d63384; font-size: 16px; }
.old-price { color: #999; text-decoration: line-through; font-weight: 400; margin-right: 8px; font-size: 14px; }
@media (max-width: 992px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .product-grid { grid-template-columns: 1fr; } .action-bar { transform: translateY(0); opacity: 1; bottom: 10px; padding: 8px 15px; } }

/* --- QUICK VIEW MODAL --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: white; padding: 30px; border-radius: 10px; width: 800px; max-width: 90%; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.3); max-height: 90vh; overflow-y: auto; }
.close-modal { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: #333; z-index: 10; }
.close-modal:hover { color: #d63384; }
.modal-body { display: flex; gap: 30px; align-items: center; }
.modal-img { flex: 1; height: 350px; display: flex; align-items: center; justify-content: center; background: #f9f9f9; border-radius: 5px; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: contain; }
.modal-details { flex: 1; text-align: left; }
@media (max-width: 768px) { .modal-body { flex-direction: column; } .modal-img { height: 250px; width: 100%; } }

/* --- NEWS SECTION --- */
.news-section { width: 100%; padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.section-heading { text-align: center; font-size: 3rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 40px; color: #000; text-transform: uppercase; }
.news-container { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.news-card { position: relative; flex: 1 1 45%; height: 400px; overflow: hidden; cursor: pointer; background-color: #000; }
.news-card img.news-bg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.1) 100%); transition: background 0.4s ease; }
.news-content { position: absolute; bottom: 0; left: 0; padding: 30px; width: 100%; color: #fff; z-index: 2; transform: translateY(0); transition: transform 0.4s ease; }
.news-content h3 { font-size: 1.5rem; margin-bottom: 10px; text-transform: uppercase; font-weight: 700; line-height: 1.2; }
.news-content .meta { font-size: 0.85rem; color: #ccc; margin-bottom: 15px; }
.news-content .excerpt { font-size: 0.95rem; line-height: 1.5; opacity: 0.9; display: block; }
.news-card:hover img.news-bg { transform: scale(1.05); }
.news-card:hover .news-overlay { background: rgba(0,0,0,0.7); }
.news-card:hover .news-content { transform: translateY(-10px); }
.button-container { text-align: center; margin-top: 50px; }
.read-more-btn { display: inline-block; background-color: #bfa15f; color: #fff; padding: 15px 40px; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; transition: background-color 0.3s ease; }
.read-more-btn:hover { background-color: #a0854d; }
@media (max-width: 768px) { .news-container { flex-direction: column; } .news-card { flex: 1 1 100%; width: 100%; height: 350px; } .section-heading { font-size: 2.2rem; } }

/* --- SERVICES --- */
.services-section { padding: 80px 20px; background-color: transparent; text-align: center; }
.services-grid { display: flex; justify-content: space-between; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; gap: 30px; }
.service-item { flex: 1 1 22%; display: flex; flex-direction: column; align-items: center; padding: 10px; }
.icon-box { margin-bottom: 25px; color: #ffb7b2; transition: transform 0.3s ease; }
.icon-box svg { width: 50px; height: 50px; }
.service-item:hover .icon-box { transform: translateY(-5px); }
.service-item h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 15px; color: #333; letter-spacing: 0.5px; }
.service-item p { font-family: 'Georgia', serif; font-size: 0.95rem; line-height: 1.6; color: #777; max-width: 250px; }
@media (max-width: 900px) { .service-item { flex: 1 1 45%; margin-bottom: 40px; } }
@media (max-width: 600px) { .service-item { flex: 1 1 100%; } .section-title { font-size: 2rem; margin-bottom: 40px; } }

/* --- OWNER --- */
.owner-section { background-color: #f4f8f9; padding: 100px 20px; text-align: center; width: 100%; }
.owner-container { max-width: 900px; margin: 0 auto; }
.image-wrapper { margin-bottom: 35px; }
.owner-img { width: 150px; height: 150px; object-fit: cover; border-radius: 4px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.owner-quote { font-family: 'Georgia', serif; font-size: 1.1rem; line-height: 1.8; color: #555; margin-bottom: 40px; }
.owner-name { font-size: 0.9rem; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 3px; margin: 0; }
@media (max-width: 600px) { .owner-section { padding: 60px 20px; } .owner-img { width: 120px; height: 120px; } .owner-quote { font-size: 1rem; line-height: 1.6; } }

/* --- COLLECTIONS --- */
.product-collections-section { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.collection-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 30px; position: relative; display: inline-block; color: #000; }
.collection-title::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 50px; height: 3px; background-color: #ff87c3; }
.product-list { display: flex; flex-direction: column; gap: 25px; }
.product-list-item { display: flex; align-items: center; gap: 20px; cursor: pointer; transition: transform 0.2s ease; }
.product-list-item:hover { transform: translateX(5px); }
.product-list-item img { width: 80px; height: 80px; object-fit: cover; border: 1px solid #eee; }
.list-info h3 { font-size: 0.95rem; font-weight: 600; margin: 0 0 5px 0; color: #333; }
.list-price { font-weight: 700; color: #333; font-size: 0.9rem; }
.list-price del { color: #999; font-weight: 400; margin-left: 5px; font-size: 0.85em; }
@media (max-width: 900px) { .collections-grid { grid-template-columns: 1fr; gap: 50px; } }

/* --- FOOTER --- */
.footer-section { background-color: #111; color: #fff; position: relative; padding-top: 80px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; color: #fff; letter-spacing: 1px; }
.footer-logo { font-size: 28px; font-weight: bold; margin-bottom: 15px; color: #fff; display: flex; align-items: center; gap: 10px; }
.icon-gold { color: #d63384; }
.footer-desc { font-size: 14px; color: #bbb; line-height: 1.6; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; color: #bbb; }
.footer-col ul li a { text-decoration: none; color: #bbb; transition: 0.3s; }
.footer-col ul li a:hover { color: #d63384; padding-left: 5px; }
.contact-list li i { color: #d63384; width: 20px; }
.social-links a { color: #fff; margin-right: 15px; font-size: 18px; transition: 0.3s; }
.social-links a:hover { color: #d63384; }
.newsletter-text { font-size: 14px; color: #bbb; margin-bottom: 15px; }
.newsletter-form { display: flex; background: #222; border: 1px solid #333; border-radius: 4px; overflow: hidden; }
.newsletter-form input { width: 100%; background: transparent; border: none; color: #fff; padding: 12px; outline: none; }
.newsletter-form button { background: #d63384; color: #fff; border: none; padding: 0 15px; cursor: pointer; transition: 0.3s; }
.newsletter-form button:hover { background: #b02a6c; }
.whatsapp-footer-btn { display: inline-flex; align-items: center; gap: 10px; background-color: #25d366; color: white !important; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: 600; font-size: 14px; transition: transform 0.2s; }
.whatsapp-footer-btn:hover { transform: translateY(-3px); background-color: #20bd5a; }
.whatsapp-footer-btn i { font-size: 18px; }
.footer-bottom { padding: 20px 0; font-size: 13px; color: #777; }
.bottom-flex { display: flex; justify-content: space-between; align-items: center; }
.payments i { font-size: 24px; margin-left: 10px; color: #555; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-logo { justify-content: center; } .contact-list li { justify-content: center; } .bottom-flex { flex-direction: column; gap: 15px; } .whatsapp-footer-btn { width: 100%; justify-content: center; } }