@view-transition {
    navigation: auto;
}
:root {
    --primario      : #FF9900;
    --primario-hover: #DE8500;
    --rosado        : #FF2643;
    --rojo          : #BC272B;
    --negro         : #222222;
    --gris          : #E5E5E5;
    --grisOscuro    : #C0C0C0;
    --d             : #dddddd;
    --c             : #cccccc;
    
    --bold         : 600;
    --font-playfair: "Playfair Display", serif;
    
    --z-index-alert                  : 1001;
    --z-index-modal-filtros-contenido: 9;
    --z-index-modal-filtros-fondo    : 8;
    --z-index-menu-contenido         : 9;
    --z-index-header                 : 8;
    --z-index-barrasuperior          : 8;
    --z-index-agregar-al-carro       : 7;
    --z-index-resumen-carro          : 7;
    --z-index-wsp                    : 6;

    --z-index-cerebro-modal-agregar-compra-contenido: 9;
    --z-index-cerebro-modal-agregar-compra-fondo    : 8;
}
a {
    color: var( --primario );
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid rgba(255, 153, 0, 0.55);
    outline-offset: 3px;
}
img {
    max-width: 100%;
    height: auto;
}
span,
p {
    font-size: .8em;
    margin: 0;
    padding: 0;
    color: var( --negro );
}
body {
    background-color: white;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
*,
div,
ul,
ol,
p,
a,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}
li {
    list-style: none;
}
.contenedor {
    width: 90%;
    margin: 0 auto;
}
h2.titulo {
    font-family: var( --font-playfair ) !important;
    font-optical-sizing: auto;
    font-style: normal;
    text-transform: uppercase;
}
.playfair {
    font-family: var( --font-playfair ) !important;
}
.boton {
    text-decoration: none;
    background-color: var( --primario );
    color: white;
    border: none;
    border-radius: 100px;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 8px 18px;
    font-size: 1.5em;
    width: fit-content;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition:    all 0.2s ease-out;
    -o-transition:      all 0.2s ease-out;
    transition:         all 0.2s ease-out;
}
.boton.secundario {
    background-color: transparent;
    border: 1px solid var(--primario);
}
.boton:hover {
    background-color: var( --primario-hover );
}
.boton:focus-visible {
    background-color: var( --primario-hover );
}
.boton > p {
    color: white;
    text-transform: uppercase;
    font-size: 0.6em;
}
.boton.secundario:hover > p {
    color: white;
}
.boton.secundario > p {
    color: var(--primario);
}
.boton > svg {
    width: 15px;
}

/* 
======================================================================
ALERT
======================================================================
*/

div#alerta {
    position: fixed;
    z-index: var( --z-index-alert );
    bottom: 10px;
    left: 10px;
    right: 10px;
    
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 300;
    padding: 10px 10px;
    text-align: center;
    border-radius: 6px;
    width: fit-content;
    margin: 0 auto;
}
div#alerta > svg {
    width: 20px;
}
div#alerta.success {
    background-color: rgb(209, 231, 221);
    border: 1px solid rgb(163, 207, 187);
    color: rgb(10, 54, 34);
}
div#alerta.success > svg > path {
    fill: #52ca99;
}
div#alerta.warning {
    background-color: rgb(255, 250, 220);
    border: 1px solid rgb(255, 240, 180);
    color: rgb(102, 102, 0);
}
div#alerta.warning > svg > path {
    fill: #ff9700;
}

/* 
======================================================================
/ALERT
======================================================================
*/
/* 
======================================================================
LABELS
======================================================================
*/
section.label {
    position: relative;
}
section.label > label {
    color: #555;
    position: absolute;
    background: white;
    padding: 0 10px;
    margin-left: 10px;
    font-size: 0.8em;
}
section.label > input ,
section.label > textarea ,
section.label > select {
    height: 54px;
    width: 100%;
    margin-top: 9px;
    cursor: pointer;
    outline: none;
    padding: 10px;
}
section.label > textarea {
    min-height: 80px;
}
section.label > select:focus {
    border: 1px solid #222;
}
/* 
======================================================================
/LABELS
======================================================================
*/

/* 
======================================================================
WSP
======================================================================
*/
#wsp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: var( --z-index-wsp );
}
#wsp > a {
    text-decoration: none;
}
#wsp > a > img {
    width: 60px;
    height: 60px;
}
/* 
======================================================================
/WSP
======================================================================
*/
