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

html,body{
    height: 100%;
}

body{
    background:#f5f5f5;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
}

.main{
    
    flex: 1;
    display: flex;
    flex-direction: column;
}


.container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}


header{

    background-color: white;

    position: sticky;

    top:0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

}

header .container{

    display:flex;

    align-items:center;

    padding:15px 40px;

}

nav{

    

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

}

nav a{

    text-decoration:none;

    color:#222;

    font-weight:600;

    font-size:17px;

    transition:.3s;

}

nav a:hover{

    color:#ff5a00;

}


.user-actions{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}


.search-bar{
    margin: 20px 0 10px;
}

.search-bar .container{
    display: flex;
    justify-content: center;
}

.search-bar input{
    width: 600px;
    max-width: 90%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}



.banner h1{
    
    
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.banner p{
    margin-bottom: 25px;
    font-size:18px;

    font-weight:500;

    letter-spacing:1px;

}
.banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.banner .container{
    position: relative;
    z-index: 1;
    text-align: center;
}


.filtros{
    background: #f4f5f7;
    margin: 0;
    padding: 18px 0 4px;
}

.catalog-search-panel{
    display: block;
    margin-bottom: 12px;
}

.catalog-search-panel .catalog-filter-search{
    margin: 0 auto;
    max-width: 680px;
    width: 100%;
}

.catalog-search-panel .catalog-filter-search input{
    max-width: none;
    width: 100%;
}

.catalog-filters{
    align-items: end;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(160px, 1fr)) auto;
    max-width: 980px;
    padding: 14px;
}

.catalog-filter-field{
    display: grid;
    gap: 6px;
    min-width: 0;
}

.catalog-filter-field[hidden]{
    display: none;
}

.catalog-filter-field label{
    color: #4b5563;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.catalog-filter-field input,
.catalog-filter-field select{
    background: #fff;
    border: 1px solid #d7dce3;
    border-radius: 8px;
    color: #111;
    min-height: 42px;
    padding: 9px 12px;
    width: 100%;
}

.catalog-filter-field input:focus-visible,
.catalog-filter-field select:focus-visible,
.btn-limpiar-filtros:focus-visible{
    border-color: #f2360c;
    box-shadow: 0 0 0 3px rgba(242,54,12,.18);
    outline: none;
}

.btn-limpiar-filtros{
    background: #111;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    min-height: 42px;
    padding: 9px 18px;
    white-space: nowrap;
}

.btn-limpiar-filtros:hover{
    background: #f2360c;
}

.catalog-filter-summary{
    color: #f2360c;
    font-size: .9rem;
    font-weight: 700;
    grid-column: 1 / -1;
    margin: -2px 0 0;
}


.productos{
    margin: 20px 0;
    padding: 40px 0;
}

.productos .container{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1400px;
}


.card{

    background-color: white;

    padding: 15px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;

    display: flex;

    flex-direction: column;

}

.card-contenido{

    flex: 1;

    display: flex;

    flex-direction: column;

}

.card img{
    object-fit: contain;
    background-color: white;
    padding: 10px;
    width: 100%;
    height: 220px;
    border-radius: 10px;
}

.card h3{
    margin: 10px 0;
}

.card p{
    font-size: 14px;
    color: #242426;
    text-align: left;
    line-height: 1.5;
}

.card span{
    font-weight: bold;
}

.card .btn-comprar{

    margin-top: auto;

}

.card button{
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    background-color: black;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    background: linear-gradient(135deg,#111, #333);
}



.card button:hover{
    transform: scale(1.02);
    background-color: #333;
}

.card:hover{

    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.15);

}


.pag{
    margin: 20px 0;
}

.pag .container{
    display: flex;
    justify-content: center;
    gap: 10px;
}

.catalog-pagination-section{
    margin: 0 0 40px;
}

.catalog-pagination-section .container{
    display: flex;
    justify-content: center;
}

.catalog-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.catalog-pagination[hidden]{
    display: none;
}

.pagination-button{
    min-width: 42px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: white;
    color: #111;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.pagination-button:hover:not(:disabled),
.pagination-button.active{
    background: #111;
    border-color: #111;
    color: white;
}

.pagination-button:disabled{
    color: #999;
    cursor: not-allowed;
    opacity: .65;
}

.pagination-ellipsis{
    padding: 0 4px;
    color: #666;
    font-weight: 700;
}


.footer{
    background-color: #111;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: auto;
    
    border-top: 3px solid #F2360C;
}

.footer div{
    text-align: center;
}


.contenedor {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

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

@media (max-width: 768px) {
  .contenedor {
    grid-template-columns: 1fr;
  }
}

.overlay{

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 110vh;

    background: rgba(0,0,0,0.5);

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

    z-index: 2000;

}
.overlay.active{
    opacity: 1;
    visibility: visible;
}


.carrito-panel{

    
    position: fixed;

    top: 0;

    right: 0;

    width: min(100vw, 390px);

    max-width: 100%;

    height: 100dvh;

    background-color: white;

    z-index: 2001;

    padding: 20px;

    box-shadow: -5px 0 15px rgba(0,0,0,0.2);

    transform: translateX(100%);
    transition: transform 0.3s;

    display: flex;

    flex-direction: column;

    gap: 10px;

    overflow-y: auto;

}

.carrito-panel.active{
    display: flex;
    transform: translateX(0);
}

.carrito-panel:not(.active){
    display: none;
}


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


.carrito-header button{
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}


.item-carrito{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}


.item-carrito button{
    border: none;
    background-color: crimson;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
}


.btn-vaciar{
    padding: 12px;
    border: none;
    background-color: black;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-vaciar:hover{
    background-color: #333;
}

#carrito{
    cursor: pointer;
}

.carrito-panel::-webkit-scrollbar{
    width: 6px;
}

.carrito-panel::-webkit-scrollbar-thumb{
    background-color: #999;
    border-radius: 10px;
}

.notificacion{

    position: fixed;

    bottom: 20px;

    right: 20px;

    background-color: #111;

    color: white;

    padding: 15px 20px;

    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    z-index: 2000;

    opacity: 0;

    transform: translateY(20px);

    transition: 0.3s;

}


.notificacion.active{

    opacity: 1;

    transform: translateY(0);

}

/*Detalle del producto*/
.detalle-producto{

    padding: 50px 20px;

}


.detalle-card{

    background-color: white;

    border-radius: 20px;

    padding: 30px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    align-items: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);

}


.detalle-card img{

    width: 100%;

    border-radius: 20px;

}


.detalle-info{

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.detalle-info h2{

    font-size: 32px;

}


.detalle-info button{

    padding: 15px;

    border: none;

    background-color: black;

    color: white;

    border-radius: 10px;

    cursor: pointer;

    transition: 0.3s;

}


.detalle-info button:hover{

    background-color: #333;

}


@media(max-width: 768px){

    .detalle-card{

        grid-template-columns: 1fr;

    }

}

/*Productos relacionados*/
.productos-relacionados{

    margin-top: 60px;

}


.productos-relacionados h2{

    margin-bottom: 20px;

}


.productos-grid{

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

}

.card img,
.card h3,
.card p{
    cursor: pointer;
}

.checkout{

    padding: 50px 20px;

}


.checkout-grid{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    margin-top: 30px;

}


.checkout-resumen,
.checkout-formulario{

    background-color: white;

    padding: 30px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);

}


.checkout-item{

    padding: 15px 0;

    border-bottom: 1px solid #ddd;

}


.checkout-formulario form{

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.checkout-formulario input,
.checkout-formulario textarea{

    padding: 12px;

    border-radius: 10px;

    border: 1px solid #ccc;

}


.checkout-formulario textarea{

    resize: none;

    height: 120px;

}


.checkout-formulario button{

    padding: 15px;

    border: none;

    background-color: black;

    color: white;

    border-radius: 10px;

    cursor: pointer;

    transition: 0.3s;

}


.checkout-formulario button:hover{

    background-color: #333;

}


@media(max-width: 768px){

    .checkout-grid{

        grid-template-columns: 1fr;

    }

}

.btn-volver{

    margin-bottom: 30px;

    padding: 12px 20px;

    border: none;

    background-color: black;

    color: white;

    border-radius: 10px;

    cursor: pointer;

    transition: 0.3s;

}


.btn-volver:hover{

    background-color: #333;

}

.admin{

    padding: 50px 20px;

}


.admin-formulario,
.admin-productos{

    background-color: white;

    padding: 30px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);

    margin-bottom: 40px;

}


.admin-formulario form{

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 20px;

}


.admin-formulario input,
.admin-formulario textarea{

    padding: 12px;

    border-radius: 10px;

    border: 1px solid #ccc;

}


.admin-formulario textarea{

    resize: none;

    height: 120px;

}


.admin-formulario button{

    padding: 15px;

    border: none;

    background-color: black;

    color: white;

    border-radius: 10px;

    cursor: pointer;

}


#admin-productos{

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

    margin-top: 20px;

}


.admin-card{

    background-color: #f8f8f8;

    padding: 20px;

    border-radius: 15px;

    text-align: center;

}


.admin-card img{

    width: 100%;

    height: 200px;

    object-fit: cover;

    border-radius: 10px;

}


.admin-card h3{

    margin: 10px 0;

}


.admin-card button{

    margin-top: 15px;

    padding: 10px;

    width: 100%;

    border: none;

    background-color: crimson;

    color: white;

    border-radius: 10px;

    cursor: pointer;

}

.btn-admin{

    padding: 10px 15px;

    border: none;

    background-color: black;

    color: white;

    border-radius: 10px;

    cursor: pointer;

    transition: 0.3s;

}


.btn-admin:hover{

    background-color: #333;

}

.card{

    position: relative;

}


.badge{

    position: absolute;

    top: 10px;

    left: 10px;

    padding: 5px 10px;

    border-radius: 20px;

    color: white;

    font-size: 11px;

    font-weight: bold;

    z-index: 10;

    letter-spacing: 1px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);

}


.badge.nuevo{

    background-color: seagreen;

}


.badge.oferta{

    background-color: crimson;

    top: 45px;

}

.precios{

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

}


.precio-original{

    text-decoration: line-through;

    color: gray;

    font-size: 14px;

}


.precio-oferta{

    color: crimson;

    font-weight: bold;

    font-size: 20px;

}
.banner-contacto{

    background:
    linear-gradient(
        rgba(0,0,0,.5),
        rgba(0,0,0,.5)
    ),
    url("https://images.unsplash.com/photo-1556740749-887f6717d7e4");

    background-size: cover;
    background-position: center;

    color: white;

    text-align: center;

    padding: 100px 20px;

}

.banner-contacto h1{

    font-size: 3rem;

    margin-bottom: 10px;

}

.banner-contacto p{

    font-size: 1.2rem;

}

.contacto-volver{

    text-align: center;

    margin: 30px 0;

}

.contacto-contenedor{

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    padding: 20px;

}

.contacto-contenedor.contacto-general{

    grid-template-columns: 1fr;

}

.contacto-info{

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.info-card{

    background: white;

    padding: 20px;

    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,.1);

}

.info-card h3{

    margin-bottom: 10px;

}

.contacto-form{

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.contacto-form input,
.contacto-form textarea,
.contacto-form select{

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 10px;

    font-size: 16px;

}

.contacto-form button{

    background: black;

    color: white;

    border: none;

    padding: 15px;

    border-radius: 10px;

    cursor: pointer;

    transition: .3s;

}

.contacto-form button:hover{

    opacity: .9;

}

.mapa-contacto{

    margin-top: 50px;

}

.mapa-contacto iframe{

    width: 100%;

    height: 400px;

    border: none;

}

@media(max-width:768px){

    .contacto-contenedor{

        grid-template-columns: 1fr;

    }

}

.red-social{

    display: block;

    margin: 8px 0;

    text-decoration: none;

    color: #111;

    font-weight: 500;

    transition: .3s;

}

.red-social:hover{

    color: #0d6efd;

    padding-left: 5px;

}

/* ==========================
   LOGIN
========================== */

.login-page{

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 80vh;

    padding: 20px;

}

.login-card{

    background: white;

    padding: 40px;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0,0,0,.1);

    width: 100%;

    max-width: 450px;

}

.login-card h1{

    text-align: center;

    margin-bottom: 25px;

}

.login-card form{

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.login-card input{

    padding: 12px;

    border: 1px solid #ddd;

    border-radius: 8px;

}

.login-card button[type="submit"]{

    background: black;

    color: white;

    border: none;

    padding: 12px;

    border-radius: 8px;

    cursor: pointer;

}

.crear-cuenta{

    text-align: center;

    margin-top: 20px;

}

.btn-login{

    text-decoration: none;

    color: #111;

    border: 1px solid #111;

    padding: 8px 16px;

    border-radius: 8px;

    transition: .3s;

}

.btn-login:hover{

    background: #111;

    color: white;

}
.stock{

    font-size: 14px;

    font-weight: 600;

    margin: 8px 0;

}

.btn-comprar:disabled{

    background: #999;

    cursor: not-allowed;

}
#carrito{
    cursor:pointer;
    font-weight:600;
}
/* =====================
   DASHBOARD ADMIN
===================== */

.dashboard-admin{

    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

    gap: 20px;

    margin: 30px 0;

}

.dashboard-card{

    background: white;

    padding: 20px;

    border-radius: 12px;

    text-align: center;

    box-shadow:
    0 3px 10px rgba(0,0,0,.1);

}

.dashboard-card h3{

    font-size: 2rem;

    margin-bottom: 10px;

}
/*==================================
    LOGIN Y REGISTRO
===================================*/

.login-page{

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: calc(100vh - 140px);

    padding: 40px 20px;

    background: #f5f5f5;

}

.login-card{

    width:100%;
    max-width:500px;

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}
/*
.login-card{

    width: 100%;

    max-width: 450px;

    background: white;

    padding: 35px;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0,0,0,.1);

}*/

.login-card h1{

    text-align:center;


    font-size:42px;

    margin-bottom:10px;
}

.login-card form{

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.login-card input{

    padding: 12px;

    border: 1px solid #ddd;

    border-radius: 8px;

    font-size: 16px;

    outline: none;

    transition: .3s;

}

.login-card input:focus{

    border-color: black;

}

.login-card button[type="submit"]{

    background: black;

    color: white;

    border: none;

    padding: 12px;

    border-radius: 8px;

    font-size: 16px;

    cursor: pointer;

    transition: .3s;

}

.login-card button[type="submit"]:hover{

    background: #333;

}

.login-card p{

    margin-top: 20px;

    text-align: center;

}

.login-card a{

    text-decoration: none;

    color: black;

    font-weight: bold;

}

.login-card a:hover{

    text-decoration: underline;

}

.btn-volver{

    background: transparent;

    border: none;

    cursor: pointer;

    font-size: 15px;

    margin-bottom: 20px;

    color: #555;

    transition: .3s;

}

.btn-volver:hover{

    color: black;

}

.loging-link{
    text-align: center;
    margin-top: 20px;
}

.loging-link a{
    font-weight: bold;
}

/*=========================
    RESPONSIVE
==========================*/

@media(max-width:768px){

    .login-card{

        padding: 25px;

    }

}

.dropdown{

    position: relative;

    display: inline-block;

}

.dropdown-content{

    display: none;

    position: absolute;

    top: 100%;

    right: 0;

    background: #ffffff;

    min-width: 180px;

    border-radius: 8px;

    box-shadow: 0 8px 20px rgba(0,0,0,.15);

    padding: 8px 0;

    z-index: 9999;

}

.dropdown:hover .dropdown-content{

    display: block;

}

.dropdown-content a{

    display: block;

    width: 100%;

    padding: 10px 15px;

    text-decoration: none;

    color: #222;

    font-size: 15px;

    transition: .2s;

    box-sizing: border-box;

}

.dropdown-content a:hover{

    background: #f5f5f5;

    color: #000;

}

.btn-usuario{

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 18px;

    border: none;

    border-radius: 8px;

    cursor: pointer;

    font-weight: 600;

}
.topbar{

    background:#F2360C;

    color:white;

    text-align:center;

    padding:8px;

    font-size:14px;

    font-weight:bold;

}

.beneficios .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

text-align:center;

padding:40px 0;

}

.beneficios div{

background:white;

padding:20px;

border-radius:12px;

box-shadow:0 3px 10px rgba(0,0,0,.1);

}

.banner{
    
    
    
height: 175px;
display: flex;
align-items: center;
color: white;
position: relative;



background:

linear-gradient(

rgba(0,0,0,.6),

rgba(0,0,0,.6)

),

url("imagenes/banner-zonalibre.png");

background-size:cover;

background-position:center;

padding:120px 0;

color:white;

text-align:center;

}
.logo{
    
    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #F2360C;

    box-shadow:0 4px 12px rgba(0,0,0,.2);

    transition:.3s;

}

header.contacto .logo-container-contacto{
    margin: left 60px;
    display: flex;
    align-items: center;
}
.logo:hover{

    transform:scale(1.05) rotate(3deg);

    box-shadow:0 6px 18px rgba(255,106,0,.4);

}

.logo-container-contacto{

    margin-left: 80px;

}

/*boton dee explorar*/
.btn-banner{

    background:#F2360C;

    color:white;

    border:none;

    padding:15px 40px;

    border-radius:30px;

    font-weight:bold;
    box-shadow: 0 8px 20px rgba(255, 90, 0, .35);
    cursor:pointer;

}

.btn-banner:hover{

    background:#A60303;

}
.logo-container{

    flex:1;

    display:flex;

    justify-content:flex-start;
    margin-right: 100px;
    

}

.logo{
    justify-self: start;
}
.sucursales{

    padding:40px 20px;

}

.sucursales h2{

    text-align:center;

    margin-bottom:30px;

}

.mapas-grid{

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

    margin-top: 20px;

}
.sucursales{

    padding: 50px 20px;

}

.sucursales h2{

    text-align: center;

    margin-bottom: 30px;

    color: #F2360C;

}

.mapas-grid{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

}

.sucursal-card{

    width: 450px;

    background: white;

    padding: 15px;

    border-radius: 15px;

    box-shadow: 0 5px 15px rgba(0,0,0,.1);

}

.sucursal-card h3{

    margin-bottom: 15px;

}

@media(max-width:900px){

    .mapas-grid{

        grid-template-columns:1fr;

    }

}

.btn-contacto-soporte{

    background: black;

    color: white;

    border: none;

    padding: 12px 16px;

    border-radius: 10px;

    cursor: pointer;

    margin-top: 12px;

}

.btn-contacto-soporte:hover{

    background: #ff5a00;

}

/* QA-UX-001 public storefront refinements */
header{
    background-color:#0d0d0d;
    color:white;
}

header .container{
    justify-content:space-between;
    gap:24px;
}

nav a,
header #carrito,
header .btn-login{
    color:white;
}

header .btn-login{
    border:1px solid rgba(255,255,255,.25);
}

.logo-container{
    flex:0 0 auto;
    margin-right:24px;
}

.catalog-filters{
    min-width: 0;
}

.catalog-filter-field select,
.catalog-filter-field input{
    min-height:42px;
}

.card button:disabled,
.btn-comprar:disabled{
    background:#8d8d8d;
    cursor:not-allowed;
    transform:none;
}

.carrito-panel{
    width:390px;
    overflow-x:hidden;
}

.item-carrito{
    align-items:flex-start;
    display:grid;
    gap:12px;
    grid-template-columns:56px minmax(0,1fr);
}

.carrito-item-imagen{
    background:#f7f7f7;
    border:1px solid #eee;
    border-radius:8px;
    height:56px;
    object-fit:contain;
    padding:4px;
    width:56px;
}

.carrito-item-info{
    min-width:0;
}

.carrito-item-info h4{
    font-size:14px;
    line-height:1.3;
    margin-bottom:4px;
}

.carrito-item-info p{
    color:#555;
    font-size:13px;
    line-height:1.35;
    margin:3px 0;
}

.carrito-item-info strong{
    display:block;
    font-size:14px;
    margin-top:4px;
}

.carrito-item-acciones{
    display:flex;
    grid-column:1 / -1;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.cantidad-controles{
    align-items:center;
    display:inline-flex;
    gap:8px;
}

.cantidad-controles span{
    min-width:24px;
    text-align:center;
    font-weight:700;
}

.item-carrito .btn-cantidad{
    background:#111;
    border-radius:6px;
    color:white;
    min-height:32px;
    min-width:32px;
    padding:4px 8px;
}

.item-carrito .btn-eliminar-linea{
    background:#f2f2f2;
    color:#a60303;
    border:1px solid #e0e0e0;
    border-radius:6px;
    min-height:32px;
    padding:6px 10px;
}

.footer{
    background:#0d0d0d;
    border-top:4px solid #F2360C;
    color:white;
    display:block;
    padding:34px 20px;
}

.footer-inner{
    display:grid;
    gap:28px;
    grid-template-columns:1.2fr .8fr 1.2fr .8fr;
    margin:0 auto;
    max-width:1200px;
}

.footer section,
.footer nav{
    text-align:left;
}

.footer h3,
.footer h4{
    margin-bottom:12px;
}

.footer h3{
    color:#F2360C;
}

.footer p,
.footer a{
    color:#f4f4f4;
    font-size:14px;
    line-height:1.6;
}

.footer a{
    display:block;
    text-decoration:none;
}

.footer a:hover{
    color:#ff5a00;
}

.footer-nav{
    align-content:start;
    display:grid;
    gap:8px;
}

.footer-contacto [data-public-whatsapp-link]{
    color:#ff5a00;
    font-weight:700;
    margin-top:8px;
}

.checkout-formulario select{
    border:1px solid #ccc;
    border-radius:10px;
    padding:12px;
}

.contacto-info [data-public-whatsapp-link]{
    color:#F2360C;
    font-weight:700;
}

@media(max-width:1024px){
    header .container{
        flex-wrap:wrap;
    }

    nav{
        gap:20px;
        order:3;
        width:100%;
    }

    .footer-inner{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .container{
        padding:0 18px;
    }

    header .container{
        padding:12px 18px;
    }

    .logo{
        height:72px;
        width:72px;
    }

    .user-actions{
        gap:12px;
    }

    .carrito-panel{
        width:100%;
    }

    .footer-inner{
        grid-template-columns:1fr;
    }

    .sucursal-card{
        max-width:100%;
        width:100%;
    }
}

@media(max-width:390px){
    nav{
        gap:12px;
    }

    nav a{
        font-size:15px;
    }

    .carrito-item-acciones{
        align-items:flex-start;
        flex-direction:column;
    }
}
/* Acciones posteriores a la creacion del pedido. */
.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

/* RESPONSIVE-QA-001 */
.sr-only {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

img,
iframe {
    max-width: 100%;
}

button,
a,
input,
select,
textarea {
    max-width: 100%;
}

header .container {
    min-width: 0;
}

.logo-container {
    flex: 0 0 auto;
    margin-right: 0;
}

.site-nav {
    min-width: 0;
}

.user-actions,
#usuario-menu {
    min-width: 0;
}

#usuario-menu {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

#carrito {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 8px;
    line-height: 1;
    min-height: 40px;
    padding: 10px 12px;
    white-space: nowrap;
}

.cart-icon {
    display: inline-block;
    flex: 0 0 22px;
    height: 22px;
    width: 22px;
}

.mobile-menu-toggle {
    align-items: center;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    cursor: pointer;
    display: none;
    flex: 0 0 auto;
    height: 42px;
    justify-content: center;
    padding: 9px;
    width: 42px;
}

.mobile-menu-toggle span[aria-hidden="true"] {
    background: #fff;
    border-radius: 999px;
    display: block;
    height: 2px;
    margin: 3px 0;
    width: 20px;
}

.catalog-filters,
.catalog-search-panel,
.search-bar .container {
    min-width: 0;
}

.search-bar input,
.catalog-filter-field input,
.catalog-filter-field select {
    width: min(100%, 600px);
}

.productos .container,
.productos-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.card,
.detalle-card,
.checkout-resumen,
.checkout-formulario,
.info-card,
.login-card {
    min-width: 0;
}

.card h3,
.card p,
.detalle-info,
.checkout-item,
.info-card,
.login-card {
    overflow-wrap: anywhere;
}

.detalle-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.detalle-card img {
    height: auto;
    object-fit: contain;
}

.selector-variante select,
.checkout-formulario input,
.checkout-formulario textarea,
.checkout-formulario select,
.contacto-form input,
.contacto-form textarea,
.contacto-form select,
.login-card input {
    width: 100%;
}

.checkout-grid,
.contacto-contenedor {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.mapas-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.sucursal-card {
    width: 100%;
}

.sucursal-card iframe {
    display: block;
}

.carrito-panel {
    height: 100dvh;
    max-width: none;
    right: 0;
    width: min(100vw, 390px);
}

.overlay {
    height: 100dvh;
}

.carrito-header {
    gap: 12px;
}

#lista-carrito {
    min-height: 0;
}

.item-carrito {
    min-width: 0;
}

.carrito-item-acciones {
    min-width: 0;
}

.btn-vaciar {
    width: 100%;
}

.catalog-pagination {
    max-width: 100%;
}

@media(max-width:1024px) {
    .container {
        padding: 0 28px;
    }

    .catalog-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-filter-summary {
        grid-column: 1 / -1;
    }

    header .container {
        align-items: center;
        flex-wrap: nowrap;
    }

    .site-nav {
        gap: 18px;
    }

    .user-actions {
        gap: 12px;
    }

    .btn-login,
    .btn-usuario {
        padding: 10px 12px;
    }
}

@media(max-width:768px) {
    .topbar {
        font-size: 12px;
        line-height: 1.4;
        padding: 8px 14px;
    }

    header .container {
        display: grid;
        gap: 12px;
        grid-template-columns: auto 1fr auto;
        padding: 12px 18px;
    }

    .logo-container {
        grid-column: 1;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        grid-column: 2;
        justify-self: end;
    }

    .site-nav {
        background: #0d0d0d;
        border-top: 1px solid rgba(255, 255, 255, .12);
        display: none;
        gap: 8px;
        grid-column: 1 / -1;
        order: initial;
        padding-top: 10px;
        width: 100%;
    }

    body.is-mobile-nav-open .site-nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-nav a {
        border-radius: 8px;
        padding: 10px 12px;
    }

    .site-nav a:focus-visible,
    .site-nav a:hover {
        background: rgba(255, 255, 255, .08);
    }

    .user-actions {
        grid-column: 3;
        justify-self: end;
    }

    #usuario-menu {
        grid-column: 1 / -1;
        justify-content: flex-start;
        width: 100%;
    }

    #usuario-menu .btn-login,
    #usuario-menu .btn-usuario {
        flex: 1 1 150px;
        justify-content: center;
        text-align: center;
    }

    .banner {
        min-height: 300px;
        padding: 64px 0;
    }

    .banner h1 {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .banner p {
        font-size: 1rem;
    }

    .catalog-filters {
        display: grid;
        grid-template-columns: 1fr;
    }

    .catalog-filter-summary {
        grid-column: auto;
    }

    .catalog-filter-field input,
    .catalog-filter-field select,
    .btn-limpiar-filtros,
    .search-bar input {
        max-width: none;
        width: 100%;
    }

    .checkout,
    .detalle-producto {
        padding: 32px 0;
    }

    .checkout-grid,
    .detalle-card,
    .contacto-contenedor {
        grid-template-columns: 1fr;
    }

    .checkout-resumen,
    .checkout-formulario,
    .detalle-card {
        padding: 20px;
    }

    .detalle-info h1,
    .checkout h1,
    .banner-contacto h1,
    .login-card h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        line-height: 1.15;
    }

    .contacto-contenedor,
    .sucursales {
        padding: 20px 18px;
    }

    .login-page {
        align-items: flex-start;
        padding: 24px 18px;
    }

    .login-card {
        padding: 24px;
    }

    .footer {
        padding: 28px 18px;
    }
}

@media(max-width:430px) {
    .container {
        padding: 0 14px;
    }

    header .container {
        grid-template-columns: auto auto;
    }

    .mobile-menu-toggle {
        grid-column: 2;
    }

    .user-actions {
        flex-wrap: wrap;
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    #carrito {
        justify-content: center;
        width: 100%;
    }

    #usuario-menu {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }

    #usuario-menu .btn-login,
    #usuario-menu .btn-usuario {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .logo {
        height: 64px;
        width: 64px;
    }

    .productos {
        padding: 24px 0;
    }

    .card img {
        height: 190px;
    }

    .carrito-panel {
        padding: 16px;
    }

    .item-carrito {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .carrito-item-imagen {
        height: 52px;
        width: 52px;
    }

    .cantidad-controles {
        width: 100%;
    }

    .item-carrito .btn-eliminar-linea {
        width: 100%;
    }

    .receipt-topbar a,
    .receipt-actions button,
    .receipt-actions a,
    .btn-volver,
    .btn-banner,
    .checkout-formulario button,
    .contacto-form button {
        width: 100%;
    }
}

/* V1-HEADER-FOOTER-POLISH-001 */
.zl-topbar,
.site-header,
.footer {
    --zl-black: #0d0d0d;
    --zl-orange: #F2360C;
    --zl-white: #ffffff;
    --zl-muted: rgba(255, 255, 255, .72);
}

.zl-topbar {
    background: #F2360C;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

.zl-topbar-inner {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    min-height: 42px;
    padding-bottom: 6px;
    padding-top: 6px;
}

.zl-benefits,
.zl-social {
    align-items: center;
    display: flex;
    min-width: 0;
}

.zl-benefits {
    gap: 14px;
}

.zl-benefit {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    min-width: 0;
    padding-right: 14px;
    position: relative;
}

.zl-benefit:not(:last-child)::after {
    background: rgba(255, 255, 255, .35);
    content: "";
    height: 22px;
    position: absolute;
    right: 0;
    width: 1px;
}

.zl-benefit svg,
.zl-social svg,
.site-search svg,
.account-action svg,
.footer svg {
    fill: currentColor;
}

.zl-benefit svg {
    flex: 0 0 22px;
    height: 22px;
    width: 22px;
}

.zl-benefit .topbar-headset-icon {
    fill: none;
    overflow: visible;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.zl-benefit strong,
.zl-benefit small {
    display: block;
}

.zl-benefit strong {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.15;
}

.zl-benefit small {
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
    line-height: 1.25;
}

.zl-social {
    flex: 0 0 auto;
    gap: 10px;
    justify-content: flex-end;
    white-space: nowrap;
}

.zl-social a {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    gap: 5px;
    text-decoration: none;
}

.zl-social a:hover,
.zl-social a:focus-visible {
    color: #111111;
}

.zl-social svg {
    flex: 0 0 18px;
    height: 18px;
    width: 18px;
}

header.site-header {
    background: #0d0d0d;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    color: #ffffff;
    position: sticky;
    top: 0;
}

header.site-header .container {
    padding-left: 40px;
    padding-right: 40px;
}

header.site-header .site-header-main {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: auto minmax(240px, 1fr) auto;
    min-height: 92px;
    padding-bottom: 12px;
    padding-top: 12px;
}

header.site-header .site-header-main-compact {
    grid-template-columns: auto minmax(0, 1fr);
}

.site-header-simple .site-header-main-compact {
    justify-items: end;
}

.site-logo-link {
    align-items: center;
    display: inline-flex;
}

.site-header .logo {
    border-color: #F2360C;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
    flex: 0 0 auto;
    height: 76px;
    width: 76px;
}

.site-header .logo:hover,
.footer-logo:hover {
    transform: none;
}

.site-search {
    align-items: center;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    min-width: 0;
    overflow: hidden;
}

.site-search:focus-within {
    border-color: #F2360C;
    box-shadow: 0 0 0 3px rgba(242, 54, 12, .22);
}

.site-search input {
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 16px;
    min-height: 48px;
    min-width: 0;
    outline: 0;
    padding: 0 16px;
    width: 100%;
}

.site-search input::placeholder {
    color: rgba(255, 255, 255, .58);
}

.site-search button {
    align-items: center;
    align-self: stretch;
    background: transparent;
    border: 0;
    color: #F2360C;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
}

.site-search button:focus-visible,
.site-search button:hover {
    background: rgba(242, 54, 12, .14);
}

.site-search svg {
    height: 22px;
    width: 22px;
}

.site-actions {
    flex: initial;
    gap: 12px;
    justify-content: flex-end;
}

header.site-header #carrito,
.btn-login.account-action,
.account-logout {
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: #ffffff;
    min-height: 48px;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

header.site-header #carrito:hover,
header.site-header #carrito:focus-visible,
.btn-login.account-action:hover,
.btn-login.account-action:focus-visible,
.account-logout:hover,
.account-logout:focus-visible {
    background: #21120f;
    border-color: #F2360C;
    color: #ffffff;
    outline: 0;
}

header.site-header #carrito {
    padding: 10px 14px;
}

.btn-login.account-action {
    align-items: center;
    display: inline-flex;
    gap: 9px;
    padding: 9px 13px;
    text-align: left;
}

.btn-login.account-action svg {
    flex: 0 0 21px;
    height: 21px;
    width: 21px;
}

.btn-login.account-action strong,
.btn-login.account-action small {
    display: block;
}

.btn-login.account-action strong {
    font-size: 14px;
    line-height: 1.15;
}

.btn-login.account-action small {
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    line-height: 1.2;
}

.account-logout {
    cursor: pointer;
    padding: 10px 13px;
}

.site-nav-strip {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

header.site-header .site-nav-strip .container {
    padding-bottom: 0;
    padding-top: 0;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: flex-start;
    min-height: 48px;
}

.site-nav a {
    align-items: center;
    color: rgba(255, 255, 255, .82);
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    min-height: 48px;
    position: relative;
    text-decoration: none;
}

.site-nav a::after {
    background: #F2360C;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    transform: scaleX(.5);
    transition: opacity .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: #F2360C;
    outline: 0;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-header .mobile-menu-toggle {
    background: #171717;
    border-color: rgba(255, 255, 255, .18);
    display: none;
}

.site-header .mobile-menu-toggle:hover,
.site-header .mobile-menu-toggle:focus-visible {
    border-color: #F2360C;
    outline: 0;
}

.footer {
    background: #0d0d0d;
    border-top: 4px solid #F2360C;
    color: #ffffff;
    padding: 0;
}

.footer-inner {
    display: grid;
    gap: 34px;
    grid-template-columns: 1.25fr .8fr .9fr 1.15fr;
    max-width: 1440px;
    padding-bottom: 38px;
    padding-top: 42px;
}

.footer section,
.footer nav {
    min-width: 0;
    text-align: left;
}

.footer-logo-link {
    display: inline-flex;
    margin-bottom: 14px;
}

.footer-logo {
    border: 2px solid #F2360C;
    border-radius: 50%;
    height: 64px;
    object-fit: cover;
    width: 64px;
}

.footer h3,
.footer h4 {
    color: #ffffff;
    margin-bottom: 12px;
}

.footer h3 {
    color: #F2360C;
    font-size: 20px;
}

.footer h4 {
    font-size: 15px;
    text-transform: uppercase;
}

.footer h4::after {
    background: #F2360C;
    border-radius: 999px;
    content: "";
    display: block;
    height: 3px;
    margin-top: 8px;
    width: 42px;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.55;
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer a {
    align-items: center;
    display: inline-flex;
    gap: 9px;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
    color: #F2360C;
    outline: 0;
}

.footer-brand p {
    max-width: 260px;
}

.footer-social-icons {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 16px;
}

.footer-social-icons span {
    color: rgba(255, 255, 255, .72);
    flex: 1 1 100%;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    width: 100%;
}

.footer-social-icons a {
    align-items: center;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    min-height: 36px;
    min-width: 36px;
    padding: 8px;
}

.footer-social-icons svg {
    height: 19px;
    width: 19px;
}

.footer-nav,
.footer-contacto {
    align-content: start;
    display: grid;
    gap: 9px;
}

.footer-nav a::before,
.footer-whatsapp-number::before {
    background: currentColor;
    content: "";
    display: inline-block;
    flex: 0 0 18px;
    height: 18px;
    -webkit-mask: var(--footer-link-icon) center / contain no-repeat;
    mask: var(--footer-link-icon) center / contain no-repeat;
    width: 18px;
}

.footer-nav[aria-label="Comprar"] a:nth-of-type(1) {
    --footer-link-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 11.2 12 3l9 8.2-1.4 1.5-1.1-1V21h-5.2v-5.8h-2.6V21H5.5v-9.3l-1.1 1L3 11.2Zm4.5-1.3V19h1.2v-5.8h6.6V19h1.2V9.9L12 5.8 7.5 9.9Z'/%3E%3C/svg%3E");
}

.footer-nav[aria-label="Comprar"] a:nth-of-type(2) {
    --footer-link-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h8.6L21 12.4 12.4 21 4 12.6V4Zm2 2v5.8l6.4 6.4 5.8-5.8L11.8 6H6Zm3.2 4.4a1.2 1.2 0 1 1 0-2.4 1.2 1.2 0 0 1 0 2.4Z'/%3E%3C/svg%3E");
}

.footer-nav[aria-label="Comprar"] a:nth-of-type(3) {
    --footer-link-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h7v7H4V4Zm9 0h7v7h-7V4ZM4 13h7v7H4v-7Zm9 0h7v7h-7v-7ZM6 6v3h3V6H6Zm9 0v3h3V6h-3ZM6 15v3h3v-3H6Zm9 0v3h3v-3h-3Z'/%3E%3C/svg%3E");
}

.footer-nav[aria-label="Comprar"] a:nth-of-type(4) {
    --footer-link-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5Zm0-2a3 3 0 1 1 0-6 3 3 0 0 1 0 6Zm0 4c-4.1 0-7.5 2.2-7.5 5v1h15v-1c0-2.8-3.4-5-7.5-5Zm-4.8 4c.8-1.2 2.8-2 4.8-2s4 .8 4.8 2H7.2Z'/%3E%3C/svg%3E");
}

.footer-nav[aria-label="Ayuda"] a:nth-of-type(1) {
    --footer-link-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a8 8 0 0 0-8 8v4a3 3 0 0 0 3 3h1v-7H6a6 6 0 0 1 12 0h-2v7h1.2A4.8 4.8 0 0 1 12.4 21H10v-2h2.4a2.8 2.8 0 0 0 2.7-2H14v-6h4a8 8 0 0 0-8-8Z'/%3E%3C/svg%3E");
}

.footer-nav[aria-label="Ayuda"] a:nth-of-type(2) {
    --footer-link-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4h3l1.3 4-2 1.2a11 11 0 0 0 5.5 5.5l1.2-2 4 1.3v3a3 3 0 0 1-3 3A13 13 0 0 1 4 7a3 3 0 0 1 3-3Zm1.5 2H7a1 1 0 0 0-1 1 11 11 0 0 0 11 11 1 1 0 0 0 1-1v-1.5l-1.1-.4-1.3 2.1-.8-.3a13 13 0 0 1-7.7-7.7l-.3-.8 2.1-1.3L8.5 6Z'/%3E%3C/svg%3E");
}

.footer-nav[aria-label="Ayuda"] a:nth-of-type(3) {
    --footer-link-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 20 5.5v5.9c0 5-3.4 8.8-8 10.6-4.6-1.8-8-5.6-8-10.6V5.5L12 2Zm0 3.1L6.5 7.5v3.9c0 3.6 2.2 6.3 5.5 7.8 3.3-1.5 5.5-4.2 5.5-7.8V7.5L12 5.1Z'/%3E%3C/svg%3E");
}

.footer-whatsapp-number {
    --footer-link-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.5a9 9 0 0 0-7.7 13.7L3 21l4.9-1.3A9 9 0 1 0 12 2.5Zm0 2a7 7 0 0 1 5.8 10.9A7 7 0 0 1 8.2 18l-.3-.2-2 .5.5-1.9-.2-.3A7 7 0 0 1 12 4.5Zm-3.1 3.7c-.2 0-.5.1-.7.4-.2.3-.8.8-.8 2s.9 2.3 1 2.5c.1.2 1.7 2.7 4.2 3.7 2.1.8 2.5.6 3 .6.4 0 1.4-.6 1.6-1.1.2-.5.2-1 .1-1.1l-1.9-.9c-.2-.1-.5-.1-.6.1l-.8 1c-.1.2-.3.2-.5.1-.3-.1-1.1-.4-2-1.2-.8-.7-1.3-1.6-1.5-1.9-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.9-2c-.2-.2-.3-.2-.5-.2Z'/%3E%3C/svg%3E");
}

.footer-contacto p,
.footer-contacto a {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

.footer-contacto svg {
    color: #F2360C;
    flex: 0 0 17px;
    height: 17px;
    margin-top: 2px;
    width: 17px;
}

.footer-contacto [data-public-whatsapp-link] {
    color: #F2360C;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
}

.footer-bottom .container {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding-bottom: 16px;
    padding-top: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-bottom span {
    color: #F2360C;
    font-weight: 700;
}

@media(max-width:1023px) {
    .zl-topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .zl-benefits {
        flex-wrap: wrap;
        width: 100%;
    }

    header.site-header .container {
        padding-left: 28px;
        padding-right: 28px;
    }

    header.site-header .site-header-main {
        gap: 16px;
        grid-template-columns: auto minmax(220px, 1fr) auto;
    }

    .btn-login.account-action small {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {
    .zl-topbar {
        font-size: 12px;
    }

    .zl-topbar-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .zl-benefits {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .zl-benefit {
        padding-right: 0;
    }

    .zl-benefit:not(:last-child)::after {
        display: none;
    }

    .zl-social {
        flex-wrap: wrap;
        justify-content: flex-start;
        white-space: normal;
    }

    header.site-header .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    header.site-header .site-header-main {
        display: grid;
        grid-template-columns: auto 1fr auto;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    header.site-header .site-header-main-compact {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .site-header .logo {
        height: 62px;
        width: 62px;
    }

    .site-search {
        grid-column: 1 / -1;
        grid-row: 2;
        order: initial;
        width: 100%;
    }

    .site-actions {
        grid-column: 2 / 4;
    }

    .site-actions #usuario-menu {
        display: none;
    }

    .site-header .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        gap: 0;
        min-height: 0;
        padding: 10px 0;
    }

    body.is-mobile-nav-open .site-nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-nav a {
        border-radius: 8px;
        min-height: 42px;
        padding: 0 12px;
    }

    .site-nav a::after {
        left: 12px;
        right: 12px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding-bottom: 30px;
        padding-top: 34px;
    }

    .footer-bottom .container {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media(max-width:430px) {
    .zl-topbar-inner,
    header.site-header .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .zl-benefits {
        grid-template-columns: 1fr;
    }

    header.site-header .site-header-main {
        grid-template-columns: auto auto;
    }

    .site-actions {
        grid-column: 1 / -1;
        justify-content: stretch;
        width: 100%;
    }

    header.site-header #carrito {
        flex: 1 1 auto;
        justify-content: center;
    }

    .site-header .mobile-menu-toggle {
        flex: 0 0 48px;
    }

    .site-search {
        grid-column: 1 / -1;
    }
}
