/* */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #656565;
    background: #fff;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 500px;
    min-width: 290px;
    line-height: 26px;
}

header {
    background: #fff;
    overflow: hidden;
    z-index: 5;
    position: relative;
}

.header-home {
    height: 100vh;
    min-height: 630px;
}

section,
footer {
    z-index: 1;
    position: relative;
}

h1,
.section-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    letter-spacing: 1.1px;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--color-base);
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.loader {
    position: fixed;
    width: 100px;
    height: 100px;
    background: url('../img/layout/loader.webp') center center no-repeat;
    background-size: 100% auto;
    top: 0;
    left: 0;
    z-index: 1000;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    opacity: .5;
    animation: spinAndPause 2s infinite;
}

.top-bar {
    width: 100%;
    height: auto;
    z-index: 12;
    display: flex;
    align-items: top;
    justify-content: space-between;
    height: 80px;
    background: var(--color-base);
    position: fixed;
    box-shadow: 0 0 3px rgba(0, 0, 0, .6);
    transition: all .2s ease-out;
}

.top-bar-home {
    background: transparent;
    height: 150px;
    position: absolute;
    box-shadow: none;
}

.logo-home {
    position: relative;
    left: 2%;
    top: 0
}

.logo-img-home {
    width: 250px;
    position: relative;
    max-width: 15vw;
    transition: all .4s ease-out;
}

.logo-fixed {
    position: relative;
    margin-top: 0;
    margin-left: 1.5%;
}

.logo-img-fixed {
    margin-left: 16px;
    width: 150px;
    position: relative;
    transition: all .2s ease-out;
}

/* menú */
.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    right: 2%;
    top: 20px;
    height: 40px;
    transition: all .2s ease-out;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 15px;
    overflow: visible;
}

.menu-top {
    font-size: .95rem;
    padding: 6px 10px;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.12s ease-in-out;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-top:hover {
    color: var(--color-hover) !important;
}

.only-responsive {
    display: none;
}

.btn-pedidos {
    background: var(--color-base-2)
}

.search-icon::before,
.search-icon:hover::before {
    background-image: url('../img/layout/search-white.svg');
    background-size: 22px;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
    margin-right: 20px;
    margin-top: 40px;
    /* background: rgba(0, 0, 0, .8); */
    width: 55px;
    height: 55px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.menu-toggle .bar {
    background: #fff;
    height: 2px;
    width: 35px;
    margin: 4px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(14px);
    margin-left: 20px;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-14px);
    margin-left: 20px;
}

.slogan {
    position: absolute;
    top: calc(50% - 130px);
    left: 50px;
    color: #fff;
    font-weight: 700;
    z-index: 5;
    font-size: clamp(.7rem, 1vw + 1rem, 2.4rem);
    line-height: 1.24;
}

.boxes-container {
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
    height: auto;
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
}

.boxes-text {
    font-weight: 700;
    color: var(--color-base);
    background: #fff;
    padding: 10px;
    display: inline-block;
    font-size: clamp(.5rem, 1vw + 1rem, 1.8rem);
}

.boxes {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 4%;
}

.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 calc(15% - 40px);
    aspect-ratio: 1 / 1;
    color: var(--color-base);
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #e8f4ff 0%, #b7d9f8 100%);
    box-shadow: inset 0 0 10px #b3d9ff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(.8rem, 1vw + .1rem, 1rem);
    line-height: 1.3;
    padding: 30px;
    box-sizing: border-box;
    min-width: 100px;
    min-height: 100px;
    max-width: 200px;
    max-height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.box img {
    width: 50%;
    margin: auto;
    display: block;
    margin-bottom: 12%;
}

.box-1 img {
    width: 55%;
    padding-bottom: 1%;
}

.box-2 img {
    width: 65%;
}

.box-3 img {
    padding-bottom: 2%;
}

.box-5 img {
    padding-bottom: 4%;
    width: 48%;
}

.box-6 img {
    padding-bottom: 4%;
    width: 40%;
}

/* Estilos para el ícono de búsqueda */
.search-toggle {
    cursor: pointer;
    margin-left: 15px;
}

.search-toggle-responsive {
    display: none;
}

#close-search {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -15px;
    right: -15px;
    border: 2px solid var(--color-base);
    border-radius: 100%;
    background: #111 url('../img/layout/close.svg') center center no-repeat;
    background-size: 13px auto;
    cursor: pointer;
}

#close-search:hover {
    background: #333 url('../img/layout/close.svg') center center no-repeat;
    background-size: 13px auto;
    border-color: #fff;
}

/* Estilos para el menú de búsqueda */
.search-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--overlay);
    width: 300px;
    padding: 20px 10px;
    z-index: 10;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    line-height: 20px;

}

.search-menu.active {
    transform: scaleY(1);
    opacity: 1;
}

/* Estilos del formulario dentro del menú de búsqueda */
.search-menu form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-menu input {
    padding: 8px;
    border: none;
    border-radius: 25px;
    width: 70%;
    outline: none;
    color: #888;
    font-size: 14px;
    box-shadow: inset 2px 2px 3px rgba(0, 0, 0, .2);
}

.search-menu button {
    margin-left: 10px;
    font-size: 14px;
}

.banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    position: relative;
    background-position: center center;
    background-color: #f0f0f0;
    margin-top: 80px;
}

.banner h1 {
    font-size: clamp(.1rem, 1vw + 1.5rem, 3rem);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
    margin-top: 40px;
    font-weight: 900;
    line-height: 1.3;
}

.banner-content {
    width: 100%;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-content {
    min-height: 100px;
    position: relative;
}

.content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 0 auto;
    padding: 30px 20px;
    position: relative;
}

.mensaje-construccion {
    width: auto;
    display: inline-block;
    margin: 30px auto;
    background: #f6f6f6;
    padding: 20px 30px;
    border: 1px dashed #ccc;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.4;
    max-width: 90%;
    position: relative;
}

.atencion-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: url('../img/layout/atencion.svg') center center no-repeat;
    margin: 5px auto;
}

#go-up {
    position: fixed;
    display: none;
    background: var(--gradient-gray);
    color: #fff;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    line-height: 50px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    bottom: 20px;
    right: 20px;
    border: none;
    transition: all 0.3s ease-in-out;
}

#go-up::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/layout/arrow-up-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    z-index: 1;
    transition: all 0.12s ease-in-out !important;
}

#go-up:hover {
    background: var(--gradient-blue);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.wsp {
    z-index: 1000;
    position: fixed;
    left: 15px;
    bottom: 15px;
    width: 60px;
    height: 60px;
    background: url('../img/layout/wsp-icon.webp') center center no-repeat;
    background-size: 100% auto;
    transition: transform 0.3s ease-in-out;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.wsp-text {
    position: fixed;
    left: 45px;
    bottom: 29px;
    width: 0;
    z-index: 999;
    background: rgb(1, 150, 36);
    color: #fff;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 500;
    transition: width 0.3s ease-in-out, padding 0.3s ease-in-out;
    border-radius: 25px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .3);
    border: 2px solid #fff;
}

.wsp:hover {
    animation: none;
    transform: scale(1.1);
}

.wsp:hover+.wsp-text {
    width: 120px;
    padding: 5px 40px;
}

.img-fade {
    opacity: 1 !important;
    transition: all .3s ease-in-out !important;
}

.img-fade:hover {
    opacity: .8 !important;
}

#btn-carro {
    z-index: 999;
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: 10px;
    background-color: #111;
    background-image: url('../img/layout/cart.svg');
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: center 27px;
    border-radius: 100%;
    border: 3px solid var(--color-base);
    box-shadow: 0 3px 4px rgba(0, 0, 0, .5);
    transition: all .2s linear;
}

#btn-carro:hover {
    background-color: #282828;
    border-color: #fff;
}

.items-carro {
    position: absolute;
    width: 100%;
    height: 20px;
    top: 3px;
    left: 0;
    color: #eeeda2;
    font-weight: 400;
    text-align: center;
}

.btn {
    background: var(--gradient-gray);
    border: 0;
    outline: none;
    cursor: pointer;
    border-radius: 50px;
    padding: 8px 12px;
    color: #fff !important;
    transition: all .2s linear;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1.2px;
    border: none;
}

.btn:hover {
    color: var(--color-hover) !important;
    background: linear-gradient(180deg, #4d7caf 0%, #1a3b5e 100%);
}

.btn-submit {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-right: 14px;
    padding-left: 20px;
    display: flex;
}

.btn-submit img {
    width: 20px;
    margin-left: 10px;
}

.submenu-toggle::after {
    content: url('../img/layout/chevron-down-white.svg');
    margin-left: 7px;
}

/* Estilos generales para el menú desplegable */
.menu-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 290px;
    border: 1px solid #ccc;
}

.menu-dropdown.active .dropdown-menu {
    display: block;
    max-height: 300px;
}

.dropdown-menu li {
    /* border-bottom: 1px solid #ddd */
    background: linear-gradient(0deg, #eee 0%, #fff 100%);
    text-shadow: none;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 3px;
    background-image: url("../img/layout/arrow-right-slide.svg");
    background-size: 17px auto;
    background-repeat: no-repeat;
    background-position: center 3px;
}

.dropdown-menu a,
.dropdown-menu a:link,
.dropdown-menu a:visited {
    padding: 10px 8px;
    text-decoration: none;
    color: #777 !important;
    display: block;
    font-size: 1rem;
    transition: all .1s ease-out !important;
}

.dropdown-menu a:hover {
    color: #fff !important;
    background: linear-gradient(180deg, #65a2e4 0%, #2a5b8f 100%);
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.flex-start {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
}

.flex-end {
    display: flex;
    justify-content: end;
    align-items: end;
    flex-wrap: wrap;
}

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

.flex-grow {
    flex-grow: 1;
}

.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.mx-1 {
    margin-right: 1rem;
    margin-left: 1rem;
}

.mx-2 {
    margin-right: 2rem;
    margin-left: 2rem;
}

.mx-3 {
    margin-right: 3rem;
    margin-left: 3rem;
}

.home-news {
    margin: 60px auto 50px auto;
    display: block;
}

.home-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}

.float-content {
    height: 500px;
}

.float-container {
    display: flex;
    align-items: stretch;
    height: 100%;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
    position: relative;
}

.float-container .btn {
    bottom: 30px;
    left: auto !important;
    right: 30px !important;
    width: 130px;
}

.float-3 {
    width: 30%;
    height: 100%;
}

.float-2-box {
    width: 20%;
    background-size: cover;
    background-position: center center;
    height: 100%;
    background-repeat: no-repeat;
}

.float-7 {
    width: 70%;
    padding: 0 3%;
    box-sizing: border-box;
}

.float-8-box {
    overflow-y: auto;
    padding-bottom: 100px;
    padding: 3%;
    width: 80%;
}

.float-container p {
    margin-bottom: 1.2rem;
}


.float-5 {
    width: 50%;
    height: auto;
}

.codart,
.novedad-date {
    display: block;
    font-size: 14px;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.novedad-date {
    text-align: right;
    color: #aaa;
    font-weight: 500;
}

.date-container {
    line-height: 16px;
}

.date-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 20px;
    vertical-align: middle;
    margin-bottom: 3px;
    margin-right: 5px;
}

.attachments-container {
    gap: 20px;
    margin-bottom: 30px;
    margin-right: 30px;
    display: block;
    float: left;
    width: 50%;
    height: auto;
    position: relative;
    z-index: 1;
}

.zoom-msg {
    width: 100px;
    height: 30px;
    position: absolute;
    left: calc(50% - 50px);
    bottom: -15px;
    background: var(--gradient-blue);
    gap: 4px;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 3px rgb(255, 255, 255);
    text-align: left;
    padding-left: 13px;
    line-height: 30px;
    font-size: 13px;
    display: none;
    font-weight: 500;
}

.zoom-msg img {
    display: inline-block;
    width: 20px;
    transform: rotateY(180deg);
    position: absolute;
    right: 12px;
    top: 5px;
}

.docs-container {
    width: 100%;
    display: flex;
    padding-top: 40px;
    gap: 20px;
    font-size: 1rem;
    font-weight: 500;
    justify-content: center;
    align-items: center;
}

.docs-container img {
    width: 60px;
    transition: all .3s ease-in-out;
    margin: auto;
    display: block;
}

.docs-container:hover img {
    transform: scale(1.1);
}

.docs-container span {
    display: block;
    text-align: center;
    margin-top: 10px;
}

.no-image {
    margin: auto;
    width: 100%;
    height: 200px;
    background-color: #f2f2f2;
    background-image: url('../img/layout/no-image.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.image-container {
    width: 100%;
    height: 400px;
    margin: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all .3s linear;
}

.thumbnails-container {
    height: 200px;
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-top: 10px;
}

.thumbnails-container a {
    flex: 1;
    display: block;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
}

.thumbnail {
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s linear;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5);
}

.home {
    background: url('../img/layout/home-left.jpg') center center no-repeat;
    background-size: cover;
}

.empresa {
    background: url('../img/layout/empresa.jpg') center center no-repeat;
    background-size: cover;
}

.contacto {
    background: url('../img/layout/contacto.webp') center center no-repeat;
    background-size: cover;
}

.novedades {
    background: url('../img/layout/novedades.jpg') center center no-repeat;
    background-size: cover;
}

.link-sc {
    display: inline;
    width: auto !important;
    height: auto !important;
}

.articulo,
.articulo:visited {
    display: block;
    height: 100%;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
}

.img-container {
    width: 280px;
    height: 280px;
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5);
    z-index: 2;
}

.articulo-detalle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4rem;
    font-size: 0.9rem;
    color: #444;
    margin: 15px 0;
}

.articulo-codigo-name {
    width: 70%;
}

.articulo-codigo {
    color: var(--color-base);
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
}

.articulo-name {
    display: block;
    font-weight: 300;
}

.articulo-precio {
    color: #333;
    display: inline-block;
    margin-left: 20px;
    font-weight: 700;
    width: 30%;
    text-align: right;
    line-height: 25px;
}

.articulo-detalle-carro {
    float: right;
    width: calc(50% - 30px);
}

.articulo-detalle-carro .articulo-codigo {
    width: 100%;
    font-size: 1rem;
}

.articulo-detalle-carro .articulo-precio {
    width: 100%;
    font-size: 1.3rem;
    line-height: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 10px 0;
    padding: 10px;
}

.articulo-variantes {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
}

.celda-variante {
    height: 180px;
    width: 130px;
    padding: 5px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: .7rem;
    line-height: .9rem;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.celda-variante:hover {
    border: 1px solid var(--color-base);
    background-color: #fffdef;
}

.variante-foto {
    width: 100%;
    height: 100px;
    background-position: center center;
    background-size: 100% auto;
    position: relative;
    z-index: 2;
}

.variante-codigo {
    color: var(--color-base);
    margin: 4px 0;
}

.variante-nombre {
    font-weight: 700;
    height: 30px;
    color: #333;
    overflow: hidden;
}

.variante-en-carro {
    position: absolute;
    z-index: 3;
    width: 25px;
    height: 25px;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    background: #ff3330 url('../img/layout/cart-small.svg') center center no-repeat;
    background-size: 15px auto;
}

.mensaje-pausa {
    width: 100%;
    padding: 30px;
    margin: 0px auto 0 auto;
    text-align: center;
    background: #333;
    font-size: 1.1rem;
    color: #fff;
}

footer {
    min-height: 400px;
    width: 100%;
    color: #fff;
    position: relative;
    z-index: 0;
    background: radial-gradient(circle at 66% 50%, #3b79b3 0%, #034382 45%, var(--color-base) 100%);
}

.shape-footer-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: auto;
    z-index: 0;
    max-width: 447px;
    opacity: .5;
}

.shape-footer-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    height: auto;
    z-index: 0;
    max-width: 447px;
    transform: scaleX(-1) scaleY(-1);
    opacity: .5;
}

#mapa {
    display: none;
    width: 100%;
    height: 500px;
    position: relative;
    background-color: #fff;
    background-image: url(../img/layout/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90px 90px;
}

.btn-ver-mapa {
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-left: 10px;
    background: url('../img/layout/map.svg') center center no-repeat;
    background-size: 25px auto;
    cursor: pointer;
    transition: all .2s linear;
}

.btn-ver-mapa:hover,
.map-blue:hover {
    scale: 1.3;
}

.map-blue {
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-left: 10px;
    background-size: 25px 25px;
    cursor: pointer;
    transition: all .2s linear;
    background-image: url('../img/layout/map-blue.svg');
}

.btn-cerrar-mapa {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 40px;
    left: calc(50% - 20px);
    border-radius: 50%;
    background: #fff url('../img/layout/close-blue.svg') center center no-repeat;
    background-size: 40px auto;
    cursor: pointer;
    transition: all .2s linear;
    z-index: 100;
}

.btn-cerrar-mapa:hover {
    scale: 1.3;
}

.bg-animated {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../img/layout/bg-animated.svg') center bottom no-repeat;
    opacity: .20;
}

.copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.copy img {
    margin: auto;
}

.copy p {
    margin-top: 8px;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    color: #fff;
    position: relative;
    z-index: 2;
}

.footer-section>div {
    flex: 1;
    padding: 0 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo {
    width: 100%;
    max-width: 250px;
    margin: 50px auto 0 auto;
}

.footer-title {
    letter-spacing: 1.2px;
    font-size: 1.3rem;
    font-weight: 300;
}

.footer-item .footer-icon {
    width: 35px;
    min-width: 35px;
    min-height: 35px;
    height: 35px;
    margin-right: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5)
}

.footer-menu-panel {
    float: left;
    min-width: 200px;
    margin-right: 40px;
    font-size: .95rem;
}

.footer-menu,
.footer-item {
    margin-left: 20px;
    margin-bottom: 23px;
}

.footer-item a,
.footer-item a:visited {
    color: #fff !important;
}

.footer-menu a,
.footer-menu a:visited {
    display: block;
    margin-bottom: 9px;
    color: #fff !important;
}

.footer-item a:hover,
.footer-menu a:hover {
    color: var(--color-hover) !important
}

.footer-menu a::before {
    content: "•";
    margin-right: 10px;
    font-size: 20px;
    vertical-align: top;
    color: rgba(255, 255, 255, .5);
}

.footer-social {
    padding-top: 50px;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px auto;
}

.social-media,
.social-media:visited {
    display: inline-block;
    text-align: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 5px auto;
    border-radius: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: all .3s linear;
    border: 1px solid rgba(255, 255, 255, .5);
}

.social-media img {
    width: 30px;
    margin: 18px auto;
}

.social-media:hover {
    opacity: 1;
    border: 2px solid #fff;
    box-shadow: 0 0 12px #aaa;
}

.icon-place {
    background-image: url('../img/layout/place-icon.svg');
    background-size: 15px auto;
}

.icon-phone {
    background-image: url('../img/layout/phone-icon.svg');
    background-size: 17px auto;
}

.icon-email {
    background-image: url('../img/layout/email-icon.svg');
    background-size: 14px auto;
}

.icon-instagram {
    background-image: url('../img/layout/instagram-icon.svg');
    background-size: 19px auto;
}

.icon-clock {
    background-image: url('../img/layout/clock-icon.svg');
    background-size: 15px auto;
}

.contact-icon {
    min-width: 25px;
}

.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back img {
    width: 18px;
    margin-right: 10px;
}

ul.breadcrumb {
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

ul.breadcrumb li {
    display: inline;
    font-size: 1rem;
    color: var(--color-base)
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: #bbb;
    content: "►";
    font-size: 12px;
}

ul.breadcrumb li a {
    text-decoration: none;
    color: var(--color-base) !important
}

ul.breadcrumb li a:hover {
    text-decoration: none;
    color: #111 !important;
}

.social-share-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 100px;
    margin-top: 30px;
}

.social-share-bar a {
    display: flex;
    width: 45px;
    height: 45px;
    background: #111;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
    border-radius: 100%;
    border: 2px solid var(--color-base);
}

.social-share-bar a:hover {
    background: #fff;
    border: 2px solid #333;
}

.social-share-bar img {
    width: 21px;
    height: auto;
}

.tabla-articulos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 35px;
}

.celda-articulo {
    width: 23%;
    min-width: 300px;
    height: 445px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transition: all .2s linear;
}

.celda-articulo:hover {
    background: #fafafa;
}

.filters-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0;
    margin-bottom: 30px;
    font-weight: 400;
    color: #aaa;
    font-size: 17px;
    gap: 30px;
}

.frm-select {
    /* Reset */
    appearance: none;
    border: none;
    outline: 0;
    font-size: 16px;
    width: 100%;
    max-width: 310px;
    padding: 10px 15px;
    background-color: #fff;
    background-image: url('../img/layout/caret.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 25px auto;
    color: var(--color-base);
    border-radius: 25px;
    cursor: pointer;
    transition: all .2s linear;
    border: 1px solid #ddd;


    &::-ms-expand {
        display: none;
    }

    &:focus {
        outline: none;
    }
}

.frm-select:hover {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.frm-select option {
    color: inherit;
    background-color: #f7f7f7;
}

.categoria-title {
    margin-bottom: 6px;
    letter-spacing: 1.2px;
    color: #999;
    width: 100%;
    text-align: center;
}

.contact-logo {
    width: 100%;
    max-width: 260px;
    margin-bottom: 50px;
}

.contact-data {
    display: flex;
    justify-content: start;
}

.contact-data h3 {
    letter-spacing: 1.3px;
    color: var(--color-base);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    line-height: 22px;
    width: 100%;
}

.contact-item .icon-place,
.contact-item .icon-clock,
.contact-item .icon-phone,
.contact-item .icon-email {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background-color: var(--color-base);
    background-image: url('../img/layout/place-icon.svg');
    background-size: 22px auto;
    margin-right: 11px;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact-item .icon-clock {
    background-image: url('../img/layout/clock-icon.svg');
    background-size: 21px auto;
}

.contact-item .icon-phone {
    background-image: url('../img/layout/phone-icon.svg');
    background-size: 25px auto;
}

.contact-item .icon-email {
    background-image: url('../img/layout/email-icon.svg');
    background-size: 19px auto;
}

.contact-social {
    gap: 10px;
}

.contact-social a {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.contact-social a:hover {
    background: var(--gradient-gray);
    border: 2px solid #555;
}

.contact-social img {
    width: 23px;
    height: auto;
}

/* Estilos generales para el formulario */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;

}

#contact-form {
    margin-top: 30px;
}

.form-container .white {
    text-shadow: 0 0 5px #333;
    font-size: 20px;
    line-height: 10px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.data-form {
    display: flex;
    gap: 20px;
}

/* Estilos para los elementos dentro del formulario en pantallas grandes */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    margin-left: 16px;
}

.frm-input,
.frm-textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #dadada;
    border-radius: 25px;
    box-sizing: border-box;
    resize: none;
    outline: none;
    transition: all .3s linear;
    color: #888;
}

.frm-input:focus,
.frm-textarea:focus {
    border: 1px solid var(--color-base-2);
}

#form-message {
    margin-top: 15px;
    font-size: 1.1em;
}

#honeypot {
    display: none;
}


#form-message {
    margin-top: 15px;
    font-size: 1.1em;
}

#honeypot {
    display: none;
}

.li::before {
    content: "►";
    color: var(--color-yellow);
    margin-right: 5px;
    font-size: 13px;
    vertical-align: top;
}

.celda-buscador {
    width: 100%;
    display: flex;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #e9e9e9;
    margin-bottom: 10px;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    transition: all .2s linear;
}

.img-buscador {
    max-width: 100px;
    margin: 10px;
    border-radius: 8px;
}

.items-empresa-container {
    gap: 8%;
    width: 100%;
    height: auto;
}

.item-empresa {
    width: 150px;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.item-empresa-img {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-yellow-0);
    border-radius: 100%;
    border: 8px solid #fff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .1);
}

.item-empresa p {
    width: 100%;
    margin-top: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--color-green);
    line-height: 22px;
}

.img-empresa {
    max-width: 200px;
    height: auto;
    opacity: 1;
    transition: all .2s linear;
}

.img-empresa:hover {
    opacity: .7;
}

.img-empresa img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.img-float-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

.img-float-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.lista-empresa li {
    margin: 15px 0;
}


/* Responsive */
@media (max-width: 1350px) {
    .navbar {
        text-shadow: -1px -1px 0 var(--color-base), 1px -1px 0 var(--color-base), -1px 1px 0 var(--color-base), 1px 1px 0 var(--color-base);
    }
}

@media (max-width: 1100px) {
    .only-responsive {
        display: inline-block;
    }

    .menu-dropdown .dropdown-menu {
        position: static;
        width: 100%;
        max-width: 500px;
        margin-right: auto;
        margin-left: auto;
    }

    .menu-dropdown li {
        text-align: left;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        max-height: 0;
        overflow-y: auto;
        transition: max-height 0.3s ease-in-out;
        z-index: 1;
        background-color: rgba(2, 39, 82, 0.95);
        background-image: url('../img/layout/bg-menu-responsive.webp');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        text-align: center;
    }

    .logo-responsive {
        width: 160px;
        height: 100px;
        position: absolute;
        top: 0;
        left: calc(50% - 80px);
        background: url('../img/layout/logo.webp') center center no-repeat;
        background-size: 100% auto;
    }

    .btn-pedidos {
        display: inline-block !important;
    }

    .nav-links.active {
        padding: 150px 30px 30px 30px;
        max-height: 100vh;
        height: auto;
    }

    .menu-top {
        display: block;
        text-shadow: none;
    }


    .menu-toggle {
        display: flex;
    }

    .navbar {
        right: 0;
        top: 0;
        width: 100%;
        z-index: 0;
        position: absolute;
    }

    .navbar li {
        width: 100%;
        text-shadow: none;
    }

    .search-toggle-responsive {
        display: inline-block;
        position: absolute;
        top: 17px;
        right: 90px;
    }

    .search-toggle-desktop {
        display: none;
    }

    .menu-top-icon.openLogin {
        position: absolute;
        left: 20px;
        top: 15px;
    }

    .search-menu {
        top: 40px;
        right: 40px;
        width: calc(100% - 20px);
        max-width: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icon-cliente {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .content {
        width: 100%;
        padding: 20px 4%;
    }


    .contact-data .float-3 {
        margin-top: 40px;
    }

    .empresa {
        background-size: 100% auto;
    }

    .filters-container {
        justify-content: center;
    }

    .contact-data {
        display: block;
        width: 100%;
    }

    .float-7,
    .float-3 {
        width: 100%;
        float: none;
    }

}

@media (max-width: 900px) {

    .banner {
        height: 100px;
    }

    .logo-home {
        left: 30px;
        top: 5px;
    }

    .logo-img-home {
        width: 160px;
        max-width: 160px;
    }
}

@media (max-width: 700px) {
    .articulo {
        font-size: 14px !important;
        line-height: 18px !important;
    }

    .footer-section {
        flex-direction: column;
    }

    .footer-section>div {
        padding: 10px 0;
    }

    .footer-title {
        text-align: center;
    }

    .footer-social {
        margin: 20px auto 40px auto;
    }

    .empresa {
        background-size: cover;
    }

    .attachments-container {
        display: block;
        float: none;
        width: 100%;
    }

    .img-float-right,
    .img-float-left {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .img-empresa {
        max-width: 80%;
        margin: auto;
        margin-bottom: 30px;
    }

    .articulo-detalle-carro {
        float: none;
        width: 100%;
    }

    .data-form {
        flex-direction: column;
    }

    .data-form .float-5 {
        margin-bottom: 0;
        width: 100%;
    }

}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spinAndPause {
    0% {
        transform: rotate(0deg);
        animation-timing-function: ease-in;
    }

    30% {
        transform: rotate(270deg);
        animation-timing-function: linear;
    }

    60% {
        transform: rotate(540deg);
        animation-timing-function: ease-out;
    }

    100% {
        transform: rotate(720deg);
    }
}

/* jQuery UI */
.ui-widget {
    font-family: "Merriweather", serif !important;
    font-size: 1rem !important;
}

.ui-widget-overlay {
    background: var(--overlay) !important;
}

.ui-dialog {
    position: fixed !important;
    z-index: 9999 !important;
    max-width: 400px !important;
    width: 100% !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ui-widget-content {
    color: #ffffe6 !important;
}

.ui-dialog .frm-input {
    width: 100%;
    outline: none !important;
    font-size: 1rem !important;
    color: #444 !important;
    padding: 3px 5px !important;
    border: 2px solid transparent !important;
    transition: all .2s ease-in-out !important;
    border-radius: 4px !important;
}

.ui-dialog .frm-input:focus {
    background: #f9ffda;
    border: 2px solid #ffd61e !important;
}

.ui-dialog a,
.ui-dialog a:link,
.ui-dialog a:visited {
    color: #ffeeca !important;
    transition: all .2s ease-in-out !important;
    text-decoration: none !important;
    font-weight: 300 !important;
}

.ui-dialog a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.ui-dialog .btn {
    padding: 6px 16px;
}

.togglePassword {
    cursor: pointer;
    position: absolute;
    right: 9px;
    top: 40px;
    width: 20px;
    height: 20px;
}

.eye-icon-on {
    background: url('../img/layout/eye-on.svg') center center no-repeat;
    background-size: 20px 20px;
}

.eye-icon-off {
    background: url('../img/layout/eye-off.svg') center center no-repeat;
    background-size: 20px 20px;
}

#loginDialog,
#dialog,
#passwordRecoveryDialog {
    display: none;
    overflow: hidden !important;
}

#passwordRecoveryForm {
    margin: 20px 0;
}

#dialog {
    z-index: 11000 !important;
    position: relative !important;
}

form label {
    display: block;
    margin: 20px 0;
    z-index: 1;
    position: relative;
}

form label p {
    margin-bottom: 5px;
    text-align: center;
}

.procesando {
    display: block;
    position: relative;
    height: 50px;
    width: 50px;
    text-align: center;
    background: url('../img/layout/loader.webp') center center no-repeat;
    background-size: 50px 50px;
    animation: spinAndPause 2s infinite;
    margin: 0 auto;
}

.success {
    color: #088b24;
    padding: 5px;
    background: #e2ffe4;
    border-radius: 10px;
    border: 1px solid #099c29;
    font-size: 14px !important;
    margin-top: 7px;
}

.error {
    color: #c43636;
    padding: 5px 10px;
    background: #ffdfdf;
    border-radius: 4px;
    border: 1px solid #db3e3e;
    font-size: 14px !important;
    margin-top: 7px;
}

.form-group .error {
    display: none;
}

/* Estilos para el formulario con ID #frm-registro */
#frm-registro {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 5px;
    border: 1px solid #eee;
    width: 100%;
    margin: 2rem auto;
}

#frm-registro .form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}

#frm-registro label {
    flex: 1;
    margin: 0;
    margin-left: 20px;
    display: block;
    text-align: left;
}

#frm-registro label::before {
    content: "·";
    margin-right: 5px;
}

#frm-registro .frm-input {
    flex: 2;
    width: 100%;
    max-height: 40px;
}

#frm-registro input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.form-group .required {
    display: inline-block;
    margin-left: 7px;
    color: #ff3f6f;
}

#frm-registro .btn {
    padding-right: 20px;
    padding-left: 20px;
}

/* Estilos para pantallas más pequeñas */
@media (max-width: 900px) {
    #frm-registro .form-group {
        flex-direction: column;
        padding-bottom: 0;
    }

    #frm-registro label {
        margin-left: 0;
        margin-top: 20px;
    }
}

.toggle-pass-cliente {
    position: absolute;
    left: -10px;
    top: 10px;
    width: 20px;
    height: 20px;
}

.toggle-pass-cliente .togglePassword {
    top: 0;
    right: 0;
}

/* CARRO */
.articulo-mostrar-detalle {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 5;
    background-color: rgba(0, 0, 0, .34);
    background-image: url('../img/layout/zoom-in.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px auto;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    transition: all .3s linear;
    border: 2px solid rgba(255, 255, 255, .9);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
}

.articulo-mostrar-detalle:hover {
    transform: scale(1.3);
    background-color: rgba(0, 0, 0, .6);
    box-shadow: 0 11px 15px rgba(0, 0, 0, .3);
}

.celda-articulo:hover .articulo-mostrar-detalle {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.articulo-no-stock {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-style: italic;
    color: #aaa;
    font-weight: 300;
}

.articulo-cart,
.item-quantity {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 10px;
}

.articulo-cart .ui-widget-content,
.item-quantity .ui-widget-content {
    background: #f0f0f0 !important;
    border: none !important;
    width: 150px;
    height: 50px;
    border-radius: 2px;
}

.item-quantity .ui-spinner-up,
.item-quantity .ui-spinner-down,
.articulo-cart .ui-spinner-up,
.articulo-cart .ui-spinner-down {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    background: linear-gradient(180deg, #aaa 0%, #ccc 100%);
    border: 0;
}

.item-quantity .ui-spinner-up:hover,
.item-quantity .ui-spinner-down:hover,
.articulo-cart .ui-spinner-up:hover,
.articulo-cart .ui-spinner-down:hover {
    background: #777;
    border: none;
}

.item-quantity .ui-spinner-down,
.articulo-cart .ui-spinner-down {
    right: auto;
    left: 0;
}

.item-quantity .ui-spinner-input,
.articulo-cart .ui-spinner-input {
    width: 100% !important;
    height: 50px !important;
    line-height: 50px !important;
    text-align: center !important;
    font-size: 1rem !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    color: #111 !important;
}

.add-to-cart,
.add-to-cart-unregistered,
.remove-from-cart {
    outline: none;
    border: none;
    width: 100px;
    height: 50px;
    cursor: pointer;
    border-radius: 10px;
    border: 5px solid #f1f1f1;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1.1px;
    text-align: center;
    transition: all 0.3s ease;
}

.add-to-cart,
.add-to-cart-unregistered {
    background: #64cc87;
}

.add-to-cart::before,
.add-to-cart-unregistered::before {
    content: "Agregar";
}

.remove-from-cart {
    background: #f53434;
}

.remove-from-cart::before {
    content: "Eliminar";
}

.add-to-cart:hover,
.add-to-cart-unregistered:hover,
.remove-from-cart:hover {
    border-color: #ccc;
    background: #79776c;
}

/* Estilo base para el carrito */
.carro {
    min-height: 150px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    width: 100%;
}

.empty-cart {
    margin-top: 90px;
    margin-bottom: 100px;
    text-align: center;
}

.empty-cart::before {
    content: "El carrito está vacío.";
}

.cart-items {
    display: flex;
    flex-direction: column;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 14px;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-name a,
.item-name a:visited {
    font-size: 1rem;
    font-weight: bold;
    color: #222;
    text-decoration: none;
}

.item-name a:hover {
    color: #222;
    text-decoration: underline;
}

.item-price {
    color: #888;
}

.item-quantity {
    width: 150px;
}

.total-carro {
    line-height: 1.3rem;
}

.item-subtotal {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    width: 120px;
    text-align: right;
}

.item-price-labels {
    display: none;
}

.item-action {
    display: flex;
    justify-content: center;
}

.remove-item-from-cart {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    background: url('../img/layout/delete-icon.svg') center center no-repeat;
    background-size: 30px auto;
    border: none;
    outline: none;
    transition: all 0.2s linear;
    cursor: pointer;
}

.remove-item-from-cart:hover {
    transform: rotate(180deg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    font-size: 1.3rem;
}

.botones-pie-carro {
    display: flex;
    justify-content: space-between;
    /* Espaciar los elementos */
    align-items: center;
    /* Centrar verticalmente */
    margin: 50px auto 30px auto;
    gap: 10px;
}

.botones-pie-carro a {
    width: 250px;
    background-color: #111;
    background-repeat: no-repeat;
}

.botones-pie-carro a:hover {
    background-color: #333;
    border: 2px solid var(--color-base-2)
}

.btn-seguir-comprando {
    background-image: url('../img/layout/back-arrow.svg');
    background-size: 20px auto;
    background-position: left 14px center;
    padding-left: 50px;
}

.btn-vaciar-carro {
    background-image: url('../img/layout/delete-cart.svg');
    background-size: 25px auto;
    background-position: left 19px center;
    padding-left: 55px;
}

.btn-finalizar-compra {
    background-image: url('../img/layout/checkout-icon.svg');
    background-size: 25px auto;
    background-position: left 19px center;
    padding-left: 55px;
}

/* Estilo responsivo */
@media (max-width: 850px) {
    .botones-pie-carro {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .cart-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5px;
        position: relative;
    }

    .item-image {
        align-self: center;
    }

    .item-details {
        text-align: center;
    }

    .item-name {
        margin-bottom: 15px;
    }

    .item-subtotal {
        width: 100%;
        text-align: center;
    }

    .cart-total {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .item-price-labels {
        display: inline-block;
    }

    .item-action {
        position: absolute;
        top: 10px;
        right: 15px;
    }

    .bg-animated {
        display: none;
    }

    footer {
        background: radial-gradient(circle at center 50%, #3b79b3 0%, #034382 45%, var(--color-base) 100%);
    }

    .slogan {
        top: 130px !important;
    }

    .float-content {
        width: 100%;
        max-width: 500px;
        height: auto;
        display: block;
    }

    .float-2-box,
    .float-8-box {
        display: block;
        width: 100%;
        height: auto;
    }

    .float-2-box {
        background-position: center -130px;
        height: 400px;
    }

    .float-8-box {
        padding: 6%;
        padding-bottom: 100px;
    }

    .float-container {
        display: block;
        border-radius: 10px;
    }

}