.product-image:hover {
    transform: scale(1.02);
}

.variant-option {
    transition: all 0.2s ease;
}

.variant-option:hover {
    transform: translateY(-2px);
}

.variant-option.selected {
    box-shadow: 0 0 0 2px #7DD3FC;
    border-color: #7DD3FC;
}

.buy-button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.tab-button.active {
    border-bottom: 2px solid #7DD3FC;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}