
        /* Modern CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Header Styles */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .top-bar {
            background-color: #ff6b6b;
            color: #fff;
            text-align: center;
            padding: 10px;
            font-weight: bold;
        }

        .middle-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff6b6b;
        }

        .search {
            position: relative;
            flex: 1;
            margin: 0 20px;
        }

        #search-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        #search-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #fff;
            border: 1px solid #ddd;
            border-top: none;
            max-height: 200px;
            overflow-y: auto;
            display: none;
            z-index: 10;
        }

        #search-dropdown div {
            padding: 10px;
            cursor: pointer;
        }

        #search-dropdown div:hover {
            background-color: #f1f1f1;
        }

        .icons {
            display: flex;
            gap: 20px;
        }

        .icons span {
            cursor: pointer;
            font-size: 20px;
            position: relative;
        }

        .icons span span {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: #ff6b6b;
            color: #fff;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 12px;
        }

        .menu {
            background-color: #f1f1f1;
            padding: 10px 20px;
        }

        .menu ul {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 20px;
        }

        .menu li {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Hero Section */
        #hero {
            background: url('../img/banner/banner-1.png') no-repeat center/cover;
            height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            padding: 20px;
        }

        #hero h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        #hero p {
            font-size: 24px;
            margin-bottom: 20px;
        }

        #hero button {
            padding: 15px 30px;
            background-color: #ff6b6b;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        #hero button:hover {
            background-color: #ff4757;
        }

        /* Products Section */
        #products {
            padding: 50px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .product-card {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        .product-card h3 {
            margin: 10px 0;
        }

        .product-card p {
            font-weight: bold;
            color: #ff6b6b;
        }

        .product-card button {
            padding: 10px;
            margin: 5px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .add-to-cart {
            background-color: #ff6b6b;
            color: #fff;
        }

        .add-to-cart:hover {
            background-color: #ff4757;
        }

        .add-to-wish {
            background-color: #4ecdc4;
            color: #fff;
        }

        .add-to-wish:hover {
            background-color: #45b7af;
        }

        /* About Section */
        #about {
            padding: 50px 220px;
            background-color: #fff;
            text-align: justify;
            
        }

        #about h2 {
            margin-bottom: 20px;
        }

        /* Why Buy Section */
        #why-buy {
            padding: 50px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .why-item {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .why-item span {
            font-size: 40px;
            margin-bottom: 10px;
        }

        /* Checkout Section */
        #checkout {
            padding: 50px 20px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        #checkout .left, #checkout .right {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
        }

        #cart-table {
            width: 100%;
            border-collapse: collapse;
        }

        #cart-table th, #cart-table td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
        }

        #cart-table img {
            width: 50px;
            height: 50px;
        }

        .quantity-controls button {
            padding: 5px 10px;
            border: none;
            background-color: #ddd;
            cursor: pointer;
        }

        #totals {
            margin-top: 20px;
            text-align: right;
        }

        #checkout-form input, #checkout-form select {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        #checkout-form button {
            width: 100%;
            padding: 15px;
            background-color: #ff6b6b;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Contact Section */
        #contact {
            padding: 50px 20px;
            background-color: #fff;
        }

        #contact h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        .contact-details {
            text-align: center;
            margin-bottom: 20px;
        }

        #contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        #contact-form input, #contact-form textarea {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        #contact-form button {
            width: 100%;
            padding: 15px;
            background-color: #ff6b6b;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Footer */
        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 20px;
            text-align: center;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }

        .footer-sections {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }

        .social-icons span {
            font-size: 24px;
            margin: 0 10px;
            cursor: pointer;
        }

        /* Modals */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 2000;
            animation: fadeIn 0.3s;
        }

        .modal-content {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            max-width: 900px;
            width: 90%;
            position: relative;
        }

        .close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
        }

        #wishlist-content {
            display: grid;
            gap: 10px;
        }

        .wish-item {
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
        }

        .wish-item img {
            width: 50px;
            height: 50px;
        }

        /* Newsletter Form */
        #newsletter-form input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
        }

        #newsletter-form button {
            width: 100%;
            padding: 15px;
            background-color: #ff6b6b;
            color: #fff;
            border: none;
        }

        /* Toast */
        #toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #4ecdc4;
            color: #fff;
            padding: 15px;
            border-radius: 5px;
            display: none;
            z-index: 3000;
            animation: slideIn 0.5s, slideOut 0.5s 2.5s;
        }

        /* Scroll to Top */
        #scroll-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #ff6b6b;
            color: #fff;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            display: none;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }

        @keyframes slideOut {
            from { transform: translateY(0); }
            to { transform: translateY(100%); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .middle-bar {
                flex-direction: column;
                gap: 10px;
            }

            .menu ul {
                flex-direction: column;
                gap: 10px;
            }

            #hero {
                height: 400px;
            }

            #hero h1 {
                font-size: 32px;
            }

            #hero p {
                font-size: 18px;
            }

            #checkout {
                flex-direction: column;
            }
        }

        /* Wishlist Content Container */
#wishlist-content {
    margin-top: 15px;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 5px;
}

/* Individual Wishlist Item */
.wish-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.wish-item:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}

/* Product Image */
.wish-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

/* Product Info */
.wish-item h3 {
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #333;
}

.wish-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Text Container */
.wish-item div {
    flex: 1;
}

/* Remove Button */
.wish-item button {
    padding: 8px 14px;
    background: #ff4d4d;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s ease;
}

.wish-item button:hover {
    background: #cc0000;
    transform: scale(1.05);
}

/* Scrollbar Styling */
#wishlist-content::-webkit-scrollbar {
    width: 6px;
}

#wishlist-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .wish-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .wish-item img {
        width: 100%;
        height: auto;
    }

    .wish-item button {
        align-self: flex-end;
    }
}

    