@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-ExtraBold.ttf") format("opentype");
    font-weight: 800;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Bold.ttf") format("opentype");
    font-weight: 700;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Medium.ttf") format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Regular.ttf") format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Light.ttf") format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: "Yeseva";
    src: url("./fonts/YesevaOne-Regular.ttf") format("opentype");
}


:root {
    --primary: #003D7C; 
    --secondary: #4c607d;
    --pink: #BE5B75;
    --pink-2: #FFE8F0;
    --turquoise: #D7FFFA;
    --white: #fff;
    --black: #000000;
    --black-2: #3F3F3F;
    --grey: #898989;
    --grey-2: #828282;
    --grey-3: #383838;
}

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

body {
    font-size: 100%;
    list-style-type: none;
    font-family: "Inter";
    color: var(--black);
}

ul {
    list-style: none;
}

a{
    text-decoration: none;
}

.centrado-vertical {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.centrado-horizontal {
    display: flex;
    justify-content: center;
    align-content: center;
}

.centrado-horizontal-espaciado {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

h2 {
    font-size: 25px;
    font-family: "Inter";
    font-weight: 600;
    letter-spacing:.5px;
}

h3 {
    font-size: 16px;
    font-family: "Inter";
    font-weight: 700;
}

h5 {
    font-size: 16px;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
}

.text-black {
    color: var(--black);
    font-weight: 400;
}

.text-light-grey {
    color: #828282;
}

.text-grey {
    color: #898989;
}

.text-grey-3 {
    color: var(--grey-3);
}

.text-black-2 {
    color: var(--black-2);
}

.text-sub {
    border-bottom: 1px solid var(--black);
}

.ft-10 {
    font-size: 10px;
}

.ft-12 {
    font-size: 12px;
}

.ft-13 {
    font-size: 13px;
}

.ft-14 {
    font-size: 14px;
}

.ft-15 {
    font-size: 15px;
}

.ft-16 {
    font-size: 16px;
}

.ft-18 {
    font-size: 18px;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.imagen-fondo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.invert-color{
    filter: brightness(0) invert(1);
  }
/* Nav */

.nav-header {
    background-color: var(--primary) !important;
    height: 35px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 12px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.nav-header a {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 13px;
    padding: 0 2px;
}

.nav-header .container ul {
    display: flex;
    margin-bottom: 0;
}

.nav-header .container ul li {
    margin-right: 2rem;
    font-size:14px;
    font-weight:700;
}

.nav-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    flex-direction: column;
}

nav {
    padding: 0px 40px;
    font-size: 14px;
}

nav a {
    color: var(--white);
}

.navbar {
    background-color: var(--white);
    padding-top: 2rem;
}

.nav-acciones ul a{
    margin: 0 0.5rem;
    white-space: nowrap;
    transition: transform 0.2s ease-in-out;
}

.nav-acciones ul a:hover{
    transform: scale(1.2);
}

.nav-link {
    font-size: 13px;
    font-weight: 300;
    font-family: "Inter";
    white-space: nowrap;
}

.nav-link span {
    margin-left: 0.5rem;
    margin-top: 3px;
    font-weight:600;
}

.n-items {
    position: absolute;
    top: -10px;
    right: -7px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-color: #BE5B75;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 700;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--blue);
}

.menu a:hover {
    color: var(--white);
}

.menu li:hover {
    background-color: var(--primary) !important;
    color: var(--white);
}

.mega-menu {
    background: transparent;
    border-radius: 0px;
    border: none;
    min-width: 190px;
}

.mega-menu ul li {
    padding: 10px;
    background-color: #41464b;
    margin: 5px;
}

.mega-menu ul li a {
    text-decoration: none;
    color: var(--white);
}

.categorias {
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid #003d7c;
    border-top: 1px solid #003d7c;
}

.menu-responsive .navbar-collapse ul{
    background: #f5f5f5;
}

.menu-responsive .navbar-collapse ul{
    width: 100%;
    padding: 0;
}

.menu-responsive .navbar-collapse li{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-responsive .navbar-collapse a{
    width: 100%;
    padding: 8px 20px 8px 15px;
    border-bottom: 1px solid #DEE1E7;
    background: white;
}

.categorias li {
    margin-left: 1.5rem;
    transition: 0.1s all ease-in;
    margin-bottom: 0;
    white-space: nowrap;
}

.categorias li a {
    color: var(--black);
    font-size:14px;
      font-weight:500;
}

.categorias li:hover {
    transform: scale(1.1);
}

.categorias li a:hover {
    color: var(--primary);
    font-weight: 500;
}

.categoria-seleccionada {
    padding-bottom: 5px;
    /* border-bottom: 2px solid var(--secondary); */
}
.categoria-seleccionada::after {
    content: '';
    display: block;
    width: 3rem;
    height: 2px;
    background-color: #c3a877;
    position: relative;
    top: 15px;
    left: 0;
    right: 0;
    margin: 0 auto; /* Para centrar el after */
}

.ofertas {
    background-color: #FFE8F0;
    justify-content: center;
    align-items: center;
    padding: 10px 0;

}

.ofertas p {
    margin-left: 2rem;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 1.4px;
    font-size:15px;
}

.ofertas .medio {
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 50%;
    box-sizing: border-box;
}

/*Footer*/

.footer-ventajas {
    padding: 20px 0;
    background-color: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-top{
    background-color: #F5F6F6;
    font-size: 12px;
    font-weight: 300;
    padding: 1.5rem 0;
}

.footer-top input {
    height: 46px;
    width: 286px;
    border: none;
    border-bottom: 2px solid var(--black);
    margin-right: 15px;
    padding: 0 1rem;
    font-size: 14px;
}

.footer-top p{
    max-width: 760px;
}

.footer-ventajas img {
    margin-right: 15px;
}

.footer {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: var(--grey-3);
    padding: 2vw 0;
}

.footer h5 {
    padding-bottom: 1.5rem;
}

.footer li {
    padding-bottom: 0.5rem;
    font-size:14px;
}

.logo-nombre {
    color: var(--light-blue);
    font-family: var(--font_sarabun);
    font-size: 96px;
}

.menu-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-right: 2rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5vw 0;
    font-size: 12px;
    font-weight: 400px;
    line-height: 150%;
    background-color: var(--black);
    color: var(--white);
    position: relative;
}

.footer-bottom .container {
    max-width: 1050px;
}

.footer-bottom span {
    color: var(--purple_2);
}

.footer a {
    color: var(--brown);
}

.footer .col {
    margin: 0 1rem;
}

.icono-solo {
    width: 69px;
    height: 95px;
}

.close {
    display: none;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 8px 8px 20px;
}

.close button {
    border: none;
    color: var(--white);
}

button {
    all: unset;
}

.iconos-redes {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.icono-idioma {
    width: 50px;
    height: 30px;
}

.form-1 {
    display: flex;
    width: 500px;
    height: 40px;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: #FFF;
    margin-left: 2rem;
    border-radius: 29px;
    border: 1px solid var(--Grey-6, #654a4a);
    background: #FFF;
}

.form-1 input[type="text"] {
    border: none;
    width: 100%;
    height: 35px;
    font-size: 0.9rem;
}

.form-1 input[type="text"]:focus{
    border: none;
    outline: none;
    box-shadow: none;
}

.form-2 {
    display: flex;
    width: 100%;
    height: 44px;
    padding: 10px 10px 10px 25px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--primary);
    background-color: var(--white);
}

.form-2 input[type="text"] {
    border: none;
    width: 100%;
    height: 35px;
}

.form-2 input[type="text"]:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.form-2 button {
    display: flex;
    width: 103px;
    height: 29px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--primary);
    color: #FFF;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
}

.footer-top form input:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: none;
}

.btn-cuadrado {
    display: flex;
    width: 140px;
    height: 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 12px;
    margin-top: -3px !important;
    transition: 0.5s all ease;
    cursor: pointer;
    letter-spacing:.5px;
}

.btn-amarillo {
    background: #be5b75;
    border-radius:20px;
}

.btn-suscribirse {
    height: 55px;
    max-width: 271px;
    border: 1px solid #E5E5E5;
    background: var(--white);
    display: flex;
    align-items: center;
    transition: 0.5s all ease;
    cursor: pointer;
}

.btn-suscribirse:hover, .btn-blanco:hover {
    background-color: #c2a674;
    transform: scale(1.02);
    color: #ffffff !important;
}

.btn-cta {
    color: var(--primary);
    font-size:14px;
    text-transform:uppercase;
    border: 1px solid var(--primary);
    inline-size: fit-content;
}
.btn-cta:hover {
    color: var(--white);
    background-color: var(--primary);
    transform: scale(1.02);
}
.btn-cta svg {
    fill: var(--primary);
}
.btn-cta:hover svg {
    fill: var(--white);
}


.btn-violeta {
    color: var(--white);
    background: var(--primary);
    font-size:14px;
    text-transform:uppercase;
}

.btn-amarillo:hover {
    color: var(--white);
    background-color: #2E5229;
    font-size: 105%;
}

.btn-violeta:hover {
    color: white !important;
    background-color: #C2A674;
    transform: scale(1.02);
}

.btn-rosa {
    color: white !important;
    height: 46px;
    width: 165px;
    font-weight: 500;
    background: #456554;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
}

.btn-rosa:hover, .btn-ag-carrito:hover {
    background-color: var(--secondary);
    transform: scale(1.02);
}

.btn-blanco {
    width: 145px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 2px solid var(--grey-3);
    font-size: 14px;
    font-weight: 600;
    transition: 0.5s all ease;
    color: var(--black);
    border-radius:20px;
}

.btn-ag-carrito {
    width: 100%;
    height: 46px;
    flex-shrink: 0;
    border: 1px solid#C4C4C4;
    color: var(--Black-2, #000);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s all ease;
    /* border-radius:20px; */
}

.btn-sesion {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    color: var(--pink);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--pink);
    cursor: pointer;
    transition: 0.2s all ease;
}

.btn-sesion:hover {
    color: white !important;
    font-weight: 800;
    background: var(--pink);
}

.btn-cuenta {
    color: var(--black);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    padding: 5px;
    border: 1px solid #C4C4C4;
    cursor: pointer;
    transition: 0.2s all ease;
}

.btn-cuenta:hover {
    font-weight: 500;
    color: var(--pink);
    border-color: var(--pink);
}

/*main*/

section {
    margin: 3rem 0;
}

.contenido {
    padding: 4rem 0 8rem 10rem;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
    min-height: 550px;
}

.contenido p {
    font-size: 25px;
}

.contenido .titulo {
    font-family: 'Yeseva';
    font-size: 50px;
    line-height: 100%;
    text-align: center;
    padding-bottom: 1rem;
}

.section-historias .carrusel-historias svg{
    margin: 10px;
}


.section-historias .carrusel-historias svg:focus{
    border: 0px !important;
}

.section-ofertas .container{
    height: 223px;
}

.section-ofertas .titulo {
    font-family: 'Inter';
    font-size: 40px;
    font-weight: 800;
    padding-bottom: 2rem;
}

.section-ofertas .btn-violeta {
    width: 234px;
    height: 46px;
}

.section-ofertas .contenido {
    display: block;
    padding: 2rem 0 2rem 6rem;
}

.section-coleccion .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    border-radius: 0;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.card p {
    margin-bottom: 0;
}

.card-body {
    z-index: 10;
}

.br-5{
    border-radius:5px
}
.section-coleccion .row .col-lg-4 div {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-coleccion .titulo {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.9px;
    text-transform: uppercase;
    padding-bottom: 2rem;
    font-family: 'Yeseva'
}

.section-coleccion .row a {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration-line: ;
    text-transform: capitalize;
    letter-spacing:.5px;
}

.slick-brands-arrows {
    cursor: pointer;
    padding: 5px 10px;
    position: absolute;
    top: 25%;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.card {
    border: none;
    padding: 1rem;
}

.product-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
}

.carrusel_productos .card img {
    max-width: 252px;
    max-height: 230px;
}

.fav {
    width: 19px;
    height: 16px;
    position: absolute;
    top: 0;
    right: 1rem;
}

.etiqueta {
    position: absolute;
    top: 0;
    left: 1rem;
    display: flex;
    width: 54px;
    height: 20px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: var(--secondary);
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing:.5px;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: ;
}

.tienda {
    color: var(--grey);
    font-size: 13px;
    font-weight: 300;
}

.tienda span {
    text-decoration-line: underline;
}

.precio {
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}

.section-banners .titulo {
    font-family: 'Inter';
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    padding-bottom: 2rem;
    font-family: 'Yeseva';
    letter-spacing:.5px;
}

.section-banners .bn1 .btn-violeta {
    width: 234px;
    height: 46px;
    background-color: transparent;
    border: 2px solid black;
    color: var(--black) !important;
    font-size: 14px;
}

.section-banners .bn1 .btn-violeta:hover {
    background-color: var(--pink-2);
    transform: scale(1.02);
    color: var(--black);
}

.section-banners .col-12 .btn-violeta {
    width: 234px;
    height: 46px;
}

.section-banners .col-12 .contenido {
    display: block;
    padding: 3rem 0 2rem 6rem;
}

.section-banners .col-6 div {
    box-sizing: border-box;
}

.section-banners .col-6 div{
    height: 290px;
    box-sizing: border-box;
}

.section-banners .col-6 .contenido {
    display: block;
    padding: 3rem 0 2rem 3rem;
}

.section-banners .col-6 .titulo{
    padding-bottom: 0;
}

.section-banners .col-6 .btn-cuadrado {
    height: 46px;
    width: 183px;
}

.bn-2 {
    max-width: 75%;
}

.contenedor-productos nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.section-grilla, .section-set{
    margin: 1rem 0;
}
.section-grilla .row .col-6 img:not(.imagen-fondo) {
    max-height: 209px;
}
/*paginacion*/

.section-grilla .container nav{
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 2.5rem !important;
}

.pagination {
    font-weight: 700;
    width: 100px;
}

.pagination li {
    margin: 0 !important;
    padding: 0 !important;
}

.page-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
}

.page-item .page-link:focus {
    background-color: var(--primary);
    color: white;
    box-shadow: none;
}

.page-link {
    color: black;
    font-size: 14px;
    border: 1px solid var(--Stroke-Grey, #737373);
    border-radius: 0px !important;
}

.page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.contenedor-gifcard {
    height: 90%;
    padding: 2rem 0;
}
.max-300{
    min-height: 300px;
}

.gitfcard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gitfcard p{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.gitfcard .titulo {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: start;
    margin-left: -25px;
    line-height: normal;
}

.gitfcard a {
    height: 46px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.volver {
    color: var(--grey-3);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-bottom: 1px solid var(--grey-3);
}

.volver:hover {
    font-weight: 500;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.enlaces {
    padding: 0;
    margin: 0;
}

.enlaces a{
    color: var(--black);
    font-size: 13px;
    font-weight: 400;
}

.section-grilla .descripcion {
    max-width: 785px;
    text-align: center;
}

.oferta-tiempo {
    float: right;
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
}

.oferta-tiempo span {
    font-size: 17px;
    color: var(--pink);
}

.zoom {
    display: flex;
    justify-content: space-between;
    color: var(--grey);
    font-size: 13px;
    width: 112px;
}

.etiqueta-d, .etiqueta-i {
    display: flex;
    width: auto;
    height: 25px;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.etiqueta-i {
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    margin-right: 0.5rem;
    letter-spacing:1px;
}

.etiqueta-d {
    /* background:#F5F6F6; */
    margin-left: 0.5rem;
}

.precio-actual {
    margin-right: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.precio-anterior {
    color: var(--Black-2, #000);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    margin: 0.5rem;
    text-decoration: line-through;
}

.precio-anterior img {
    margin-left: 0.5rem;
    margin-top: -4px;
}

select {
    border-radius: 0px !important;
    font-size: 14px !important;
    margin-bottom: 1rem;
}

.cantidad {
    width: 66.754px;
    height: 46px;
    flex-shrink: 0;
    text-align: center;
}

.section-producto .btn-cuadrado {
    height: 46px;
    width: 277px;
    margin: 0 1rem !important;
}

.contenedor-info {
    max-width: 390px;
    font-size: 12px;
}

.like {
    width: 23px;
    height: 20px;
    margin-top: 13px;
}

.miniatura {
    border: 1px solid var(--black);
    margin-bottom: 0.5rem;
}

.cuerpo-info {
    padding: 0 12px;
}
.menu-info li {
    font-size: 13px;
    font-weight: 600;
    width: 256px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    margin-bottom: 20px;
    cursor: pointer;
}

.info-seleccionada {
    background:#F5F6F6;
}

.section-info-producto {
    color: var(--Black-2, #3F3F3F);
    font-size: 15px;
    font-weight: 400;
    line-height: 180%;
}

.section-info-producto .titulo {
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
}

.mensaje-carrito {
    display: flex;
    padding: 0.5rem 2rem;
    background:#D7FFFA;
    font-size: 12px;
    font-weight: 400;
    line-height: 180%; /* 21.6px */
}

.mensaje-carrito img {
    margin-right: 1rem;
    color: var(--Black-2, #000);
}

.section-carrito .table .img-producto{
    width: 105px;
    height: 130px;
    margin-right: 1rem;
}

.section-carrito .table tbody {
    color: var(--grey-3);
    font-size: 12px;
    font-weight: 300;
}

.section-carrito .table tbody .titulo {
    color: var(--black);
    font-size: 16px;
}

.section-carrito .table tbody .precio-anterior {
    color: var(--grey);
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: line-through;
    margin-left: 0;
}

.section-carrito .table tbody .precio-actual {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.btn-eliminar {
    cursor: pointer;
}

.contenedor-cantidad {
    width: 119px;
    height: 43px;
    flex-shrink: 0;
    padding: 0;
    border: 1px solid #C4C4C4;
    background-color: white;
}

.btn-sus, .btn-add {
    color: #C4C4C4;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    text-transform: capitalize;
    border: none;
}

.btn-add {
    margin-right: 0.5rem;
}

.btn-sus {
    margin-left: 0.5rem;
}

.btn-sus:hover, .btn-add:hover {
    color: var(--black);
}

input {
    color: var(--black);
    text-align: center;
    width: 35px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    text-align: start;
}

.section-carrito .btn-cuadrado {
    width: 286px;
    border-color: #C4C4C4;
}

.info-facturacion {
    background: #F5F6F6;
    padding: 1rem;
}

/*Acordeon*/

.accordion-header {
    display: flex;
}

.accordion {
    --bs-accordion-bg: #F5F6F6;
}

.accordion-body {
    padding: 0;
}

.accordion-header button {
    border-radius: 0px !important;
}

.accordion-header button img {
    margin-right: 1rem;
    margin-left: -0.5rem;
}

.accordion-item {
    border: none;
    border-radius: 0px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #F5F6F6;
    color: var(--black);
}

.accordion-button.collapsed:focus, .accordion-button.collapsed:active {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed):focus, .accordion-button.collapsed:active {
    box-shadow: none !important;
}

/*configuracion inicial*/
.accordion-button::after {
    background-image: var(--bs-accordion-btn-icon);
    transform: var(--bs-accordion-btn-icon);
}


/*cuando no esta activo*/
.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
    transform: var(--bs-accordion-btn-icon);
}

/*cuando esta activo*/
.accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
.form-cupon {
    display: flex;
    height: 46px;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid var(--Grey-8, #C4C4C4);
    background: var(--white);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.form-cupon input[type="text"] {
    text-align: start;
    border: none;
    width: 50%;
    height: 35px;
    color: var(--grey);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

.form-cupon input[type="text"]:focus{
    border: none;
    outline: none;
    box-shadow: none;
}

.form-cupon button{
    color: var(--primary);
    font-size: 12px;
    font-weight: 400;
    text-decoration-line: underline;
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.datos-facturacion {
    font-size: 14;
    font-weight: 400;
}

.section-pago {
    padding-bottom: 5rem;
}

.datos-facturacion .total-compra, .section-pago .total-compra {
    padding-bottom: 1rem;
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: 3rem;
}

.datos-facturacion .btn-violeta, .section-pago .btn-violeta {
    width: 100%;
    padding: 0.5rem auto;
    height: auto;
    min-height: 46px;
    font-size: 14px;
}

.section-pago .enlaces {
    color: var(--grey-3);
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

.section-pago .enlaces a {
    color: var(--primary);
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
}

.section-pago input {
    text-align: start;
    border-radius: 0px;
    border: 1px solid#C4C4C4;
    height: 46px;
}

.section-pago textarea {
    height: 86px;
    resize: none;
    border-radius:0;
}

.producto-rm-carrito {
    display: flex;
    border-bottom: 1px solid #E5E5E5;
    padding: 1.5rem 0;
}

.resumen-compra {
    padding: 1rem;
    background-color: #F5F6F6;
}

.resumen-compra .img-producto {
    width: 83px;
    height: 103px;
    margin-right: 2.5rem;
}

.resumen-compra .precio-actual {
    font-size: 16px;
    font-weight: 800;
    margin-left: 0.5rem;
}

.resumen-compra .precio-anterior {
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
}

#moneda-pago {
    max-width: 228px;
    margin-top: 1rem;
}

input[type="radio"] {
    width: 15px;
    height: 15px;
}

.radio-pago {
    padding-top: 0.5rem;
    height: 40px;
    max-width: 276px;
    border-bottom: 1px solid #E5E5E5;
}

.info-cuenta {
    padding-bottom: 2rem;
    border-bottom: 1px solid #CCC;
}

.form-registrarse {
    color: #3F3F3F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.form-registrarse input[type="text"], 
.form-registrarse input[type="email"],
.form-registrarse input[type="password"] {
    color: var(--black);
    height: 46px;
    text-align: start;
}

.form-registrarse .btn-violeta {
    width: 100%;
    max-width: 242px;
    height: 46px;
}

.opinion {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.opinion p {
    max-width: 768px;
    color: var(--grey-3);
    font-size: 15px;
}

.opinion span {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.opciones-cuenta {
    display: flex;
    flex-direction: column;
    align-items: start;
    background: var(--white);
    width: 100%;
    font-size: 15px;
    font-size: 500;
    border: 1px solid #E5E5E5;
}

.opciones-cuenta ul {
    list-style: none;
    width: 100%;
    padding: 0;
}

.opciones-cuenta ul li {
    padding-left: 2rem;
    height: 51px;
    color: var(--grey);
    width: 100%;
    transition: 0.2s all ease;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
}

.opciones-cuenta ul li.seleccionado {
    font-weight: 800;
    background-color: #EEEEEE;
    color: #474141;
    font-weight: 700;
}

.titulo-panel {
    background-color: #EEEEEE;
    font-weight: 600 !important;
    color: var(--black) !important;
}

.voucher {
    display: flex;
    padding: 2rem 0;
    flex-direction: column;
    align-items: center;
    border: 1px solid #E5E5E5;
    margin-top: 2rem;
    width: 100%;
}

.voucher .titulo {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.voucher p {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0.5rem;
}

.voucher a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
}

.section-cuenta-panel .enlaces{
    margin-bottom: 50px;
}

.section-cuenta-panel h2 {
    margin-bottom: 60px;
}

.banner-cuenta{
    margin-bottom: 70px;
    height: 109px;
    width: auto;
}

#informacion .row {
    margin-bottom: 70px;
}

.form-pedido input, .form-suscripcion input {
    border-radius: 0px !important;
}

.form-pedido .btn-violeta, .form-suscripcion .btn-violeta{
    width: 242px;
    height: 46px;
    margin-left: 10px;
    margin-top: 1rem !important;
}

.form-suscripcion .oferta {
    max-width: 640px;
}

.section-contacto .info-atencion {
    font-size: 15px;
    font-weight: 400;
    color: var(--grey);
}

.section-contacto .info-atencion p{
    margin-bottom: 5px;
}

.section-contacto .contenedor-gifcard {
    height: 300px;
    margin-top: 50px;
    max-width: 300px;
}

.section-contacto .contenedor-gifcard .btn-violeta{
    display: flex;
    width: 100%;
    max-width: 183px;
    margin-bottom: -15px;
}

.section-contacto .gitfcard .titulo {
    margin-left: 0;
    max-width: 150px;
}

.form-contacto, .form-contacto select,
.form-contacto textarea, .form-contacto input {
    color: var(--black-2);
    font-size: 14px;
    font-weight: 400;
}

.form-contacto input, .form-contacto select{
    height: 46px;
    border-radius: 0px;
}

.form-contacto textarea{
    height: 189px;
    resize: none;
    border-radius: 0px;
}

.form-contacto .btn-violeta {
    display: flex;
    width: 100%;
    max-width: 183px;
    height: 46px;
}

.contenedor-preguntas {
    margin: 0 10%;
    margin-bottom: 2rem;
}

.section-preguntas .accordion-item {
    background-color: var(--white);
}

.section-preguntas {
    margin-bottom: 5rem;
}

.section-preguntas .accordion-item {
    border-top: 1px solid #CCC;
}

.section-preguntas .accordion-button {
    background-color: var(--white) !important;
    border-radius: 0px !important;
}

.section-preguntas .accordion-button[aria-expanded="true"] span{
    font-weight: 600;
}

.section-preguntas .accordion-button span{
    color: var(--grey-3);
    font-size: 14px;
    font-weight: 400;
}

.section-suscripcion {
    margin-bottom: 5rem;
}

.section-suscripcion .bienvenido {
    background-color: #F5F6F6;
    padding: 92px 0 39px 0;
}

.contenedor-suscripcion {
    margin: 0 5%;
    margin-bottom: 2rem;
}

.section-suscripcion .bienvenido h2 {
    font-family: "Yeseva";
    font-size: 64px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 33px;
}

.bienvenido .contenedor-suscripcion .info  p{
    max-width: 402px;
}

.instrucciones {
    display: flex;
    font-family: "Inter";
    font-size: 14px;
    font-style: italic;
    line-height: 150%;
    align-items: center;
    margin-top: 1rem;
    font-weight: 300;
}

.instrucciones p {
    margin-bottom: 0;
}

.redondo {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black-2);
    border-radius: 50%;
    margin-right: 1rem;
    box-sizing: border-box;
}

.section-suscripcion .btn-violeta {
    width: 282px;
    height: 46px;
    font-size: 14px;
    margin-bottom: 18px;
}

.contenedor-planes {
    padding: 50px 100px 0px 100px;
}

.redondo-2 {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black-2);
    border-radius: 50%;
}

.contenedor-planes .table-responsive {
    padding: 1rem 2rem;
    background-color: #F5F6F6;
}

.contenedor-planes .table>thead {
    vertical-align: sub;
    border-bottom: 1px solid #C4C4C4;
}

.contenedor-planes .table>:not(caption)>*>* {
    border: 0px;
}


.contenedor-planes table thead th {
    font-size: 20px;
    font-weight: 500;
}

.info-atomizador p {
    background-color: #F5F6F6;
    padding: 20px;
    font-size: 15px;
    line-height: 180%;
}

.ver-mas {
    color: var(--primary);
    text-decoration: underline;
}

.ver-mas:hover {
    color: var(--primary);
}

.advertencia {
    color: #383838;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    line-height: 150%;
}

.section-cupones .encabezado {
    margin: 0 20% 3rem 20%;
    font-size: 14px;
}

.section-cupones .condiciones {
    margin-top: 300px;
    font-size: 12px;
    font-weight: 400;
    line-height: 170%;
    text-transform: capitalize;
}

.cupon {
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.cupon div{
    border: 1px dashed var(--Grey-8, #C4C4C4);
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 260px;
}

.contenedor-cupones {
    margin: 0 10%;
}

.cupon .btn-blanco {
    margin: 1rem 0;
    border: 1px solid #C4C4C4;
}

.footer-top form {
    padding-left: 12px;
} 

.soporte {
    display: flex;
    align-items: center;
    width: 168px;
    height: 53px;
    flex-shrink: 0;
    border-radius: 30px;
    background: var(--primary, #4D2952);
    padding: 0 20px;
    position: absolute;
    right: 30px;
    bottom: 20px;
    transition: 0.5s all ease;
    cursor: pointer;
    color: var(--white);
}

.soporte:hover {
    transform: scale(1.05);
}

.soporte img {
    padding-right: 10px;
}



@media (max-width: 1200px) {
    .card-title {
        min-height: 45px;
    }
}

@media (max-width: 992px) {
    nav .container, .footer-ventajas .container {
        max-width: 992px;
        background-color: var(--primary);
        margin: 0;
    }

    .footer-top .container {
        max-width: 992px;
    }

    .nav-header {
        padding: 0 10px;
    }

    .navbar {
        padding-top: 0 !important;
        border-top: 1px solid var(--primary);
    }
    
    .navbar .container {
        padding: 1rem 10px;
    }

    .nav-acciones {
        position: absolute;
        right: 0;
    }

    img.icono-nav{
        width: 32px;
    }

    .section-banners .col-6 div{
        height: 350px;
    }

    .section-cupones .encabezado {
        margin: 0 0 3rem 0;
    }

    .contenedor-cupones {
        margin: 0;
    }

    .section-cupones .condiciones {
        margin-top: 100px;
    }

    .categorias li a{
        font-size: 15px;
      
    }

    .categorias .btn-violeta {
        width: 100px;
        font-size: 12px;
        font-weight: 400;
    }

    .section-banners .titulo {
        font-size: 24px;
    }

    .section-banners .col-12 .contenido {
        padding: 3rem 0 2rem 0;
        display: flex;
    }

    .section-banners .col-md-6 .contenido {
        padding: 3rem 0 2rem 0;
        display: flex;
        max-width: 100%;
    }

    .section-banners .btn-cuadrado {
        width: 90% !important;
    }

    .footer-ventajas .row li:not(:last-child) {
        padding-bottom: 15px;
    }

    .section-grilla .row .col-6 img:not(.imagen-fondo) {
        max-height: 167px;
    }

    .contenedor-suscripcion {
        margin: 0;
    }

    .contenedor-planes {
        padding: 50px 0px 0px 0px;
    }

    .bienvenido {
        padding: 20px !important;
    }

    .bienvenido h2 {
        font-size: 52px !important;
    }
}

@media (max-width: 767px) {
    .enlaces{
        padding: 0;
    }
    .gitfcard .titulo {
        margin-left: 0;
    }

    .section-producto .btn-cuadrado {
        height: 46px;
        width: 200px;
        margin: 0 1rem !important;
    }

    .contenedor-cantidad {
        flex-direction: column;
        width: 50px;
        height: 110px;
    }

    .btn-add, .btn-sus {
        margin: 0;
    }

    .contedor-btn-registro {
        margin: 0;
    }

    .opinion {
        flex-direction: column;
        text-align: center;
    }

    .opinion span {
        text-align: end;
    }

    .section-cupones .condiciones {
        margin-top: 50px;
    }

    .nav-header {
        flex-direction: column-reverse;
        height: auto;
        justify-content: space-around;
    }

    .navbar .logo img{
        width: 180px;
        margin-left: 15px;
    }
    .navbar-dark{
        border: none;
    }
    .navbar-toggler-icon {
        width: 24px;
    }

    .navbar .container {
        justify-content: start;
    }

    .section-set .titulo {
        font-size: 50px;
    }

    .contenido {
        padding: 4rem;
        max-width: 100%;
        background: #ffffff6b;
    }

    .section-ofertas .contenido {
        padding: 2rem 0;
        display: flex;
    }

    .soporte {
        width: 100px;
        height: 50px;
        padding: 0 10px;
    }

    .section-contacto .contenedor-gifcard {
        max-width: 100%;
        height: 250px;
    }
    
    .section-contacto .contenedor-gifcard .btn-violeta{
        max-width: 100%;
    }

    .section-contacto .gitfcard .titulo {
        max-width: 100%;
        text-align: center;
    }

    .form-contacto .btn-violeta {
        width: 100%;
        max-width: 100%;
    }

    .contenedor-preguntas {
        margin: 0;
    }

    .contenedor-preguntas .accordion img{
        height: 250px;
        margin: 0 !important;
    }

    .section-pago {
        padding-bottom: 0;
    }

    .product-title{
        -webkit-line-clamp: 3;
        min-height: 45px;
    }
    .radial-blur {
        position: relative;
        width: 300px; /* Ajusta el ancho al tamaño deseado */
        height: 300px; /* Ajusta la altura al tamaño deseado */
        border-radius: 50%;
        overflow: hidden;
    }
      
    .radial-blur::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0) 30%, rgba(255,255,255,0.7) 100%);
        transform: translate(-50%, -50%);
        filter: blur(60px); /* Ajusta la cantidad de desenfoque */
        opacity: 0.7; /* Ajusta la opacidad según lo desees */
        pointer-events: none; /* Evita que el pseudo-elemento interfiera con otros elementos */
    }
}

@media (max-width: 570px) {
    .soporte {
        right: 10px;
    }

    .section-info-producto .menu-info li{
        font-size: 10px;
        width: 50%;
    }

    .section-grilla .row .col-6 {
        padding: 0;
    }
}

@media (max-width: 360px) {
    .nav-header {
        height: 40px;
    }

    .form-2 {
        padding: 10px;
    }
}