/* ==========================================================================
   SALEPERU.PE - RESET CSS MODERNO
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-body);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  overflow-x: hidden;
  height: 100%;
  width: 100%;
}

/* Encabezados */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

/* Elementos de Texto */
p, span, a {
  font-family: var(--font-body);
}

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

img, picture, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
  font-style: italic;
  shape-margin: 0.75rem;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Remover listas con viñetas por defecto */
ol, ul {
  list-style: none;
}

/* Deshabilitar scroll corporal cuando hay modales abiertos */
body.modal-open {
  overflow: hidden;
}
