/* ResilBiz-AI Product Cards Styles */

.product-card {
    cursor: pointer;
    background-color: white;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18) !important;
    border-width: 2px !important;
}

.product-card a {
    transition: all 0.3s ease;
}

.product-card a:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
}

/* Product logo animation */
.product-card img {
    transition: all 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Icon box animation */
.product-card > div[style*="width: 70px"] {
    transition: all 0.4s ease;
}

.product-card:hover > div[style*="width: 70px"] {
    transform: rotate(5deg) scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .product-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Grid layout for 2-2-1 arrangement */
.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
