body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8f5f2;
}

header {
    font-family: 'Cinzel', serif;
    background: linear-gradient(90deg, #5a0c24, #7b0f2f, #a8325a);
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: linear-gradient(to right, #fff, #f3e5e5);
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    color: #7b0f2f;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    background: #7b0f2f;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.features {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 40px 40px;
    /* Row background added */
    background: linear-gradient(90deg, #6a0d2f, #8b1e3f, #6a0d2f);
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    border-radius: 15px;
    color: white;
    position: relative;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    border-radius: 15px;
    color: white;
    position: relative;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

    .feature-box:hover {
        transform: translateY(-5px);
    }

    /* Individual gradients like poster */
    .feature-box:nth-child(1) {
        background: linear-gradient(135deg, #7b0f2f, #c94b4b);
    }

    .feature-box:nth-child(2) {
        background: linear-gradient(135deg, #a8325a, #d38312);
    }

    .feature-box:nth-child(3) {
        background: linear-gradient(135deg, #5a0c24, #8e2de2);
    }

    .feature-box h3 {
        margin: 5px 0;
        font-size: 20px;
        font-weight: bold;
    }

    .feature-box p {
        margin: 0;
        font-size: 14px;
        opacity: 0.95;
    }

.feature-box {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

    .feature-box:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: rgba(255,255,255,0.3);
    }

    .feature-box h3 {
        margin: 5px 0;
        font-size: 20px;
        font-weight: bold;
    }

    .feature-box p {
        margin: 0;
        font-size: 14px;
        opacity: 0.9;
    }

.feature-box {
    text-align: center;
}

.products {
    padding: 50px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    position: relative;
}

    .card:hover {
        transform: translateY(-8px);
    }

    .card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

.card-body {
    padding: 15px;
}

.price {
    color: #7b0f2f;
    font-weight: bold;
}

.shop-btn {
    margin-top: 10px;
    background: #7b0f2f;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

footer {
    background: linear-gradient(90deg, #5a0c24, #7b0f2f, #a8325a);
    color: white;
    padding: 40px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.footer-column a {
    display: block;
    color: #eee;
    text-decoration: none;
    margin: 5px 0;
    font-size: 14px;
}

    .footer-column a:hover {
        color: #ffd700;
    }

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features {
        flex-direction: column;
        gap: 10px;
    }
}


/* 2nd Part */
/* SECTION TITLE */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #7b0f2f;
    text-align: center;
    margin-bottom: 30px;
}

/* WHY SHOP */
.why-shop {
    padding: 50px;
    background: #f3e5e5;
    border-top: 5px solid #a8325a;
    border-bottom: 5px solid #a8325a;
}

.why-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.why-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .why-item:hover {
        transform: translateY(-5px);
    }

    .why-item .icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

/* NEWSLETTER */
.newsletter {
    background: linear-gradient(90deg, #5a0c24, #7b0f2f, #a8325a);
    padding: 40px;
    text-align: center;
    color: white;
    position: relative;
    border-top: 4px solid gold;
    border-bottom: 4px solid gold;
}

.newsletter-content h2 {
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
}

.newsletter-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .newsletter-box input {
        padding: 12px;
        width: 300px;
        border-radius: 5px;
        border: none;
    }

    .newsletter-box button {
        background: #ffd700;
        color: #7b0f2f;
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
    }

/* FABRIC TEXTURE BACKGROUND */
.why-shop {
    padding: 60px;
    background: url("https://www.transparenttextures.com/patterns/cream-paper.png");
    border-top: 6px solid #b88a44;
    border-bottom: 6px solid #b88a44;
    position: relative;
}

/* TITLE */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    text-align: center;
    color: #7b0f2f;
}

/* DIVIDER DESIGN */
.divider {
    width: 200px;
    height: 4px;
    margin: 15px auto 40px;
    background: linear-gradient(to right, transparent, #b88a44, transparent);
}

    .divider.light {
        background: linear-gradient(to right, transparent, #ffd700, transparent);
    }

/* WHY BOX */
.why-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.why-item {
    background: #fffaf5;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
    border: 2px solid #e0c097;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .why-item:hover {
        transform: translateY(-6px);
    }

.why-icon {
    width: 60px;
    margin-bottom: 10px;
}

/* NEWSLETTER SECTION */
.newsletter {
    background: linear-gradient(90deg, #5a0c24, #7b0f2f, #a8325a);
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
    border-top: 6px solid #b88a44;
    border-bottom: 6px solid #b88a44;
}

    /* FABRIC OVERLAY */
    .newsletter::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("https://www.transparenttextures.com/patterns/arabesque.png");
        opacity: 0.2;
    }

/* CONTENT ABOVE OVERLAY */
.newsletter-content {
    position: relative;
    z-index: 2;
}

/* INPUT + BUTTON */
.newsletter-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .newsletter-box input {
        padding: 12px;
        width: 280px;
        border-radius: 5px;
        border: none;
    }

    .newsletter-box button {
        background: linear-gradient(45deg, #ffd700, #caa64b);
        color: #7b0f2f;
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
    }

/* GOLD ORNAMENT CORNERS */
.corner {
    width: 40px;
    height: 40px;
    position: absolute;
    border: 3px solid gold;
}

.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* COMMON */
.products {
    padding: 60px;
    text-align: center;
}

    /* SECTION TITLES */
    .products h2 {
        font-family: 'Cinzel', serif;
        font-size: 32px;
        margin-bottom: 30px;
    }

    /* ========================================= */
    /* 🔶 FEATURED PRODUCTS (Royal Look) */
    /* ========================================= */

    .products.featured {
        background: #fffaf5;
        border-top: 5px solid #d4af37;
        border-bottom: 5px solid #d4af37;
    }

        .products.featured h2 {
            color: #7b0f2f;
        }

        .products.featured .card {
            border: 2px solid #e0c097;
            background: #fff;
        }

            .products.featured .card:hover {
                box-shadow: 0 10px 25px rgba(212,175,55,0.4);
            }

    /* ========================================= */
    /* ✨ NEW ARRIVALS (Fresh Look) */
    /* ========================================= */

    .products.new-arrivals {
        background: linear-gradient(to right, #fff, #fdf2f4);
    }

        .products.new-arrivals h2 {
            color: #a8325a;
        }

        .products.new-arrivals .card {
            background: #ffffff;
            border-radius: 20px;
        }

            .products.new-arrivals .card:hover {
                transform: scale(1.05);
            }

            /* ADD NEW BADGE */
            .products.new-arrivals .card::before {
                content: "NEW";
                position: absolute;
                top: 10px;
                left: 10px;
                background: #ff4081;
                color: white;
                padding: 5px 10px;
                font-size: 12px;
                border-radius: 20px;
            }

    /* ========================================= */
    /* 🔥 BEST SELLERS (Premium Dark Look) */
    /* ========================================= */

    .products.best-sellers {
        background: linear-gradient(90deg, #3b0a1a, #7b0f2f);
        color: white;
    }

        .products.best-sellers h2 {
            color: #ffd700;
        }

        .products.best-sellers .card {
            background: #fff;
            color: #000;
            border-radius: 15px;
            position: relative;
        }

            /* BEST SELLER BADGE */
            .products.best-sellers .card::before {
                content: "🔥 BEST SELLER";
                position: absolute;
                top: 10px;
                right: 10px;
                background: #ffd700;
                color: #7b0f2f;
                padding: 5px 10px;
                font-size: 12px;
                font-weight: bold;
                border-radius: 20px;
            }

            /* GLOW EFFECT */
            .products.best-sellers .card:hover {
                box-shadow: 0 0 20px rgba(255,215,0,0.7);
            }

/* PRICE BOX */
.price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

/* MRP (CUT PRICE) */
.mrp {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

/* SELLING PRICE */
.selling-price {
    color: #7b0f2f;
    font-size: 18px;
    font-weight: bold;
}

/* DISCOUNT BADGE (OPTIONAL BUT PREMIUM 🔥) */
.card::after {
    /*content: "20% OFF";*/
    position: absolute;
    top: 10px;
    left: 10px;
    background: #d32f2f;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 5px;
}

/* DISCOUNT BADGE */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #ff1744, #ff5252);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
    /* BLINK EFFECT */
    animation: blink 1s infinite alternate;
}

/* BLINK ANIMATION */
@keyframes blink {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255,0,0,0.5);
    }

    100% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(255,0,0,1);
    }
}

.discount-badge {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 rgba(255,0,0,0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(255,0,0,0.8);
    }

    100% {
        box-shadow: 0 0 0 rgba(255,0,0,0.5);
    }
}

.hero-slider {
    width: 100%;
    overflow: hidden;
}

/* THIS is important */
.hero-wrapper {
    display: flex;
    width: 100%; /* 2 slides */
}

/* Each slide must take FULL screen */
.slide {
    width: 100vw; /* 🔥 key fix */
    height: 100vh;
    flex-shrink: 0;
}

/* Optional styling */
.hero, .nc-hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* 🔥 stops red scroll issue */
}

.hero-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

/* KEY FIX */
.slide {
    min-width: 100%; /* ✅ instead of width:100vw */
    height: 100vh;
    flex-shrink: 0;
}
.hero {
    background: #f5f5f5; /* light */
}

.nc-hero {
    background: #2d1200; /* dark */
}


/* ============================= */
/* CATEGORY PAGE ENHANCEMENT 🔥 */
/* ============================= */

/* HEADER IMPROVEMENT */
.nc-page-header {
    background: linear-gradient(to right, #fff, #f8f3ec);
    border-bottom: 1px solid var(--nc-border);
    padding: 50px 0;
}

    .nc-page-header h1 {
        font-family: var(--nc-font-serif);
        font-size: 36px;
        color: var(--nc-dark2);
        margin-top: 5px;
    }

.nc-breadcrumb {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--nc-muted);
}

/* RESULTS BAR */
.nc-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--nc-muted);
}

/* GRID IMPROVEMENT */
.nc-product-grid {
    grid-template-columns: repeat(4, 1fr); /* desktop better */
    gap: 28px;
}

/* CARD UPGRADE */
.nc-product-card {
    background: #fff;
    border: 1px solid rgba(180,140,100,0.15);
    transition: all 0.3s ease;
    position: relative;
}

    .nc-product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

/* IMAGE AREA */
.nc-product-img-wrap {
    height: 280px;
    background: #f5efe6;
}

/* BADGE */
.nc-product-badge {
    background: linear-gradient(45deg, #7b0f2f, #a8325a);
    color: #fff;
    font-size: 10px;
}

/* HOVER QUICK ACTION 🔥 */
.nc-product-card::after {
    content: "Quick View";
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--nc-dark);
    color: var(--nc-gold);
    padding: 6px 14px;
    font-size: 11px;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.nc-product-card:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* PRODUCT NAME */
.nc-product-name {
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

    .nc-product-name:hover {
        color: var(--nc-gold);
    }

/* PRICE ROW */
.nc-product-price-row {
    margin-bottom: 14px;
}

.nc-price {
    font-size: 17px;
    font-weight: 600;
}

/* ADD TO CART BUTTON 🔥 */
.nc-btn-add-cart {
    background: var(--nc-dark);
    color: var(--nc-gold);
    border: none;
    font-weight: 500;
}

    .nc-btn-add-cart:hover {
        background: var(--nc-gold);
        color: var(--nc-dark);
    }

/* PAGINATION IMPROVEMENT */
.nc-page-btn {
    transition: 0.2s;
}

    .nc-page-btn:hover {
        background: var(--nc-dark2);
        color: var(--nc-gold);
    }

/* EMPTY STATE */
.nc-empty-state {
    background: #fff;
    border: 1px dashed var(--nc-border);
    border-radius: 10px;
}

/* ============================= */
/* RESPONSIVE 🔥 */
/* ============================= */

@media (max-width: 1100px) {
    .nc-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nc-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .nc-product-img-wrap {
        height: 220px;
    }

    .nc-page-header h1 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .nc-product-grid {
        grid-template-columns: 1fr;
    }
}

/* IMAGE WRAP */
.nc-product-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

    /* BOTH IMAGES */
    .nc-product-img-wrap img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

/* MAIN IMAGE */
.img-main {
    opacity: 1;
    z-index: 1;
}

/* HOVER IMAGE */
.img-hover {
    opacity: 0;
    z-index: 2;
}

/* HOVER EFFECT (IMAGE CHANGE) */
.nc-product-card:hover .img-main {
    opacity: 0;
    transform: scale(1.05);
}

.nc-product-card:hover .img-hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ACTION ICONS */
.nc-product-actions {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 3;
}

/* SHOW ON HOVER */
.nc-product-card:hover .nc-product-actions {
    opacity: 1;
    transform: translateY(0);
}

/* BUTTON STYLE */
.nc-product-actions button {
    background: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-size: 16px;
    transition: 0.2s;
}

    /* HOVER EFFECT */
    .nc-product-actions button:hover {
        background: #7b0f2f;
        color: white;
    }


.nc-category-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.nc-filter-sidebar {
    width: 260px;
    min-width: 260px;
}

.nc-products-area {
    flex: 1;
}

.nc-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.nc-results-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nc-sort-wrap {
    margin-left: auto;
}

/* ── Nav Base ── */
.nc-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nc-nav-item {
    position: relative;
}

.nc-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
}

    .nc-nav-link:hover {
        color: #d4af37;
    }

.nc-nav-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.nc-nav-item:hover .nc-nav-arrow {
    transform: rotate(180deg);
}

/* ── Level 1 Dropdown ── */
.nc-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e8d5b0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 1000;
    padding: 8px 0;
    animation: fadeDown 0.2s ease;
}

.nc-nav-item:hover > .nc-dropdown {
    display: block;
}

.nc-dropdown-item {
    position: relative;
}

.nc-dropdown-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    color: #3a2a1a;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

    .nc-dropdown-link:hover {
        background: #fdf6e3;
        color: #d4af37;
    }

/* ── Level 2 Subdropdown ── */
.nc-subdropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e8d5b0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 1001;
    padding: 8px 0;
    animation: fadeRight 0.2s ease;
}

.nc-dropdown-item:hover > .nc-subdropdown {
    display: block;
}

.nc-subdropdown-link {
    display: block;
    padding: 10px 18px;
    color: #3a2a1a;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

    .nc-subdropdown-link:hover {
        background: #fdf6e3;
        color: #d4af37;
    }

/* ── Animations ── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .nc-nav {
        display: none; /* Mobile mein hamburger menu use karo */
    }
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

#cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* USER MENU */
.user-menu {
    position: relative;
    cursor: pointer;
}

.user-icon {
    font-size: 20px;
}

/* DROPDOWN */
.user-dropdown {
    position: absolute;
    top: 30px;
    right: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}

/* SHOW ON HOVER */
.user-menu:hover .user-dropdown {
    display: flex;
}

/* LINKS */
.user-dropdown a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

    .user-dropdown a:hover {
        background: #f5f5f5;
        color: #d4af37;
    }

/* USER NAME */
.user-name {
    padding: 10px 15px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}



/* ═══════════════════════════════════════════
   SITE NAV — Mega Menu
   Uses your existing CSS variables if any;
   falls back to these defaults.
═══════════════════════════════════════════ */
:root {
    --nav-bg: #fff;
    --nav-border: #e8e0d8;
    --nav-accent: #b5623b; /* your brand color */
    --nav-text: #1a1a1a;
    --nav-muted: #888;
    --nav-hover: #b5623b;
    --nav-shadow: 0 16px 48px rgba(0,0,0,.10);
    --nav-font: 'Cormorant Garamond', Georgia, serif; /* elegant for ethnic wear */
}

/* Root */
.site-nav {
    position: relative;
    z-index: 500;
}

.nav-root {
    display: flex;
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav Item */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: 1rem 1.2rem;
    font-family: var(--nav-font);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--nav-text);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
    border-bottom: 2px solid transparent;
}

    .nav-link:hover,
    .nav-item.has-mega:hover .nav-link {
        color: var(--nav-accent);
        border-bottom-color: var(--nav-accent);
    }

/* Chevron */
.nav-chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform .2s;
    margin-top: 1px;
}

.nav-item.has-mega:hover .nav-chevron {
    transform: rotate(180deg);
}

/* ── Mega Panel ── */
.mega-panel {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 520px;
    max-width: 820px;
    background: var(--nav-bg);
    border-top: 2px solid var(--nav-accent);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--nav-shadow);
    z-index: 600;
}

.nav-item.has-mega:hover .mega-panel,
.nav-item.has-mega:focus-within .mega-panel {
    display: block;
}

.mega-body {
    display: flex;
    gap: 0;
    padding: 1.75rem 1.5rem;
    align-items: flex-start;
}

/* ── Mega Columns ── */
.mega-col {
    flex: 1;
    padding: 0 1.25rem;
    min-width: 140px;
}

    .mega-col + .mega-col {
        border-left: 1px solid var(--nav-border);
    }

.mega-col-sub {
    background: #faf8f5;
    margin: -1.75rem 0;
    padding: 1.75rem 1.25rem;
}

.mega-col-title {
    font-family: var(--nav-font);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--nav-muted);
    margin: 0 0 .85rem;
}

.mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .mega-list li {
        margin-bottom: .5rem;
    }

    .mega-list a {
        font-size: .9rem;
        color: var(--nav-text);
        text-decoration: none;
        display: inline-block;
        transition: color .15s, transform .15s;
    }

        .mega-list a:hover {
            color: var(--nav-accent);
            transform: translateX(4px);
        }

/* ── CTA column ── */
.mega-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 0 0 1.5rem;
    min-width: 140px;
}

.mega-cta-link {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--nav-accent);
    text-decoration: none;
    border-bottom: 1px solid var(--nav-accent);
    padding-bottom: 2px;
    transition: opacity .2s;
}

    .mega-cta-link:hover {
        opacity: .7;
    }

.mega-thumb {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    opacity: .85;
}

/* ── Mobile: hide mega, show hamburger (wire up your existing mobile menu JS) ── */
@media (max-width: 768px) {
    .mega-panel {
        display: none !important;
    }

    .nav-chevron {
        display: none;
    }
}