body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-size: cover;
    background-image: url('images1/bac.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    min-height: 100vh;
    padding: 40px 20px;
}

.product-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: fill;
}

.product-info {
    padding: 15px;
}

.product-name {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.product-description {
    font-size: 0.9em;
    color: #555;
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}