.mugs-section {
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
    border-radius: 10px;
    color: white;
}

.mugs-section h2 {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 20px;
}

.mugs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 10px;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    border-bottom: 4px solid #7dd856;
    margin-bottom: 10px;
}

.product .product-name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.product .product-price {
    font-size: 14px;
    font-weight: bold;
    color: #0072a0;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mugs-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .product img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .mugs-container {
        grid-template-columns: 1fr;
    }
    .product img {
        height: 200px;
    }
}
