/*
Theme Name: salsasn-theme
Theme URI: #
Author: Squembri
Author URI: #
Description: Theme personalizado para Salsas Sierra Nevada
Version: 2.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.2
License: GPL version 2 or later
License URI: https://www.squembri.com/
Text Domain: salsasn-theme
*/
/* ═══════════════════════════════════════════
   1. VARIABLES (Design Tokens) — Salsas Sierra Nevada
   Fuentes: Bebas Neue (títulos) + Montserrat (texto)
   Paleta: #F3201A base · #080808 negro · #292929 gris · #F6F6F6 fondo
   ═══════════════════════════════════════════ */
:root {
  /* ── Tipografías ─────────────────────────── */
  --theme-font: 'Montserrat', sans-serif;
  /* Texto base */
  --theme-font-two: 'Bebas Neue', sans-serif;
  /* Títulos */
  --theme-font-three: 'Bebas Neue', sans-serif;
  /* Títulos secundarios */
  --theme-font-four: 'Montserrat', sans-serif;
  /* Tipografía auxiliar */
  /* ── Paleta Salsas Sierra Nevada ─────────── */
  --theme-base: #F3201A;
  /* Color principal */
  --theme-base-rgb: 243, 32, 26;
  --theme-black: #080808;
  /* Negro texto/heading */
  --theme-black-rgb: 8, 8, 8;
  --theme-gray: #292929;
  /* Gris de texto */
  --theme-gray-rgb: 41, 41, 41;
  --theme-white: #ffffff;
  --theme-white-rgb: 255, 255, 255;
  --theme-bg: #F6F6F6;
  /* Fondo claro */
  --theme-bg-rgb: 246, 246, 246;
  --theme-primary: #292929;
  /* Secundario (gris oscuro) */
  --theme-bdr-color: rgba(8, 8, 8, 0.08);
  /* Bordes */
}
/* ═══════════════════════════════════════════
   2. RESET / BASE
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  font-family: var(--theme-font);
  color: var(--theme-gray);
  background-color: var(--theme-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: -0.176px;
  margin: 0;
}
body.locked {
  overflow: hidden;
}
a {
  color: var(--theme-base);
  text-decoration: none;
  transition: all 500ms ease;
}
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-font-two);
  color: var(--theme-black);
  margin: 0;
}
p {
  margin: 0;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
/* ═══════════════════════════════════════════
   3. GRID (Bootstrap 5)
   ═══════════════════════════════════════════ */
/* .row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
} */
/* ═══════════════════════════════════════════
   4. PAGE WRAPPER
   ═══════════════════════════════════════════ */
.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}
/* ═══════════════════════════════════════════
   5. BOTÓN EDITAR POST (Dev)
   ═══════════════════════════════════════════ */
.sq_edit_post {
  position: fixed;
  z-index: 9999999;
  border-radius: 100%;
  background: #333;
  border: 3px #e00034 solid;
  box-shadow: 0 1px 16px 0px rgba(0, 0, 0, 0.75);
  transition: 0.5s;
}
.sq_edit_post a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
}
.sq_edit_post a svg {
  width: 20px;
  height: 20px;
}
.sq_edit_post:hover {
  border-color: #000;
}
.sq_edit_post:hover a {
  color: #ebebeb;
}
.sq_edit_post.sq_wp_link {
  bottom: 90px;
  left: 30px;
}
.sq_edit_post.sq_info_link {
  bottom: 150px;
  left: 30px;
}
/* ═══════════════════════════════════════════
   6. BOTÓN General de la Web
   ═══════════════════════════════════════════ */
.thm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 18.93px 25px 14.93px;
  font-family: var(--theme-font-two);
  font-size: 22px;
  font-weight: 400;
  line-height: 16px;
  color: var(--theme-white);
  background: var(--theme-base);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0px;
  cursor: pointer;
  overflow: hidden;
  transition: all 300ms ease;
  position: relative;
}
.thm-btn:hover {
  background: #B80B06;
  color: var(--theme-white);
}
