    /* ===== 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: 1px;
        padding: 6px 18px;
        border-radius: 30px;
        margin-bottom: 20px;
    }

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

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

    /* .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-family: cursive; */
        font-size: 17px;
        color: var(--dark);
        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: 400px;
        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: 7px 14px;
        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: 34px;
        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(--dark);
        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: 68px;
        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: auto;
        }
        
        .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;
}


  .cart-toast {

        position: fixed;

        top: 20px;

        right: 20px;

        width: 360px;

        max-width: calc(100vw - 30px);

        background: #fff;

        border-radius: 12px;

        box-shadow: 0 10px 35px rgba(0, 0, 0, .18);

        display: flex;

        align-items: center;

        gap: 15px;

        padding: 18px;

        z-index: 99999;

        transform: translateX(120%);

        transition: all .35s ease;

    }

    .cart-toast.show {

        transform: translateX(0);

    }


    .toast-icon {

        color: #2e7d32;

        font-size: 28px;

        flex-shrink: 0;

    }

    .toast-content {

        flex: 1;

    }

    .toast-content strong {

        display: block;

        font-size: 16px;

        margin-bottom: 4px;

    }

    .toast-content small {

        color: #666;

        display: block;

    }

    .toast-btn {

        background: #ff4d6d;

        color: #fff;

        text-decoration: none;

        padding: 8px 14px;

        border-radius: 8px;

        white-space: nowrap;

        font-size: 14px;

    }

    .toast-btn:hover {

        color: #fff;

        text-decoration: none;

    }





.wishlist-toast {
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

.wishlist-toast .swal2-title {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.wishlist-toast .swal2-icon {
    margin: 0 10px 0 0 !important;
    transform: scale(.75);
}


.wishlist-add-cart-btn {
    width: 100%;
    border: none;
    border-radius: 10px;

    padding: 13px 18px;

    background: #d3304e;
    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition: all .25s ease;
}

.wishlist-add-cart-btn:hover {
    background: #b82440;
    transform: translateY(-1px);
}

.wishlist-add-cart-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}






    /* =========================================
   WISHLIST DRAWER
========================================= */

.wishlist-header-btn {
    position: relative;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
}

.wishlist-header-btn i {
    transition: all .25s ease;
}

.wishlist-header-btn:hover i {
    color: #d3304e;
    transform: scale(1.1);
}


/* Count */

.wishlist-header-count {
    position: absolute;
    top: -9px;
    right: -10px;

    min-width: 18px;
    height: 18px;

    padding: 0 5px;

    background: #d3304e;
    color: #fff;

    border-radius: 50px;

    font-size: 10px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}


/* Overlay */

.wishlist-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .45);

    z-index: 99998;

    opacity: 0;
    visibility: hidden;

    transition: all .3s ease;
}

.wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Drawer */

.wishlist-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: 420px;
    max-width: 92vw;
    height: 100vh;

    background: #fff;

    z-index: 99999;

    transform: translateX(100%);

    transition: transform .35s cubic-bezier(.4, 0, .2, 1);

    display: flex;
    flex-direction: column;

    box-shadow: -10px 0 35px rgba(0, 0, 0, .15);
}

.wishlist-drawer.active {
    transform: translateX(0);
}


/* Header */

.wishlist-drawer-header {
    padding: 22px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eee;

    background: #fff;
}

.wishlist-drawer-header h3 {
    margin: 0 0 4px;

    font-size: 20px;
    font-weight: 700;

    color: #222;
}

.wishlist-drawer-header h3 i {
    color: #d3304e;
    margin-right: 7px;
}

.wishlist-drawer-header span {
    color: #888;
    font-size: 13px;
}


/* Close */

.wishlist-close-btn {
    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: #f5f5f5;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .2s ease;
}

.wishlist-close-btn:hover {
    background: #d3304e;
    color: #fff;
}


/* Body */

.wishlist-drawer-body {
    flex: 1;

    overflow-y: auto;

    padding: 15px;
}


/* Wishlist item */

.wishlist-item {
    display: flex;

    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid #eee;
}

.wishlist-item-image {
    width: 82px;
    height: 82px;

    flex-shrink: 0;

    border-radius: 10px;

    overflow: hidden;

    background: #f7f7f7;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.wishlist-item-content {
    flex: 1;
    min-width: 0;
}

.wishlist-item-name {
    display: block;

    color: #222;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;

    text-decoration: none;

    margin-bottom: 5px;
}

.wishlist-item-name:hover {
    color: #d3304e;
}

.wishlist-item-price {
    font-size: 14px;
    font-weight: 700;

    color: #d3304e;
}


.wishlist-item-remove {
    border: 0;
    background: transparent;

    color: #aaa;

    cursor: pointer;

    align-self: flex-start;

    font-size: 14px;

    padding: 4px;
}

.wishlist-item-remove:hover {
    color: #dc3545;
}


/* Empty state */

.wishlist-empty {
    min-height: 350px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: #777;
}

.wishlist-empty i {
    font-size: 55px;

    color: #eee;

    margin-bottom: 18px;
}

.wishlist-empty h4 {
    margin: 0 0 7px;

    color: #333;
}

.wishlist-empty p {
    margin: 0;

    font-size: 13px;
}


/* Loading */

.wishlist-loading {
    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #888;
}


/* Footer */

.wishlist-drawer-footer {
    padding: 15px 20px;

    border-top: 1px solid #eee;

    background: #fff;
}

.wishlist-view-all {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 15px;

    border-radius: 8px;

    background: #d3304e;

    color: #fff !important;

    text-decoration: none;

    font-weight: 600;

    transition: all .2s ease;
}

.wishlist-view-all:hover {
    background: #b82440;
}




.wishlist-btn {
    transition: all .25s ease;
}

.wishlist-btn i {
    transition: all .25s ease;
}

.wishlist-btn.active i {
    color: #ff2f61;
    transform: scale(1.15);
}

.wishlist-btn.active {
    background: #fff0f4;
}

.wishlist-btn.processing {
    pointer-events: none;
    opacity: .7;
}


.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-rating i {
    font-size: 13px;
    color: #f5b301;
}


/* =========================================================
   CATEGORY TOGGLE BUTTONS
   ========================================================= */

.category-toggle-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin: 25px 0 35px;
}


.category-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    border-radius: 30px;

    border: 1px solid #e2e8f0;

    background: #ffffff;

    color: #334155;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.25s ease;
}


.category-toggle:hover {
    background: #fff1f2;

    color: #ff4757;

    border-color: #ff4757;

    transform: translateY(-2px);
}


.category-toggle.active {
    background: #ff4757;

    color: #ffffff !important;

    border-color: #ff4757;

    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.25);
}


.category-toggle.active:hover {
    background: #e03d4f;

    color: #ffffff !important;
}


@media (max-width: 576px) {

    .category-toggle-wrapper {
        gap: 7px;
        margin: 20px 0 25px;
    }

    .category-toggle {
        padding: 8px 14px;
        font-size: 12px;
    }
}



/* =========================================================
   GLOBAL PAGINATION
   ========================================================= */

.pagination-wrapper {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 35px 0 25px !important;
    padding: 0 !important;
    clear: both !important;
}

.pagination-wrapper ul.pagination {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;

    width: auto !important;
}


/* ---------------------------------------------------------
   PAGE ITEM
   --------------------------------------------------------- */

.pagination-wrapper ul.pagination .page-item {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* ---------------------------------------------------------
   PAGE LINK
   --------------------------------------------------------- */

.pagination-wrapper ul.pagination .page-item .page-link {
    width: 40px !important;
    height: 40px !important;

    min-width: 40px !important;
    min-height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 12px !important;
    margin: 0 !important;

    border-radius: 8px !important;

    border: 1px solid #e2e8f0 !important;

    background: #f8fafc !important;

    color: #334155 !important;

    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    text-decoration: none !important;

    box-shadow: none !important;

    outline: none !important;

    transition: all 0.2s ease !important;
}


/* ---------------------------------------------------------
   HOVER
   --------------------------------------------------------- */

.pagination-wrapper ul.pagination .page-item .page-link:hover {
    background: #fff1f2 !important;
    color: #ff4757 !important;

    border-color: #ff4757 !important;

    transform: translateY(-2px) !important;

    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.15) !important;
}


/* ---------------------------------------------------------
   ACTIVE PAGE
   --------------------------------------------------------- */

.pagination-wrapper ul.pagination .page-item.active .page-link {
    background: #ff4757 !important;
    color: #ffffff !important;

    border-color: #ff4757 !important;

    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.25) !important;
}


/* ---------------------------------------------------------
   PREVIOUS / NEXT BUTTON
   --------------------------------------------------------- */

.pagination-wrapper ul.pagination .page-item:first-child .page-link,
.pagination-wrapper ul.pagination .page-item:last-child .page-link {
    font-size: 18px !important;
    font-weight: 700 !important;
}


/* ---------------------------------------------------------
   PREVIOUS / NEXT HOVER
   --------------------------------------------------------- */

.pagination-wrapper ul.pagination .page-item:first-child .page-link:hover,
.pagination-wrapper ul.pagination .page-item:last-child .page-link:hover {
    background: #ff4757 !important;
    color: #ffffff !important;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 576px) {

    .pagination-wrapper {
        margin: 25px 0 20px !important;
    }

    .pagination-wrapper ul.pagination {
        gap: 5px !important;
    }

    .pagination-wrapper ul.pagination .page-item .page-link {
        width: 36px !important;
        height: 36px !important;

        min-width: 36px !important;
        min-height: 36px !important;

        font-size: 13px !important;

        border-radius: 7px !important;
    }

    .pagination-wrapper ul.pagination .page-item:first-child .page-link,
    .pagination-wrapper ul.pagination .page-item:last-child .page-link {
        font-size: 16px !important;
    }
}






/* Mobile */

@media (max-width: 576px) {

    .wishlist-drawer {
        width: 100%;
        max-width: 100%;
    }

}


      @media (max-width:576px) {

        .cart-toast {

            left: 12px;

            right: 12px;

            top: 15px;

            width: auto;

            max-width: none;

            padding: 14px;

            gap: 10px;

        }

        .toast-icon {

            font-size: 22px;

        }

        .toast-content strong {

            font-size: 15px;

        }

        .toast-content small {

            font-size: 13px;

        }

        .toast-btn {

            padding: 7px 10px;

            font-size: 12px;

        }

    }


/* ========================================
   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;
    }
}



/* =========================================================
   FINAL MOBILE WIDTH FIX
   ========================================================= */

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    /*overflow-x: hidden !important;*/
}

@media (max-width: 768px) {

    body,
    main,
    #home,
    section,
    .hero-slider,
    .hero-banner,
    .occasion-section,
    .bestseller-section,
    .referral-section,
    .subscription-section,
    .gift-collection-section,
    .process-section,
    .customer-testimonials,
    footer {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-banner {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "content"
            "image"
            "categories" !important;

        width: 100% !important;
        padding: 28px 14px 20px !important;
        column-gap: 0 !important;
    }

    .hero-banner .hero-content,
    .hero-banner .hero-image,
    .hero-category-strip {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-banner .hero-image > img {
        width: 95% !important;
        max-width: 500px !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .hero-category-strip {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }

    .products-container,
    .how-container,
    .referral-container,
    .subscription-container,
    .gift-collection-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* =========================================
   OCCASION SECTION
========================================= */

.occasion-section {
    width: 100%;
    padding: 20px 0 70px;
    background: transparent;
}

.occasion-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   OCCASION HEADING
========================================= */

.occasion-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.occasion-heading-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #fff0f5,
        #ffe4ec
    );

    color: #e91e63;

    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.10);
}

.occasion-heading-icon i {
    font-size: 19px;
}


.occasion-heading-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.occasion-heading-content h3 {
    margin: 0;

    font-size: 24px;
    font-weight: 700;

    color: #1e272e;

    line-height: 1.2;
}

.occasion-heading-content p {
    margin: 0;

    font-size: 13px;
    color: #777;

    line-height: 1.4;
}


.occasion-heading-line {
    flex: 1;

    height: 1px;

    margin-left: 8px;

    background: linear-gradient(
        to right,
        #eeeeee,
        transparent
    );
}


/* =========================================
   OCCASION GRID
========================================= */

.occasion-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;
}


/* =========================================
   OCCASION CARD
========================================= */

.occasion-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    overflow: hidden;

    text-decoration: none;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.occasion-card:hover {
    transform: translateY(-6px);

    border-color: #ffd2df;

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.10);

    text-decoration: none;
}


/* =========================================
   OCCASION IMAGE
========================================= */

.occasion-image {
    position: relative;

    width: 100%;
    height: 155px;

    overflow: hidden;

    background: #fafafa;
}

.occasion-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.occasion-card:hover .occasion-image img {
    transform: scale(1.06);
}


/* =========================================
   OCCASION CONTENT
========================================= */

.occasion-content {
    position: relative;

    padding: 16px 46px 17px 16px;

    min-height: 92px;
}

.occasion-content h4 {
    margin: 0 0 5px;

    font-size: 17px;
    font-weight: 700;

    color: #1e272e;
}

.occasion-content p {
    margin: 0;

    font-size: 12px;
    line-height: 1.5;

    color: #777;
}


/* =========================================
   OCCASION ARROW
========================================= */

.occasion-arrow {
    position: absolute;

    right: 14px;
    bottom: 16px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0f5;

    color: #e91e63;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.occasion-arrow i {
    font-size: 11px;
}

.occasion-card:hover .occasion-arrow {
    background: #e91e63;
    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================
   ACTIVE OCCASION
========================================= */

.occasion-card.active {
    border-color: #ffd1df;
}

.occasion-card.active .occasion-content h4 {
    color: #e91e63;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .occasion-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 768px) {

    .occasion-section {
        padding: 15px 0 50px;
    }

    .occasion-container {
        padding: 0 15px;
    }

    .occasion-heading {
        margin-bottom: 20px;
    }

    .occasion-heading-content h3 {
        font-size: 21px;
    }

    .occasion-heading-content p {
        font-size: 12px;
    }

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

    .occasion-image {
        height: 135px;
    }

}


@media (max-width: 480px) {

    .occasion-heading {
        gap: 10px;
    }

    .occasion-heading-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;

        border-radius: 11px;
    }

    .occasion-heading-icon i {
        font-size: 16px;
    }

    .occasion-heading-content h3 {
        font-size: 19px;
    }

    .occasion-heading-content p {
        font-size: 11px;
    }

    .occasion-heading-line {
        display: none;
    }

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

    .occasion-image {
        height: 115px;
    }

    .occasion-content {
        padding: 12px 38px 13px 12px;
        min-height: 82px;
    }

    .occasion-content h4 {
        font-size: 14px;
    }

    .occasion-content p {
        font-size: 10px;
    }

    .occasion-arrow {
        right: 9px;
        bottom: 12px;

        width: 26px;
        height: 26px;
    }

}



@media (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 0;
        /*left: -300px;*/
        /*width: 280px;*/
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.5);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 9998;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}


.referral-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 240px;
    padding-left: 28px;
    border-left: 1px solid #eee1e2;
}

.referral-qr {
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    margin: 8px 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.referral-qr canvas,
.referral-qr img {
    width: 110px !important;
    height: 110px !important;
    display: block;
}

.reward-badge {
    margin-bottom: 6px;
}

.refer-now-btn {
    width: 100%;
    max-width: 250px;
}

@media (max-width: 768px) {
    .referral-action {
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .referral-qr canvas,
    .referral-qr img {
        width: 95px !important;
        height: 95px !important;
    }

    .refer-now-btn {
        max-width: 220px;
    }
}





    