/*
Theme Name: Blocksy Child - Sign Expert
Theme URI: https://sign-expert.ro/
Description: Custom optimized child theme for Sign Expert (Modern eCommerce & Accessibility Tweaks).
Author: AI Developer
Author URI: https://sign-expert.ro/
Template: blocksy
Version: 1.0.0
Text Domain: blocksy-child
*/

/* --- MODERN UX & ACCESSIBILITY (a11y) IMPRINTS --- */

/* 1. Highly visible focus indicators for ADA/WCAG accessibility compliance */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid #0056b3 !important; /* High contrast focus color */
    outline-offset: 2px !important;
}

/* 2. Modern Product Grid Card Smoothness */
.woo-entry-image img {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.product:hover .woo-entry-image img {
    transform: scale(1.04);
}

/* 3. Modern, clean styling for standard forms/inputs */
input[type="text"], input[type="email"], input[type="tel"], textarea {
    border-radius: 6px !important;
    border: 1px solid #dcdcdc !important;
    padding: 12px 16px !important;
    transition: border-color 0.3s ease;
}

/* 4. Smooth scroll across the site for better navigation feel */
html {
    scroll-behavior: smooth;
}