/* =========================================================
   MI LIBRERÍA - STYLE LIMPIO
   Reemplazar TODO el style.css actual por este archivo.
   ========================================================= */

/* BASE */
*{
    box-sizing:border-box;
}

body{
    min-height:100vh;
    margin:0;
    font-family:Arial, sans-serif;
    background:#ededed;
        
}

/* HERO */
.hero{
    display:none;
    padding:35px 20px;
    text-align:center;
    min-height:300px;
    background-image:
        linear-gradient(
            rgba(255,145,0,0.55),
            rgba(255,145,0,0.55)
        ),
        url("/static/img/biblioratos.jpg");
    background-size:cover;
    background-position:center 35%;
    background-repeat:no-repeat;
    position:relative;
    overflow:hidden;
}

.hero h1,
.hero p,
.hero .btn-carrito,
.hero .sello-cuyo{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:4.8rem;
    font-weight:900;
    font-style:italic;
    color:#111;
    margin:0 0 8px;
    letter-spacing:-2px;
}

.hero p{
    font-size:1.8rem;
    font-weight:700;
    color:#111;
    margin:20px 0 15px;
}

.hero .sello-cuyo{
    margin-top:45px;
    font-size:1.3rem;
    font-weight:600;
    font-style:italic;
    color:#fff;
    text-align:center;
    text-shadow:2px 2px 6px rgba(0,0,0,0.7);
    letter-spacing:0.5px;
    font-family:Georgia, "Times New Roman", serif;
}

/* BARRA SUPERIOR */
.barra-fija-cliente{
    background:#ff7a00;
    position:sticky !important;
    top:0;
    z-index:99999;
    padding:16px 18px 12px;
    text-align:center;
    min-height:76px;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

/* LOGO */
.logo-empresa{
    position:absolute !important;
    left:90px !important;
    top:16px !important;
    z-index:9999 !important;
    text-align:left !important;
    display:block !important;
    width:320px;
}

.logo-principal{
    font-family:'Montserrat', Arial, sans-serif;
    font-size:46px !important;
    font-weight:900 !important;
    color:#111 !important;
    line-height:0.90 !important;
    letter-spacing:-1.5px;
}

.logo-subtitulo{
    font-family:'Montserrat', Arial, sans-serif;
    font-size:25px !important;
    font-weight:600 !important;
    color:#111 !important;
    line-height:1.2 !important;
    letter-spacing:0.3px;
    margin-top:2px;
}

/* CARRITO SUPERIOR */
.carrito-europeo,
.barra-fija-cliente > a.carrito-europeo{
    position:absolute !important;
    right:70px !important;
    top:24px !important;
    left:auto !important;
    transform:none !important;
    z-index:99999 !important;
    background:#1450d2 !important;
    color:white !important;
    padding:4px 8px !important;
    border-radius:9px !important;
    text-decoration:none !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:4px !important;
    font-size:16px !important;
    font-weight:900 !important;
    width:60px !important;
    min-width:60px !important;
    max-width:60px !important;
    height:36px !important;
    font-family:Arial, sans-serif !important;
    overflow:hidden !important;
    flex-wrap:nowrap !important;
}

.carrito-numero{
    color:white !important;
    font-size:17px !important;
    font-weight:900 !important;
    font-family:Arial, sans-serif !important;

    width:18px !important;
    min-width:18px !important;
    display:flex !important;
    align-items:center !important;
    text-align:center !important;
    line-height:1 !important;
}

.carrito-dibujo{
    width:22px !important;
    min-width:22px !important;
    max-width:22px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:20px !important;
    line-height:1 !important;
    color:white !important;
}

/* MENÚ HAMBURGUESA */
.menu-info{
    position:absolute !important;
    right:150px !important;
    top:24px !important;
    z-index:99999 !important;
    width:42px !important;
    height:42px !important;
    border:none !important;
    border-radius:10px !important;
    background:#111 !important;
    color:white !important;
    font-size:24px !important;
    font-weight:900 !important;
    cursor:pointer !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.menu-info:hover{
    background:#333 !important;
}

.menu-desplegable{
    display:none;
    position:absolute;
    top:70px;
    right:80px;
    width:320px;
    background:white;
    border-radius:14px;
    box-shadow:0 8px 22px rgba(0,0,0,.20);
    overflow:hidden;
    z-index:99999;
    padding:10px;
    text-align:left;
}

.menu-desplegable.abierto{
    display:block !important;
}

.menu-desplegable a{
    display:block;
    padding:13px 16px;
    color:#222;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    border-bottom:1px solid #ececec;
}

.menu-desplegable a:last-child{
    border-bottom:none;
}

.menu-desplegable a:hover{
    background:#f7f7f7;
}

/* BUSCADOR */
.buscador-box{
    display:flex;
    justify-content:center;
    width:100%;
    margin:0 auto 10px;
}

.buscador-input{
    display:flex;
    align-items:center;
    gap:10px;
    background:white;
    border-radius:16px;
    padding:16px 20px;
    width:100%;
    max-width:800px;
    margin:0 auto;
    box-shadow:0 4px 14px rgba(0,0,0,0.10);
    border:1px solid #e0e6f0;
}

.buscador-input input{
    border:none;
    outline:none;
    width:100%;
    font-size:16px;
}

/* CATEGORÍAS */
.categorias-fija{
    width:100%;
    max-width:700px;
    margin:18px auto 24px;
    padding:0;
    background:transparent;
    display:flex;
    justify-content:stretch;
}

.categorias-scroll{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
    width:100%;
    max-width:700px;
    margin:0 auto;
    overflow:visible;
    flex-wrap:wrap;
}

.categorias-scroll::-webkit-scrollbar{
    display:none;
}

.categoria-btn{
    border:none;
    background:white;
    padding:6px 12px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    color:#0F5BD3;
    box-shadow:0 3px 10px rgba(0,0,0,0.10);
    white-space:nowrap;
    cursor:pointer;
    flex:0 0 auto;
    text-align:center;
}

.categoria-btn:hover,
.categoria-btn.active{
    background:#0F5BD3;
    color:white;
}

/* GRID PRODUCTOS */
.grid-productos{
    max-width:1400px;
    width:92%;
    margin:0 auto 100px;
    padding:170px 18px 80px;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:28px;
    justify-items:stretch;
}

/* TARJETAS PRODUCTOS */
.card-producto{
    background:rgba(255,255,255,0.92);
    border-radius:20px;
    padding:16px;
    box-shadow:0 6px 18px rgba(0,0,0,0.10);
    text-align:center;
    border:1px solid rgba(0,0,0,0.06);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:420px;
    width:100%;
}

.img-wrap{
    width:100%;
    height:190px;
    background:#f7f7f7;
    border-radius:16px;
    border:1px solid #e1e7f0;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin-bottom:16px;
}

.img-wrap img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    padding:10px;
}

.card-producto h3{
    font-size:18px;
    font-weight:800;
    color:#111;
    margin:0 0 15px;
    line-height:1.3;
}

.card-producto p{
    font-size:15px;
    color:#555;
    margin:3px 0;
    line-height:1.4;
}

.precio-label{
    font-size:15px;
    color:#999;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-top:auto;
    margin-bottom:8px;
    font-weight:700;
}

.precio{
    font-size:24px;
    margin-top:0;
    font-weight:900;
    margin-bottom:18px;
    color:#ff7a00;
}

/* BOTONES + - */
.acciones-carrito{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    margin-top:auto;
}

.acciones-carrito form{
    margin:0;
}

.acciones-carrito button{
    width:38px;
    height:38px;
    background:#0F5BD3;
    color:white;
    border-radius:50%;
    border:none;
    cursor:pointer;
    font-size:20px;
    font-weight:900;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}

.acciones-carrito span{
    font-weight:800;
    min-width:18px;
    color:#111;
}

/* NO DISPONIBLE / SIN RESULTADOS */
.producto-no-disponible{
    background:#f7b7a3;
    color:#7a1f12;
    padding:8px 12px;
    border-radius:12px;
    text-align:center;
    font-weight:600;
    margin:35px auto 10px;
    width:fit-content;
}

.sin-resultados{
    grid-column:1 / -1;
    text-align:center;
    background:#f7f9ff;
    border:1px solid #c9d8f2;
    border-radius:14px;
    padding:18px;
    color:#1a2b49;
    font-weight:700;
}

/* RESUMEN INDEX */
.resumen-carrito{
    position:fixed;
    left:15px;
    bottom:20px;
    width:260px;
    z-index:50;
}

.guia-carrito{
    text-align:center;
    font-size:14px;
    color:#1f4db8;
    margin:0 0 8px;
}

.guia-carrito span{
    display:block;
    font-size:12px;
    color:red;
    margin-top:4px;
}

.resumen-box{
    background:white;
    border:1px solid #dbe4f0;
    border-radius:18px;
    padding:16px;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
    min-height:200px;
}

.resumen-box h2{
    color:#1f4db8;
    font-size:16px;
    margin:0 0 12px;
}

.lista-carrito{
    list-style:none;
    padding:0;
    margin:0;
}

.lista-carrito li{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding:8px 0;
    border-bottom:1px solid #eef2f7;
    font-size:14px;
}

.total{
    margin-top:8px;
    text-align:center;
    font-size:36px !important;
    font-weight:900;
    color:#1450d2;
    line-height:1 !important;
}

.btn-finalizar{
    display:block;
    width:90%;
    margin:15px auto 0;
    padding:12px 16px;
    background:#ff7a00;
    color:white;
    text-align:center;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
}

/* CARRITO */
.titulo-carrito{
    text-align:center;
    font-size:38px;
    font-weight:700;
    color:#1450d2;
    margin:30px 0;
}

.carrito-container{
    max-width:1200px;
    margin:auto;
    width:95%;
}

.item-carrito{
    background:white;
    border-radius:12px;
    padding:8px 14px;
    margin-bottom:8px;
    display:grid;
    grid-template-columns:1fr 90px 120px 110px;
    align-items:center;
    gap:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    min-height:44px;
    border:1px solid #e3e3e3;
}

.info-carrito h2{
    font-size:16px;
    margin:0 0 3px;
    color:#1450d2;
    line-height:1.1;
}

.info-carrito p{
    font-size:16px;
    color:#666;
    line-height:1.1;
    margin:0;
    font-weight:500;
}

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

.btn-cantidad{
    width:34px;
    height:34px;
    border-radius:50%;
    border:none;
    background:#1450d2;
    color:white;
    font-size:20px;
    font-weight:700;
    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;
    line-height:1;
    padding:0;
}

.numero-cantidad{
    font-size:16px;
    min-width:22px;
    text-align:center;
}

.precio-item{
    font-size:20px;
    font-weight:bold;
    color:#1450d2;
    min-width:120px;
    text-align:right;
    white-space:nowrap;
}

.btn-eliminar{
    background:#ff7a00;
    color:white;
    border:none;
    border-radius:8px;
    padding:8px 14px;
    font-size:14px;
    font-weight:bold;
    width:110px;
    margin-top:0;
    cursor:pointer;
}

/* TOTAL CARRITO */
.total-box{
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:center !important;
    max-width:1100px !important;
    width:95% !important;
    margin:12px auto 25px !important;
}

.total-izquierda{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    font-size:18px;
    font-weight:700;
}

.titulo-total{
    font-size:22px;
    font-weight:700;
    color:#111;
    display:block;
}

.total-box .total{
    font-size:24px !important;
    font-weight:900;
    color:#1450d2;
}

.total-izquierda strong{
    font-size:24px;
    color:#1450d2;
    margin-left:10px;
}
.total-box .importe-total{
    font-size:26px !important;
    font-weight:800 !important;
    color:#1450d2 !important;
    margin-left:24px !important;
    line-height:1 !important;
}

.total-box .titulo-total{
    font-size:24px !important;
    font-weight:900 !important;
    color:#111 !important;
}
.volver-link,
.total-box .volver-link{
    display:inline-block !important;
    position:static !important;
    background:transparent !important;
    color:#ff7a00 !important;
    padding:0 !important;
    border-radius:0 !important;
    text-decoration:none !important;
    font-size:24px !important;
    font-weight:900 !important;
    margin:0 0 0 auto !important;
    white-space:nowrap !important;
    align-self:center !important;
}

.volver-link:hover{
    color:#e66900 !important;
}

/* CARRITO VACÍO */
.carrito-vacio{
    padding:35px 20px;
    text-align:center;
    min-height:700px;
    background-image:
        linear-gradient(
            rgba(255,224,189,0.38),
            rgba(255,224,189,0.38)
        ),
        url("/static/img/pedido-vacio.jpg");
    background-size:cover;
    background-position:center 35%;
    background-repeat:no-repeat;
    position:relative;
    overflow:hidden;
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.carrito-vacio h2{
    font-size:32px;
    margin-bottom:25px;
    color:#111;
}

.carrito-vacio .volver-link{
    font-size:28px !important;
    font-weight:800 !important;
    color:#333 !important;
    text-decoration:none;
    margin-top:20px !important;
}

.pedido-vacio-img{
    width:90%;
    max-width:550px;
    border-radius:20px;
    margin:20px auto;
    display:block;
}

/* DATOS CLIENTE */
.datos-cliente{
    max-width:700px !important;
    margin:30px auto !important;
    display:flex !important;
    flex-direction:column !important;
    gap:12px !important;
}

.datos-cliente h2{
    margin-bottom:15px !important;
    font-size:22px !important;
    color:#1450d2 !important;
}

.datos-cliente input,
.datos-cliente textarea{
    width:100% !important;
    padding:12px !important;
    border:1px solid #d8d8d8 !important;
    border-radius:8px !important;
    font-size:16px !important;
    display:block;
}

.datos-cliente textarea{
    min-height:100px !important;
}

/* AVISOS Y BOTONES */
.aviso-minimo-top{
    max-width:1100px;
    margin:0 auto 25px;
    text-align:center;
    font-size:18px;
    line-height:1.6;
    color:#333;
}

.aviso-minimo-top strong{
    font-size:24px;
    color:#1450d2;
    font-weight:900;
}

.btn-whatsapp-pedido{
    display:block;
    width:100%;
    max-width:700px;
    background:#4ecdc4;
    color:white;
    padding:16px 24px;
    border-radius:10px;
    text-decoration:none;
    text-align:center;
    font-weight:800;
    width:auto;
    font-size:20px;
    margin:20px auto 0;
    text-align:center;
    min-width:180px;
    border:none;
    cursor:pointer;
    transition:0.25s;
}

/* ADMIN */
.producto{
    border:1px solid #e2e2e2;
    border-radius:12px;
    padding:12px;
    background:white;
    box-shadow:0 2px 8px rgba(0,0,0,0.06);
    display:flex;
    flex-direction:column;
    min-height:320px;
}

.producto img{
    width:100%;
    height:160px;
    object-fit:contain;
    border-radius:14px;
    background:#f4f4f4;
    border:1px solid #d8d8d8;
    padding:10px;
}

.btn-editar{
    display:block;
    margin-top:auto;
    padding:8px;
    background:#2f6fae;
    color:white;
    text-align:center;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:99999;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:white;
    font-size:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 4px 12px rgba(0,0,0,0.25);
}

.whatsapp-float img{
    width:65px;
    height:65px;
    border-radius:50%;
    box-shadow:0 4px 12px rgba(0,0,0,0.25);
    transition:transform .2s;
}

.whatsapp-float:hover img{
    transform:scale(1.08);
}

/* FOOTER */
.footer-copyright,
.copyright{
    text-align:center;
    font-size:12px;
    color:#666;
    padding:20px 10px;
    margin-top:70px;
    display:block;
    width:100%;
}

/* MATERIAL ICONS */
.material-icons{
    font-family:'Material Icons' !important;
    font-weight:normal !important;
    font-style:normal !important;
    font-size:24px !important;
    line-height:1 !important;
    letter-spacing:normal !important;
    text-transform:none !important;
    display:inline-block !important;
    white-space:nowrap !important;
    word-wrap:normal !important;
    direction:ltr !important;
    -webkit-font-feature-settings:'liga';
    -webkit-font-smoothing:antialiased;
}

/* ESCRITORIO GRANDE */
@media (min-width:1200px){
    .grid-productos{
        grid-template-columns:repeat(5, minmax(0, 1fr)) !important;
        max-width:1400px !important;
        width:95% !important;
        gap:24px !important;
    }

    .card-producto{
        min-height:450px !important;
        padding:20px !important;
    }

    .img-wrap{
        height:210px !important;
    }
}

/* CELULAR */
/* CELULAR - BLOQUE ÚNICO Y LIMPIO */
@media (max-width:768px){

    .barra-fija-cliente{
        position:sticky !important;
        top:0 !important;
        z-index:99999 !important;
        display:grid !important;
        grid-template-columns:1fr auto auto !important;
        grid-template-areas:
            "logo menu carrito"
            "buscador buscador buscador"
            "categorias categorias categorias" !important;
        align-items:center !important;
        background:#ff7a00 !important;
        padding:10px 12px 8px !important;
        gap:6px !important;
        min-height:auto !important;
        box-shadow:0 2px 10px rgba(0,0,0,.12) !important;
    }

    .logo-empresa{
        grid-area:logo !important;
        position:static !important;
        width:auto !important;
        max-width:240px !important;
        padding:0 !important;
        margin:0 !important;
        text-align:left !important;
        display:flex !important;
        flex-direction:column !important;
        align-items:flex-start !important;
    }

    .logo-principal{
        font-family: 'Montserrat', sans-serif !important;
        font-size:32px !important;
        line-height:1 !important;
        font-weight:900 !important;
        letter-spacing:-1px !important;
        margin:0 !important;
    }

    .logo-subtitulo{
        grid-column:1 / -1 !important;
        font-size:13px !important;
        line-height:1.2 !important;
        margin-top:3px !important;
        text-align:center !important;
        max-width:100% !important;
        white-space:nowrap !important;
    }

    .menu-info{
        grid-area:menu !important;
        position:static !important;
        width:44px !important;
        height:44px !important;
        min-width:44px !important;
        border-radius:10px !important;
        background:#111 !important;
        font-size:24px !important;
        display:flex !important;
        align-items:center !important;
        align-self:start !important
        margin-top:2px !important
        justify-content:center !important;
    }

    .barra-fija-cliente > a.carrito-europeo,
    .carrito-europeo{
        grid-area:carrito !important;
        position:static !important;
        width:58px !important;
        min-width:58px !important;
        max-width:58px !important;
        height:44px !important;
        padding:0 !important;
        font-size:16px !important;
        border-radius:10px !important;
        background:#1450d2 !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        gap:4px !important;
        align-self:start !important
        margin-top:2px !important
    }

    .carrito-numero{
        font-size:18px !important;
        min-width:18px !important;
        width:18px !important;
        font-weight:900 !important;
    }

    .carrito-dibujo{
        font-size:22px !important;
        width:24px !important;
        min-width:24px !important;
    }

    .buscador-box{
        grid-area:buscador !important;
        display:flex !important;
        width:100% !important;
        margin:5px 0 0 !important;
        justify-content:center !important;
    }

    .buscador-input{
        width:100% !important;
        max-width:100% !important;
        height:40px !important;
        padding:8px 42px 8px 12px !important;
        font-size:14px !important;
        border-radius:12px !important;
    }

    .buscador-input input{
        font-size:14px !important;
    }

    .limpiar-busqueda{
        right:8px !important;
        width:30px !important;
        height:30px !important;
        border-radius:50% !important;
    }

    .categorias-fija{
    grid-area:categorias !important;
    width:94% !important;
    max-width:94% !important;
    margin:14px auto 0 !important;
    padding:0 !important;
    background:transparent !important;
    display:block !important;
    overflow:visible !important;
    white-space:normal !important;
}

.categorias-scroll{
  width:100% !important;
  max-width:100% !important;
  display:flex !important;
  flex-wrap:nowrap !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  justify-content:flex-start !important;
  gap:8px !important;
  margin:0 auto !important;
  padding:4px 2px 8px !important;
  -webkit-overflow-scrolling:touch !important;
  scrollbar-width:none !important;
  -ms-overflow-style:none !important;
}
.categorias-scroll::-webkit-scrollbar{
  display:none !important;
}

    .categoria-btn,
    .categorias-fija a,
    .categorias-fija button{
        flex:0 0 auto !important;
        font-size:12px !important;
        white-space:nowrap !important;
        max-width:none !important
    }

    .menu-desplegable{
        position:absolute !important;
        top:58px !important;
        right:10px !important;
        width:260px !important;
        max-width:calc(100vw - 20px) !important;
        z-index:100000 !important;
    }

    .hero{
        min-height:120px !important;
        padding:16px 12px 34px !important;
        background:#f57c00 !important;
        display:flex !important;
        flex-direction:column !important;
        justify-content:center !important;
        align-items:center !important;
        text-align:center !important;
    }

    .hero h1{
        font-size:30px !important;
        margin-bottom:6px !important;
    }

    .hero p{
        font-size:15px !important;
        margin-bottom:14px !important;
    }

    .grid-productos{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:16px !important;
        padding:18px 10px 80px !important;
        width:96% !important;
    }

    .card-producto{
        min-height:360px !important;
        padding:14px 10px !important;
    }

    .img-wrap{
        height:145px !important;
    }

    .card-producto h3{
        font-size:15px !important;
    }

    .card-producto p{
        font-size:13px !important;
    }

    .precio{
        font-size:20px !important;
    }

    .resumen-carrito{
        display:none !important;
    }

    .titulo-carrito{
        font-size:30px !important;
    }

    .item-carrito{
        grid-template-columns:1fr !important;
        text-align:center !important;
        gap:8px !important;
        padding:12px !important;
    }

    .precio-item{
        text-align:center !important;
        min-width:0 !important;
    }

    .btn-eliminar{
        margin:0 auto !important;
    }

    .total-box{
        flex-direction:column !important;
        gap:14px !important;
        text-align:center !important;
    }

    .total-izquierda{
        justify-content:center !important;
        flex-wrap:wrap !important;
    }

    .total-box .volver-link{
        margin:0 auto !important;
    }

    .whatsapp-float{
        right:16px !important;
        bottom:16px !important;
        width:56px !important;
        height:56px !important;
    }
}
/* ===========================
   PÁGINAS INFORMATIVAS
=========================== */

.pagina-informacion{
    max-width:950px;
    margin:50px auto;
    padding:45px 55px;

    background:#fff;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

    font-family:Calibri, Arial, sans-serif;
    color:#222;
    line-height:1.7;
}

.pagina-informacion h1{
    font-size:38px;
    font-weight:700;
    margin-bottom:30px;
    color:#111;
}

.pagina-informacion h2{
    font-size:25px;
    font-weight:700;
    color:#1450d2;
    margin-top:35px;
    margin-bottom:12px;
}

.pagina-informacion p,
.pagina-informacion li{
    font-size:19px;
}

.pagina-informacion hr{
    border:none;
    border-top:1px solid #e5e5e5;
    margin:28px 0;
}

.pagina-informacion strong{
    color:#111;
}

.pagina-informacion ul{
    padding-left:22px;
}

.pagina-informacion .volver{
    display:inline-block;
    margin-top:35px;
    padding:12px 28px;

    background:#1450d2;
    color:white;
    text-decoration:none;

    border-radius:10px;
    font-size:18px;
    font-weight:700;
}

.pagina-informacion .volver:hover{
    background:#0f43b3;
}
/* TABLET */
@media (max-width:1024px){

    .pagina-informacion{
        max-width:92%;
        padding:35px;
        margin:35px auto;
    }

    .pagina-informacion h1{
        font-size:32px;
    }

    .pagina-informacion h2{
        font-size:22px;
    }

    .pagina-informacion p,
    .pagina-informacion li{
        font-size:18px;
    }
}


/* CELULAR */
@media (max-width:768px){

    .pagina-informacion{
        max-width:1050px;
        padding:22px 18px;
        margin:20px auto;
        border-radius:12px;
    }

    .pagina-informacion h1{
        font-size:28px;
        text-align:center;
    }

    .pagina-informacion h2{
        font-size:20px;
    }

    .pagina-informacion p,
    .pagina-informacion li{
        font-size:16px;
        line-height:1.6;
    }

    .pagina-informacion .volver{
        width:100%;
        text-align:center;
        padding:14px 0;
        font-size:17px;
    }
}
.whatsapp-float{
    position:fixed;
    right:28px;
    bottom:28px;
    width:64px;
    height:64px;
    z-index:99999;
    transition:.25s;
}

.whatsapp-float img{
    width:100%;
    height:100%;
    display:block;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}
.buscador-input{
    position:relative;
}

.limpiar-busqueda{
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:900;
    color:#666;
    text-decoration:none;
    transition:.2s;
}

.limpiar-busqueda:hover{
    color:#1450d2;
    background:#d8d8d8;
}
/* FORZADO FINAL CELULAR */
@media screen and (max-width:768px){

    .barra-fija-cliente{
        background:#ff7a00 !important;
        padding:14px 12px 12px !important;
        display:grid !important;
        grid-template-columns:1fr auto auto !important;
        grid-template-areas:
            "logo menu carrito"
            "buscador buscador buscador"
            "categorias categorias categorias" !important;
        gap:12px !important;
    }

    .logo-principal{
        font-size:32px !important;
    }

    .logo-subtitulo{
        font-size:15px !important;
    }

    .menu-info{
        width:44px !important;
        height:44px !important;
        min-width:44px !important;
        background:#111 !important;
        font-size:24px !important;
    }

    .carrito-europeo{
        width:58px !important;
        min-width:58px !important;
        max-width:58px !important;
        height:44px !important;
        background:#1450d2 !important;
    }

    .buscador-box{
        grid-area:buscador !important;
    }

    .categorias-fija{
        grid-area:categorias !important;
    }
}
/* AJUSTE FINAL ENCABEZADO SOLO CELULAR */
@media screen and (max-width:768px){

    .encabezado-superior{
        display:grid !important;
        grid-template-columns:1fr auto auto !important;
        grid-template-areas:"logo menu carrito" !important;
        align-items:center !important;
        gap:8px !important;
        width:100% !important;
        padding:0 !important;
        margin:0 !important;
    }

    .encabezado-superior .logo-empresa{
        grid-area:logo !important;
        position:static !important;
        width:auto !important;
        max-width:180px !important;
        padding:0 !important;
        margin:0 !important;
    }

    .encabezado-superior .logo-principal{
        font-size:30px !important;
        line-height:0.95 !important;
        margin:0 !important;
    }

    .encabezado-superior .logo-subtitulo{
        font-size:13px !important;
        line-height:1.2 !important;
        max-width:180px !important;
        margin-top:3px !important;
        max-with:170px !important;
        text-align:center !important;
    }

    .encabezado-superior .menu-info{
        grid-area:menu !important;
        position:static !important;
        width:44px !important;
        height:44px !important;
        min-width:44px !important;
        background:#111 !important;
        border-radius:10px !important;
        margin:0 !important;
    }

    .encabezado-superior .carrito-europeo{
        grid-area:carrito !important;
        position:static !important;
        width:58px !important;
        min-width:58px !important;
        max-width:58px !important;
        height:44px !important;
        margin:0 !important;
        background:#1450d2 !important;
    }

    .buscador-box{
        width:100% !important;
        margin:10px 0 8px !important;
        padding:0 !important;
    }

    .buscador-input{
        width:100% !important;
        max-width:100% !important;
    }

    .categorias-fija{
        margin-top:8px !important;
    }
}
/* ANULAR ESTILOS INLINE SOLO EN CELULAR */
@media screen and (max-width:768px){

    .encabezado-superior .menu-info{
        position:static !important;
        right:auto !important;
        top:auto !important;
        grid-area:menu !important;
        margin:0 !important;
    }

    .encabezado-superior .carrito-europeo,
    .encabezado-superior a.carrito-europeo{
        position:static !important;
        right:auto !important;
        top:auto !important;
        grid-area:carrito !important;
        margin:0 !important;
    }
}
/* AJUSTE SIMPLE CELULAR: BUSCADOR ARRIBA / BOTONES ABAJO */
@media screen and (max-width:768px){

    .encabezado-superior{
        display:grid !important;
        grid-template-columns:auto 1fr auto auto !important;
        grid-template-areas:
            "logo buscador menu carrito"
            "buscador buscador buacador buscador" !important;
        align-items:center !important;
        gap:8px !important;
        width:100% !important;
    }

    .encabezado-superior .logo-empresa{
        grid-area:logo !important;
        position:static !important;
        max-width:170px !important;
        margin:0 auto !important;
        padding:0 !important;
        text-align:center !important;
    }

    .encabezado-superior .buscador-box{
        grid-area:buscador !important;
        margin:8px 0 0 !important;
        width:100% !important;
    }

    .encabezado-superior .buscador-input{
        height:42px !important;
        width:100% !important;
        max-width:100% !important;
        padding:8px 38px 8px 12px !important;
    }

    .encabezado-superior .menu-info{
        grid-area:menu !important;
        justify-self:end !important;
        position:static !important;
        margin:0 !important;
        align-self:start !important;
    }

    .encabezado-superior .carrito-europeo{
        grid-area:carrito !important;
        justify-self:end !important;
        position:static !important;
        left:38px !important;
        align-self:start !important;
        margin:0 !important;
    }
}
.medios-pago{
    margin-top:10px;
}

.medios-pago > label{
    font-size:20px;
    font-weight:800;
    color:#1450d2;
    margin-bottom:16px;
    display:block;
}

.opciones-pago{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.opciones-pago label{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:10px !important;

    background:#ffffff;
    border:1px solid #d9d9d9;
    border-radius:10px;

    padding:12px 14px;
    min-height:54px;

    color:#777777;
    font-size:15px;
    font-weight:600;

    cursor:pointer;
    transition:.2s;
}

.opciones-pago label:hover{
    border-color:#f28c28;
    background:#fff8f1;
}

.opciones-pago input[type="radio"]{
    accent-color:#f28c28;
    transform:scale(1.25);
    margin:0 !important;
    flex-shrink:0;
}
.opciones-pago label input[type="radio"]{
    width:16px !important;
    height:16px !important;
    min-width:16px !important;
    flex:0 0 16px !important;
    margin:0 !important;
    padding:0 !important;
    box-shadow:none !important;
}
.opciones-pago label{
   overflow:hidden;
   white-space:normal;
}
.opciones-pago input[type="radio"] {
    width: auto !important;
    flex: 0 0 auto;
    margin: 0;
}
