 /* General Styles */
        body {
            margin: 0;
            font-family: 'Arial', sans-serif;
            color: #333;
        }

        /* Hero Section */
        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 80vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('../../images/hero-shop.webp') no-repeat center center/cover;
            color: white;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero .btn {
            display: inline-block;
            padding: 10px 30px;
            font-size: 1rem;
            font-weight: bold;
            color: black;
            background: white;
            border: 2px solid black;
            border-radius: 5px;
            text-decoration: none;
            transition: 0.3s;
        }

        .hero .btn:hover {
            background: black;
            color: white;
        }

        /* Categories Section */
        .categories {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 40px 20px;
            background-color: #f4f4f4;
        }

        .category {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .category img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .category:hover img {
            transform: scale(1.1);
        }

        .category h3 {
            position: absolute;
            bottom: 10px;
            left: 10px;
            color: white;
            font-size: 1.2rem;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 5px 10px;
            border-radius: 5px;
        }

        /* Featured Products Section */
        .featured-products {
            padding: 40px 20px;
            text-align: center;
        }

        .featured-products h2 {
            font-size: 2rem;
            margin-bottom: 30px;
        }
		
		.product-stars i {
			color: #b4b4b4; /* Gold color for full stars */
			margin-right: 2px;
			letter-spacing:6px;
		}
		
		.product-stars .fa-star-half-alt {
			color: #f1c40f; /* Gold color for half stars */
		}
		
		.product-stars .far {
			color: #d3d3d3; /* Light gray color for empty stars */
		}
		
        .products-grid {
			display: flex;
			flex-direction: column; /* Stack items vertically */
			gap: 20px; /* Space between products */
			max-width: 600px; /* Optional: Limit container width */
			margin: 0 auto; /* Center container */
			padding: 20px;
			background-color: #f4f4f4;
		}
		
		.product-card {
    width: 100%; /* Ensure the card takes full width */
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px; /* Add spacing between products */
}

.product-card img {
    max-width: 100%; /* Ensure image fills the card width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

        .product-card .product-info {
            padding: 15px;
        }

        .product-card .product-name {
            font-size: 1rem;
            font-weight: bold;
            margin: 10px 0;
        }

        .product-card .product-price {
            color: #e74c3c;
            font-size: 1rem;
			letter-spacing:6px;
        }

        .product-card .product-original-price {
            font-size: 0.9rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 10px;
        }
		/* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #2f4858; /* Match the site's color theme */
            display: flex;
            flex-direction: column; /* Stack logo and spinner vertically */
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        #preloader .logo {
            margin-bottom: 20px; /* Space between logo and spinner */
        }

        #preloader .logo img {
            width: 150px; /* Adjust logo size */
            height: auto; /* Maintain aspect ratio */
        }

        #preloader .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #fff;
            border-top: 5px solid #00c2d5; /* Highlighted color */
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Hide preloader once the page is loaded */
        body.loaded #preloader {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease;
        }
		.stores {
			padding: 50px 20px;
			background-color: #f9f9f9;
			text-align: center;
		}
		
		.stores h2 {
			font-size: 2rem;
			margin-bottom: 20px;
			color: #333;
		}
		
		.store-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
			gap: 20px;
			justify-items: center;
			align-items: center;
		}
		
		.store {
			background-color: #fff;
			border-radius: 10px;
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
			padding: 20px;
			text-align: center;
			transition: transform 0.3s ease, box-shadow 0.3s ease;
		}
		
		.store:hover {
			transform: translateY(-5px);
			box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
		}
		
		.store img {
			width: 300px; /* Ensures it fills the container width */
			height: 300px; /* Set a fixed height */
			object-fit: cover; /* Maintains aspect ratio and fills the container */
			border-radius: 10px;
			margin-bottom: 15px;
		}
		
		.store h3 {
			font-size: 1.2rem;
			margin: 10px 0;
			color: #555;
		}
		
		.store p {
			font-size: 1rem;
			color: #777;
		}
		