/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Store Section */
.store {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #FF8C44;
    margin-bottom: 40px;
    font-size: 32px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
}

/* Product Card */
.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    max-width: 250px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-details h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.price {
    font-size: 22px;
    color: #FF4D00;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

.add-to-cart {
    background-color: #FF8C44;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #FF4D00;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Media Queries */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .store h2 {
        font-size: 28px;
    }
}
