/* Additional styling for cards, forms, animations */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-10px);
}
.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    font-style: italic;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
input, select, textarea {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
}