/*
Theme Name: tecnishop
Author: DigistoreJosue
Description: Tema premium dark para tiendas de licencias digitales. Compatible con WooCommerce, License Manager y TeraWallet.
Version: 1.0
*/

/* ─── VARIABLES ─── */
:root {
  /* Fondos */
  --black:        #050816;
  --dark:         #0A0F2C;
  --surface:      #0F1735;
  --surface-alt:  #121A3D;
  --card:         #121A3D;
  --border:       #1A1F3A;

  /* Neón */
  --neon-blue:     #00CFFF;
  --electric-blue: #1E7BFF;
  --neon-purple:   #7B2CFF;
  --neon-pink:     #FF2BD6;
  --magenta:       #FF4FD8;

  /* Acento (alias para compatibilidad con código existente) */
  --accent:  #7B2CFF;
  --accent2: #FF2BD6;

  /* Estado */
  --success: #10b981;
  --danger:  #ef4444;
  --warning: #f59e0b;

  /* Texto */
  --text:           #FFFFFF;
  --text-primary:   #FFFFFF;
  --text-secondary: #B9C0D0;
  --muted:          #B9C0D0;
  --text-muted:     #7E88A8;

  /* Gradientes */
  --gradient-primary:   linear-gradient(90deg, #00CFFF 0%, #7B2CFF 50%, #FF2BD6 100%);
  --gradient-secondary: linear-gradient(135deg, #1E7BFF 0%, #7B2CFF 55%, #FF4FD8 100%);

  /* Sombras neón */
  --shadow-blue:   0 0 20px rgba(0, 207, 255, 0.30);
  --shadow-purple: 0 0 24px rgba(123, 44, 255, 0.28);
  --shadow-pink:   0 0 24px rgba(255, 43, 214, 0.28);

  /* Radio */
  --radius:    18px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --hook-color: #7E88A8;
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* Fondo oscuro también en páginas WooCommerce */
body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-account,
body.woocommerce-page:not(.home) {
  background: var(--dark);
}
