/*
Theme Name: Checkout Theme
Theme URI: 
Author: AI Assistant
Author URI: 
Description: A modern, clean, and animated WooCommerce theme with a focus on micro-interactions.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.2
Text Domain: checkout-theme
*/

:root {
    --brand-color: #000000;
    --brand-color-primary: #0170B9;
    --text-color: #333333;
    --text-muted: #666666;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #eaeaea;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition-speed: 0.3s;
    --font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Force global font and remove underlines */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button, input, select, textarea {
    font-family: var(--font-family) !important;
}

a, a:hover, a:focus, a:active {
    text-decoration: none !important;
}

a {
    color: var(--brand-color);
    text-decoration: none !important;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--text-color);
}
