/*
Theme Name: Networ Store
Theme URI: https://networ.store/
Author: Promedia Digital
Author URI: https://promedia.digital/
Description: Tema personalizado ultra rápido, responsivo y de alta conversión para la tienda de Distribuidores Oficiales Networ Store.
Version: 1.0.0
Text Domain: networ-store
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
*/

/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES - NETWOR STORE
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary-teal: #1FA3A4;
  --primary-teal-hover: #178384;
  --primary-green: #1F9D39;
  --primary-green-hover: #18802E;
  --accent-orange: #EE8F00;
  --accent-orange-hover: #D68000;
  --silver-gray: #A8A8A8;
  
  /* Neutral Shades */
  --pure-white: #FFFFFF;
  --light-bg: #F4F8F8;
  --card-bg: #FFFFFF;
  --border-light: #E2E9E9;
  --border-medium: #CBD5E1;
  --text-dark: #1A2D2C;
  --text-muted: #5A6E6D;
  --text-light: #8E9F9E;
  
  /* Status Colors */
  --sale-red: #E53E3E;
  --star-gold: #FFC107;
  
  /* Typography */
  --font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows & Depth */
  --shadow-sm: 0 2px 8px rgba(31, 163, 164, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 45, 44, 0.08);
  --shadow-lg: 0 10px 30px rgba(31, 163, 164, 0.12);
  --shadow-hover: 0 14px 36px rgba(31, 157, 57, 0.15);
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-teal-hover);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
