/* Product Page Inline Styles - Extracted from single-product.php */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
}

.gallery-main-image {
    transition: opacity 0.2s ease-in-out;
}

.gallery-thumbnail {
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
}

.product-tab-btn {
    transition: all 0.3s ease;
}

.spec-row {
    transition: background-color 0.3s ease;
}

.spec-row:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.application-tag {
    transition: all 0.3s ease;
}

.application-tag:hover {
    transform: scale(1.05);
}
