/*
Theme Name: Ghostly Vapes
Theme URI: https://ghostlypanama.com
Author: Ghostly Panama
Author URI: https://ghostlypanama.com
Description: Tema personalizado para tienda de vapes con sistema de niveles, puntos y gamificación
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ghostly-vapes
Tags: woocommerce, e-commerce, gaming, modern
*/

/* ========================================
   TIPOGRAFÍAS
======================================== */

/* ========================================
   Tactic Sans - Navegación secundaria
======================================== */
@font-face {
    font-family: 'Tactic Sans';
    src: url('assets/fonts/TacticSans-Reg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tactic Sans';
    src: url('assets/fonts/TacticSans-Med.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tactic Sans';
    src: url('assets/fonts/TacticSans-Bld.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tactic Sans';
    src: url('assets/fonts/TacticSans-Blk.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   Sporty Pro - Headers y menú principal
======================================== */
@font-face {
    font-family: 'Sporty Pro';
    src: url('assets/fonts/SportyPro-XLight.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sporty Pro';
    src: url('assets/fonts/SportyPro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sporty Pro';
    src: url('assets/fonts/SportyPro-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   Chakra Petch - Textos y contenido
======================================== */
@font-face {
    font-family: 'Chakra Petch';
    src: url('assets/fonts/ChakraPetch-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chakra Petch';
    src: url('assets/fonts/ChakraPetch-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   GamingSporty - Precios y números
======================================== */
@font-face {
    font-family: 'GamingSporty';
    src: url('assets/fonts/GamingSporty.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   VARIABLES
======================================== */
:root {
    /* Colores */
    --bg-dark: #131217;
    --bg-page: #0e0e10;
    --bg-header: #1a1d29;
    --bg-card: #1a2332;
    --orange-primary: #FF4D00;
    --purple-primary: #7B2CBF;
    --cyan-neon: #00d9ff;
    --blue-electric: #0ea5e9;
    --yellow-neon: #d4ff00;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-inactive: rgba(255, 255, 255, 0.3);
    
    /* Tipografías */
    --font-primary: 'Sporty Pro', sans-serif;
    --font-secondary: 'Chakra Petch', sans-serif;
    --font-tertiary: 'Tactic Sans', sans-serif;
    --font-prices: 'GamingSporty', sans-serif;
    
    /* Transiciones */
    --transition: all 0.3s ease;
}

/* ========================================
   RESET Y BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    color: var(--cyan-neon);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--blue-electric);
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    font-family: inherit;
}
/* ========================================
   SEO INVISIBLE - Screen Reader Only
   ======================================== */

/* 
 * Texto oculto visualmente pero accesible para:
 * - Google (lo lee y lo indexa)
 * - Screen readers (accesibilidad)
 * - NO visible para usuarios normales
 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 
 * Alternativa: Si prefieres que aparezca al hacer focus
 * (útil para navegación con teclado)
 */
.sr-only-focusable:not(:focus):not(:focus-within) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
