    /* ===== RESET & ROOT VARIABLES ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        scroll-behavior: smooth;
    }

    :root {
        --primary: #ff4757;
        --primary-dark: #e03d4f;
        --secondary: #2f3542;
        --dark: #1e272e;
        --light-bg: #f8f9fa;
        --text: #2c3e50;
        --text-light: #747d8c;
        --white: #ffffff;
        --shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --radius: 16px;
    }

    body {
        background: var(--white);
        color: var(--text);
        overflow-x: hidden;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    /* ===== SCROLLBAR STYLING ===== */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }

  
    /* ===== HERO BANNER ===== */
    .hero-banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 60px 8% 80px;
        background: linear-gradient(135deg, #fff5f7 0%, #ffffff 60%, #fff9fa 100%);
        min-height: 80vh;
        position: relative;
        overflow: hidden;
    }

    .hero-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 71, 87, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .hero-content {
        max-width: 52%;
        position: relative;
        z-index: 2;
    }

    .hero-content .tagline {
        display: inline-block;
        background: rgba(255, 71, 87, 0.1);
        color: var(--primary);
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 3px;
        padding: 6px 18px;
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 52px;
        font-weight: 800;
        line-height: 1.12;
        color: var(--dark);
        margin-bottom: 20px;
    }

    .hero-content h1 span {
        color: var(--primary);
        position: relative;
    }

    .hero-content h1 span::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(255, 71, 87, 0.15);
        border-radius: 4px;
    }

    .hero-content p {
        font-size: 17px;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 32px;
        max-width: 480px;
    }

    .hero-btns {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        transition: var(--transition);
        border: none;
        cursor: pointer;
    }

    .btn-primary {
        background: var(--primary);
        color: var(--white);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
    }

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 71, 87, 0.4);
    }

    .btn-secondary {
        background: var(--white);
        color: var(--secondary);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
        border: 1px solid #e8e8e8;
    }

    .btn-secondary:hover {
        background: var(--secondary);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .hero-image {
        position: relative;
        z-index: 2;
    }

    .hero-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 30px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        animation: float 4s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    .hero-image .floating-badge {
        position: absolute;
        bottom: -20px;
        left: -20px;
        background: var(--white);
        padding: 14px 22px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-hover);
        display: flex;
        align-items: center;
        gap: 12px;
        animation: float 3s ease-in-out infinite 0.5s;
    }

    .hero-image .floating-badge i {
        font-size: 30px;
        color: #ffb703;
    }

    .hero-image .floating-badge div h4 {
        font-size: 14px;
        color: var(--text);
    }

    .hero-image .floating-badge div p {
        font-size: 12px;
        color: var(--text-light);
    }

    /* ===== SECTION TITLES ===== */
    .section-title {
        text-align: center;
        margin: 80px 0 40px;
        padding: 0 20px;
    }

    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--primary);
        border-radius: 4px;
    }

    .section-title p {
        color: var(--text-light);
        font-size: 16px;
        margin-top: 12px;
    }


    /* ===== RATING - FIXED HEIGHT ===== */
    .rating {
        color: #ffb703;
        font-size: 14px;
        margin-bottom: 10px;
        letter-spacing: 2px;
        min-height: 24px;
    }

    .rating span {
        color: var(--text-light);
        font-size: 13px;
        margin-left: 4px;
        letter-spacing: 0;
    }

    /* ===== PRICE ROW - FIXED HEIGHT ===== */
    .price-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        min-height: 36px;
        flex-wrap: wrap;
    }

    .price-current {
        font-size: 22px;
        font-weight: 700;
        color: var(--primary);
    }

    .price-original {
        font-size: 15px;
        color: #b0b0b0;
        text-decoration: line-through;
    }

    .price-discount {
        font-size: 12px;
        font-weight: 600;
        color: #2ecc71;
        background: rgba(46, 204, 113, 0.12);
        padding: 2px 10px;
        border-radius: 20px;
        white-space: nowrap;
    }

    /* ===== ADD TO CART BUTTON - FIXED POSITION ===== */
    .add-to-cart {
        width: 100%;
        background: var(--secondary);
        color: var(--white);
        border: none;
        padding: 13px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: auto;
        /* Push button to bottom */
        flex-shrink: 0;
    }

    .add-to-cart:hover {
        background: var(--primary);
        transform: scale(1.02);
    }

    /* ===== BADGE & WISHLIST - FIXED POSITION ===== */
    .product-card .badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: var(--primary);
        color: var(--white);
        padding: 4px 14px;
        border-radius: 30px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 5;
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    }

    .product-card .badge.green {
        background: #2ecc71;
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    }

    .product-card .badge.gold {
        background: #f39c12;
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    }

    .product-card .wishlist-btn {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--white);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        z-index: 5;
        color: #ccc;
        font-size: 16px;
    }

    .product-card .wishlist-btn:hover {
        background: var(--primary);
        color: var(--white);
        transform: scale(1.1);
    }


    @media (max-width: 480px) {
        .product-grid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .product-img {
            height: 150px;
        }

        .product-details h3 {
            font-size: 13px;
            min-height: 36px;
        }

        .price-current {
            font-size: 16px;
        }

        .price-original {
            font-size: 12px;
        }

        .rating {
            font-size: 11px;
            min-height: 20px;
        }

        .product-card .badge {
            font-size: 9px;
            padding: 2px 10px;
            top: 10px;
            left: 10px;
        }

        .product-card .wishlist-btn {
            width: 28px;
            height: 28px;
            font-size: 13px;
            top: 10px;
            right: 10px;
        }

        .product-card {
            min-height: 290px;
        }
    }

    /* ===== FOOTER ===== */
    footer {
        background: var(--dark);
        color: #a4b0be;
        padding: 70px 8% 20px;
        margin-top: 40px;
    }

    .footer-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
    }

    .footer-col h3 {
        color: var(--white);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 24px;
        position: relative;
        padding-bottom: 12px;
    }

    .footer-col h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: var(--primary);
        border-radius: 4px;
    }

    .footer-logo {
        font-size: 28px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 18px;
        display: block;
    }

    .footer-logo span {
        color: var(--primary);
    }

    .footer-col p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        color: #a4b0be;
        text-decoration: none;
        font-size: 14px;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .footer-col ul li a:hover {
        color: var(--primary);
        transform: translateX(6px);
    }

    .footer-col ul li a i {
        font-size: 12px;
        opacity: 0;
        transition: var(--transition);
    }

    .footer-col ul li a:hover i {
        opacity: 1;
    }

    .social-links {
        display: flex;
        gap: 12px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.06);
        color: var(--white);
        border-radius: 50%;
        transition: var(--transition);
        font-size: 16px;
    }

    .social-links a:hover {
        background: var(--primary);
        transform: translateY(-4px) scale(1.05);
    }

    .footer-col .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .footer-col .contact-item i {
        width: 20px;
        color: var(--primary);
        font-size: 16px;
    }

    .newsletter {
        display: flex;
        margin-top: 16px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .newsletter input {
        flex: 1;
        padding: 13px 18px;
        border: none;
        outline: none;
        background: rgba(255, 255, 255, 0.06);
        color: var(--white);
        font-size: 14px;
    }

    .newsletter input::placeholder {
        color: #6a7a8a;
    }

    .newsletter button {
        background: var(--primary);
        border: none;
        color: var(--white);
        padding: 13px 22px;
        cursor: pointer;
        transition: var(--transition);
        font-size: 16px;
    }

    .newsletter button:hover {
        background: var(--primary-dark);
    }

    .footer-bottom {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin-top: 50px;
        padding-top: 25px;
        font-size: 14px;
        color: #6a7a8a;
    }

    .footer-bottom span {
        color: var(--primary);
    }

    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 1024px) {
        .hero-content h1 {
            font-size: 40px;
        }

        .hero-image img {
            max-width: 400px;
        }
    }

    @media (max-width: 992px) {
        .hero-banner {
            flex-direction: column;
            text-align: center;
            padding: 40px 5% 60px;
            min-height: auto;
        }

        .hero-content {
            max-width: 100%;
            margin-bottom: 40px;
        }

        .hero-content p {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            justify-content: center;
        }

        .hero-image img {
            max-width: 380px;
        }

        .hero-image .floating-badge {
            left: 10px;
            bottom: -10px;
        }
    }



    @media (max-width: 480px) {
        .navbar {
            padding: 12px 4%;
        }

        .logo {
            font-size: 22px;
        }

        .nav-icons {
            gap: 10px;
            font-size: 17px;
        }

        .nav-icons i {
            padding: 4px;
        }

        .cart-count {
            font-size: 9px;
            padding: 1px 6px;
            min-width: 16px;
            top: -2px;
            right: -4px;
        }

        .hero-content h1 {
            font-size: 26px;
        }

        .hero-content p {
            font-size: 15px;
        }

        .btn {
            padding: 12px 24px;
            font-size: 13px;
        }

        .hero-image img {
            max-width: 260px;
        }

        .category-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .category-card {
            padding: 20px 12px;
        }

        .category-card i {
            font-size: 26px;
        }

        .category-card h3 {
            font-size: 13px;
        }

        .product-grid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .product-img {
            height: 150px;
        }

        .product-details h3 {
            font-size: 13px;
        }

        .price-current {
            font-size: 16px;
        }

        .price-original {
            font-size: 12px;
        }

        .rating {
            font-size: 11px;
        }

        .product-card .badge {
            font-size: 9px;
            padding: 2px 10px;
            top: 10px;
            left: 10px;
        }

        .product-card .wishlist-btn {
            width: 28px;
            height: 28px;
            font-size: 13px;
            top: 10px;
            right: 10px;
        }

        .section-title h2 {
            font-size: 22px;
        }

        .section-title p {
            font-size: 14px;
        }
    }

    /* ===== ANIMATION ON SCROLL (Simple) ===== */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }


    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .footer-logo span {
        font-size: 24px;
        font-weight: bold;
        color: #fff;
    }

    .footer-logo span span {
        color: #ff6b6b; /* Accent color for 'Wonder' */
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
        .footer-logo img {
            height: 40px;
        }
        
        .footer-logo span {
            font-size: 20px;
        }
    }

/*==========================
HEADER
==========================*/




/* ========================================
   HEADER STYLES - COMPLETE
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f7f4;
}

/* ---- Navbar ---- */
.navbar {
    background: #ffffff;
    padding: 0 2.5rem;
    height: 80px;           /* Thoda height bhi increase */
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid #f0ede8;
}

/* ---- Logo - BIGGER ---- */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 100px;           /* 🔥 Bada logo */
    width: auto;
    object-fit: contain;
    display: block;
}

/* ---- Navigation Links ---- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2d2a24;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.25s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff3131;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff3131;
    border-radius: 4px;
}

/* ---- Categories Dropdown ---- */
.dropdown-wrapper {
    position: relative;
}

.dropdown-wrapper .dropdown-toggle {
    cursor: pointer;
}

.dropdown-wrapper .dropdown {
    position: absolute;
    top: 38px;
    left: -12px;
    background: #ffffff;
    min-width: 220px;
    padding: 0.6rem 0;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    border: 1px solid #efece7;
    z-index: 100;
}

.dropdown-wrapper:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.6rem 1.4rem;
    font-weight: 400;
    color: #2d2a24;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.dropdown li a i {
    width: 22px;
    color: #ff3131;
    font-size: 1rem;
}

.dropdown li a:hover {
    background: #faf6ef;
    color: #ff3131;
}

/* ---- Account Dropdown (Desktop - Hover) ---- */
.login-dropdown {
    position: relative;
    margin-left: auto;
}

.login-btn {
    background: transparent;
    border: none;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d2a24;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 30px;
    transition: background 0.25s ease;
}

.login-btn i {
    font-size: 1.15rem;
    color: #ff3131;
}

.login-btn:hover {
    background: #f5f0ea;
}

.login-menu {
    position: absolute;
    top: 48px;
    right: 0;
    background: #ffffff;
    min-width: 210px;
    padding: 0.6rem 0;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    border: 1px solid #efece7;
    z-index: 100;
}

.login-dropdown:hover .login-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.6rem 1.4rem;
    color: #2d2a24;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.login-menu a i {
    width: 22px;
    color: #ff3131;
    font-size: 1rem;
}

.login-menu a:hover {
    background: #faf6ef;
    color: #ff3131;
}

.login-menu hr {
    margin: 0.4rem 1rem;
    border: 0;
    border-top: 1px solid #ede9e2;
}

/* ---- Right Icons ---- */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    color: #2d2a24;
}

.nav-icons i {
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.2s;
    color: #3d3730;
}

.nav-icons i:hover {
    color: #ff3131;
    transform: scale(1.05);
}

.cart-wrapper {
    position: relative;
    display: inline-flex;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff3131;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.35);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2d2a24;
    padding: 4px;
    transition: color 0.25s;
}

.menu-toggle:hover {
    color: #ff3131;
}

/* ---- Mobile Menu Header ---- */
.mobile-menu-header {
    display: none;
}

/* ---- Mobile Overlay ---- */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(3px);
    z-index: 998;
    display: none;
}

.nav-overlay.show {
    display: block;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media screen and (max-width: 992px) {
    .navbar {
        padding: 0 1.5rem;
    }
    .nav-links {
        gap: 1.2rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media screen and (max-width: 768px) {
    .navbar {
        height: 70px;           /* Mobile me thoda adjust */
        padding: 0 1rem;
    }

    /* 🔥 LOGO - MOBILE ME BHI BADA */
    .logo img {
        height: 70px;           /* Pehle 34px tha - ab bada */
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -300px;
        width: 290px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 1.2rem 2rem;
        gap: 0.2rem;
        box-shadow: 4px 0 40px rgba(0, 0, 0, 0.06);
        transition: left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
        border-right: 1px solid #efece7;
        z-index: 1000;
    }

    .nav-links.open {
        left: 0;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 1.2rem;
        margin-bottom: 0.8rem;
        border-bottom: 2px solid #f0ede8;
    }

    .mobile-logo {
        height: 70px;           /* Mobile menu me bhi bada */
        width: auto;
        object-fit: contain;
    }

    .menu-close-btn {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: #2d2a24;
        cursor: pointer;
        padding: 4px 10px;
        border-radius: 30px;
        transition: background 0.2s;
    }

    .menu-close-btn:hover {
        background: #f5f0ea;
    }

    .nav-links a {
        width: 100%;
        padding: 0.6rem 0.2rem;
        font-size: 1rem;
        border-bottom: 1px solid transparent;
    }

    .nav-links a.active::after {
        display: none;
    }

    /* Categories Dropdown - Mobile */
    .dropdown-wrapper {
        width: 100%;
    }

    .dropdown-wrapper .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-wrapper .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        padding: 0.2rem 0 0.4rem 1.2rem;
        min-width: 100%;
        border: none;
        display: none;
        border-radius: 0;
        transition: none;
    }

    .dropdown-wrapper.open .dropdown {
        display: block;
    }

    .dropdown li a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    /* Account Dropdown - Mobile */
    .login-dropdown {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
        border-top: 2px solid #f0ede8;
        padding-top: 0.8rem;
    }

    .login-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 0.6rem 0.2rem;
        border-radius: 0;
        background: transparent;
    }

    .login-btn:hover {
        background: transparent;
    }

    .login-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.2rem 0 0.4rem 1.2rem;
        min-width: 100%;
        border: none;
        display: none;
        border-radius: 0;
        transition: none;
        background: transparent;
        right: auto;
    }

    .login-dropdown.open .login-menu {
        display: block;
    }

    .login-menu a {
        padding: 0.5rem 0.8rem;
    }

    .login-menu hr {
        margin: 0.3rem 0.8rem;
    }

    /* Right Icons - Mobile */
    .nav-icons {
        gap: 0.9rem;
    }

    .nav-icons i {
        font-size: 1.1rem;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        top: -6px;
        right: -8px;
    }
}

/* ---- Extra Small Screens ---- */
@media screen and (max-width: 420px) {
    .navbar {
        padding: 0 0.6rem;
        height: 62px;
    }

    /* 🔥 LOGO - CHHOTI SCREEN ME BHI BADA */
    .logo img {
        height: 70px;           /* Pehle 28px tha - ab bada */
    }

    .nav-icons {
        gap: 0.6rem;
    }

    .nav-icons i {
        font-size: 0.95rem;
    }

    .mobile-logo {
        height: 70px;
    }

    .nav-links {
        width: 260px;
        left: -270px;
    }
}


    