/**
 * Enotech Client-Specific CSS Overrides
 * 
 * This file is loaded AFTER all core CSS, allowing you to override
 * any core styles with client-specific branding.
 * 
 * The file is:
 * - Symlinked during local development
 * - Injected by CI/CD during deployment
 * 
 * @client Enotech
 */

/* =============================================================================
 * ENOTECH-SPECIFIC OVERRIDES
 * ============================================================================= */

/* Example: Custom product card styling for Enotech */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Example: Enotech-specific button styling */
.enotech-quote-box {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    font-weight: 600;
    text-align: center;
}

/* Example: Custom wholesale badge */
.enotech-wholesale-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

