.product-container {
    text-align: center;
}

.product-image {
    max-width: 100%;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.color-options {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.color-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-button:hover {
    transform: scale(1.2);
}
