/* ==========================================================================
   VARIABLES
   ========================================================================== */

/* Colores y Tipografía Global extraídos del diseño de OFFI */

:root {
    /* Colors */
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    
    /* Semantic Colors */
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;

    /* Custom OFFI Colors (extracted from footer and buttons) */
    --offi-blue-hover: #17a2b8; /* Used in rm-btn hover */
    --offi-gray-bg: #f9f9fc;
    --offi-text-dark: #272323;
    --offi-text-muted: #656c7d;
    --offi-carousel-dot-active: #17a2b8;
    --offi-carousel-dot-inactive: #adb5bd;
    --offi-btn-light-bg: #f5f5f5;
    --offi-btn-light-border: #eaeaea;
    --offi-btn-primary: #00A7D3;
    
    /* Product States / Badges Colors */
    --offi-badge-bestseller: #ff6a00; /* Naranja */
    --offi-badge-solicitado: #f1c40f; /* Amarillo */
    --offi-badge-exclusivo: #007bff; /* Azul */
    --offi-badge-preventa: #007bff; /* Azul (Mismo que exclusivo por ahora) */
    --offi-badge-poragotarse: #dc3545; /* Rojo */

    --offi-table-thead-muted: #fbfbfb;

    /* Breakpoints */
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    
    /* Typography */
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
