.product-card {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 146, 255, 0.25) !important;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.product-card:hover .btn-primary .btn-shine {
    left: 100%;
}

.product-card .btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

.feature-item {
    padding: 8px 4px;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: scale(1.05);
}

.icon-wrapper {
    transition: all 0.3s ease;
}

.product-card:hover .icon-wrapper {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(99, 146, 255, 0.15) 0%, rgba(99, 146, 255, 0.08) 100%);
}

@media (max-width: 768px) {
    .product-card {
        margin-bottom: 2rem;
    }

    .features-preview {
        margin-bottom: 1.5rem;
    }
}