        .homePage {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            .search-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;

        }


        .search-input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid #e1e5e9;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
            background: #F2EDE8;
        }
        .search-button {
            margin-left: 1rem;
            background: linear-gradient(135deg, #947A4F, #CBAF80);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            &:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
        }

        .search-input:focus {
            border-color: #947A4F;
            box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
            transform: translateY(-2px);
        }
        .search-input::placeholder {
            color: #947A4F;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 1.2rem;
        }

        .featured-section {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(135deg, #947A4F, #CBAF80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .bi-search{
            color: #947A4F;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .product-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover .product-image::before {
            opacity: 1;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #947A4F;
        }

        .add-product{
            background: linear-gradient(135deg, #947A4F, #CBAF80);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .add-to-cart {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, #947A4F, #CBAF80);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .product-card .bi{
            position: absolute;
            font-size: 1.2rem;
            top: .5rem;
            z-index: 1000;
            transition: color 0.3s, transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(148, 122, 79, 0.08);
            padding: 0.2rem 0.4rem;
            border-radius: 50%;
            background: rgba(255,255,255,0.85);
            transform: translateY(-100px);
            opacity: 0;
            transition: all 0.3s ease;
            }

            .product-card .bi-trash {
                right: 1rem;
                color: #e74c3c;
            }

            .product-card .bi-pencil-square {
                right: 3.5rem;
                color: #2980b9;
            }

            .product-card .bi-trash:hover,
            .product-card .bi-pencil-square:hover {
                color: #fff;
                background: linear-gradient(135deg, #947A4F, #CBAF80);
                transform: scale(1.2) rotate(-10deg);
                box-shadow: 0 4px 16px rgba(148, 122, 79, 0.18);
            }
        .product-card:hover .add-to-cart {
            transform: translateY(0);
            opacity: 1;
        }
        .product-card:hover .bi{
            transform: translateY(0);
            opacity: 1;
        }

        .add-to-cart:hover, .add-product:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Specific product backgrounds */
        .green-scarf {
            background: linear-gradient(135deg, #a8e6cf, #7fcdcd);
        }

        .leather-belt {
            background: linear-gradient(135deg, #ffd89b, #19547b);
        }

        .straw-hat {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .sunglasses {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
        }

        .cashmere-sweater {
            background: linear-gradient(135deg, #43e97b, #38f9d7);
        }

        .backpack {
            background: linear-gradient(135deg, #fa709a, #fee140);
        }

        .ankle-boots {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .necklace {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }
        }

        /* .search-section {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            height: 100px !important;
        } */

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .search-section {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }

        }

        @media (max-width: 540px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .search-container {
                margin-bottom: 1rem;
            }
        }

        /* Loading animation */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-card {
            animation: slideIn 0.6s ease forwards;
        }

        .product-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .product-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .product-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .product-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .product-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .product-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .product-card:nth-child(7) {
            animation-delay: 0.7s;
        }

        .product-card:nth-child(8) {
            animation-delay: 0.8s;
        }