/**
 * Checkout CSS Variables
 *
 * @package Hafo\Checkout
 * @version 1.0.0
 */

:root {
    /* Colors */
    --hafo-checkout-primary: #1e3a8a;
    --hafo-checkout-primary-hover: #1e40af;
    --hafo-checkout-secondary: #fff;
    --hafo-checkout-secondary-border: #1e3a8a;
    --hafo-checkout-text: #1E315E;
    --hafo-checkout-text-light: #666;
    --hafo-checkout-text-muted: #757575;
    --hafo-checkout-border: #e5e7eb;
    --hafo-checkout-background: #f3f4f6;
    --hafo-checkout-sidebar-bg: #eff6ff;
    --hafo-checkout-error: #dc2626;
    --hafo-checkout-title-color: #1e3a8a;

    /* Spacing */
    --hafo-checkout-spacing-xs: 0.5rem;
    --hafo-checkout-spacing-sm: 0.75rem;
    --hafo-checkout-spacing-md: 1rem;
    --hafo-checkout-spacing-lg: 1.5rem;
    --hafo-checkout-spacing-xl: 2rem;
    --hafo-checkout-spacing-2xl: 3rem;

    /* Typography */
    --hafo-checkout-font-family: -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, oxygen, ubuntu, cantarell, sans-serif;
    --hafo-checkout-font-size-xs: 0.75rem;
    --hafo-checkout-font-size-base: 1rem;
    --hafo-checkout-font-size-sm: 0.875rem;
    --hafo-checkout-font-size-m: 1rem;
    --hafo-checkout-font-size-lg: 1.125rem;
    --hafo-checkout-font-size-xl: 1.25rem;
    --hafo-checkout-font-weight-light: 300;
    --hafo-checkout-font-weight-normal: 400;
    --hafo-checkout-font-weight-medium: 500;
    --hafo-checkout-font-weight-semibold: 600;
    --hafo-checkout-font-weight-bold: 700;
    --hafo-checkout-line-height-xs: 1em;

    /* Border Radius */
    --hafo-checkout-radius-sm: 0.25rem;
    --hafo-checkout-radius-md: 0.5rem;
    --hafo-checkout-radius-lg: 0.75rem;

    /* Shadows */
    --hafo-checkout-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 5%);
    --hafo-checkout-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 10%);
    --hafo-checkout-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 10%);

    /* Transitions */
    --hafo-checkout-transition: all 0.2s ease-in-out;
}