/* CSS Variables */
        :root {
            --ivory: #f1ebf0;
            --accent: #211832;
            --taupe: #14110fff;
            --charcoal: #211832;
            --grey: #211832;
            --button-hover: #eae5ee;
            --footer-bg: #EAE6E1;
            --white: #FFFFFF;
            --border-radius: 16px;
            --transition: all 0.3s ease;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--ivory);
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
        }

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

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background-color: var(--accent);
            margin: 15px auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: white;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

        .btn:hover {
            background-color: var(--charcoal);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Header Styles */
        header {
            background-color: var(--ivory);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--accent);
        }

        .search-container {
            position: relative;
            width: 300px;
            margin: 0 auto;
        }

        .search-input {
            width: 100%;
            padding: 10px 45px 10px 20px;
            border: 1px solid #ddd;
            border-radius: 30px;
            font-family: 'Montserrat', sans-serif;
            outline: none;
            transition: all 0.3s ease;
            background-color: white;
        }

        .search-input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(159, 123, 72, 0.2);
        }

        .search-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--grey);
            cursor: pointer;
            font-size: 1rem;
        }

        .header-icons {
            display: flex;
            gap: 20px;
        }

        .icon {
            font-size: 1.2rem;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .icon:hover {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 40px;
            padding-top: 10px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-links a {
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--charcoal);
        }

        /* Wishlist Header */
        .wishlist-header {
            text-align: center;
            padding: 8rem 1rem 3rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .wishlist-header h1 {
            font-size: 2.3rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .wishlist-header h1::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .wishlist-header p {
            color: var(--grey);
            font-size: 1.1rem;
            margin-top: 1.5rem;
        }

        /* Product Grid */
        .wishlist-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 1rem 4rem;
        }

        .wishlist-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(159, 123, 72, 0.15);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .offer-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background-color: var(--taupe);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .product-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-name {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .product-price {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .product-offer {
            color: var(--grey);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
            margin-top: auto;
        }

        .action-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: 8px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .move-to-cart {
            color: var(--accent);
        }

        .move-to-cart:hover {
            background-color: rgba(159, 123, 72, 0.1);
            color: var(--button-hover);
        }

        .remove-item {
            color: var(--taupe);
        }

        .remove-item:hover {
            background-color: rgba(168, 144, 124, 0.1);
            color: var(--charcoal);
        }

        /* Single Product Centered */
        .single-product {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 60vh;
        }

        .single-product .product-card {
            width: 380px;
        }

        /* Empty Wishlist */
        .empty-wishlist {
            text-align: center;
            padding: 4rem 1rem;
        }

        .empty-wishlist h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
        }

        .empty-wishlist p {
            color: var(--grey);
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .continue-shopping {
            background-color: var(--taupe);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }

        .continue-shopping:hover {
            background-color: var(--button-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(159, 123, 72, 0.3);
        }

        /* Footer Section */
        footer {
            background-color: var(--footer-bg);
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--charcoal);
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .footer-tagline {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            color: var(--grey);
        }

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

        .footer-links a {
            color: var(--grey);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .contact-info {
            color: var(--grey);
        }

        .contact-info p {
            margin-bottom: 10px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--ivory);
            border-radius: 50%;
            color: var(--charcoal);
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--accent);
            color: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(168, 144, 124, 0.3);
            color: var(--grey);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .wishlist-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links{
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .wishlist-header h1 {
                font-size: 2rem;
            }
            
            .wishlist-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .product-image {
                height: 220px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }

            /* Stack layout */
            .header-top {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                margin-bottom: 5px;
                gap: 15px;
            }

            /* Logo left */
            .logo {
                flex: 1;
            }

            /* Icons right */
            .header-icons {
                display: flex;
                gap: 10px;
            }

            /* 🔥 Move search to next row */
            .header-search {
                order: 3;              /* pushes below */
                width: 100%;
                margin-top: 8px;
            }

            .header-search input {
                width: 100%;
                padding: 12px 15px;
                border-radius: 25px;
                font-size: 14px;
            }

            /* Optional: hide menu on mobile */
            .nav-menu {
                display: none;
            }

            .nav-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .wishlist-grid {
                grid-template-columns: 1fr;
            }
            
            .single-product .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .product-info {
                padding: 1rem;
            }
            
            .action-btn {
                padding: 6px 10px;
                font-size: 0.9rem;
            }

            .nav-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        .cart-icon {
            position: relative;
        }

        #cart-count {
            position: absolute;
            top: -6px;
            right: -8px;
            background: black;
            color: #fff;
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 50%;
        }
        .wishlist-active{
            color:#e63946;
        }
        .menu-open .nav-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }