/*
Theme Name: Libera
Version: 1.2.3
*/

:root {
  /* Marca principal */
  --primary: #092c42;
  --primary-hover: #072233;
  --primary-subtle: #123d57;

  /* Marca secundaria */
  --secondary: #0c3954;
  --secondary-hover: #061e2d;

  /* Acento */
  --accent: #f36c3d;
  --accent-hover: #c74d22;

  /* Fondos */
  --bg: #f9fafb;
  --bg-light: #ffffff;
  --bg-dark: #f3f4f6;

  /* Texto */
  --text: #1f2937;
  --text-muted: #6b7280;
  --text-inverse: #ffffff;

  /* Bordes */
  --border: #d1d5db;
  --border-hover: #9ca3af;
  --border-light: #e5e7eb;

  /* Overlays */
  --overlay-bg: rgba(9, 44, 66, 0.7);

  /* Inputs */
  --input-bg: #ffffff;
  --input-border: #e5e7eb;
  --input-focus: #f36c3d;
  --placeholder: #9ca3af;

  /* Precios */
  --price-regular: #111827;
  --price-sale: #f36c3d;
  --price-old: #6b7280;

  /* Etiquetas */
  --label-oferta: #f36c3d;
  --label-nuevo: #092c42;
  --label-agotado: #6b7280;

  /* Estados */
  --success: #218c74;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  /* Escala tipográfica estandarizada (Base 16px) */
  --fs-2xs: 0.6875rem;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: var(--fs-xl);
}
h2 {
  font-size: var(--fs-lg);
}
h3 {
  font-size: var(--fs-md);
}
small {
  font-size: var(--fs-xs);
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
