/**
 * JaybeIndustrial Child Theme - CSS personalizado
 */

:root {
    --jaybe-dark: #111827;
    --jaybe-gray: #6b7280;
    --jaybe-light: #f3f4f6;
    --jaybe-accent: #ef4444;
    --jaybe-accent-dark: #b91c1c;
}

.jaybeindustrial-child-theme .site-main {
    scroll-behavior: smooth;
}

.jaybe-product-sku {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--jaybe-gray);
    letter-spacing: .02em;
}

.jaybe-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--jaybe-accent);
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(239, 68, 68, .22);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.jaybe-quote-button:hover {
    background: var(--jaybe-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(185, 28, 28, .28);
}
