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

body{
    font-family:"Poppins", sans-serif;
    background:#111;
    color:white;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 60px;

    background: rgba(15,15,15,.92);
    backdrop-filter: blur(15px);

    z-index: 1000;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo{
    font-size:38px;
    font-weight:700;
    letter-spacing:2px;
    color:white;
}

nav ul{
    display:flex;
    align-items:center;
    gap:35px;

    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    color:white;
    text-decoration:none;

    font-weight:500;

    transition:.3s;

    position:relative;
}

nav ul li a:hover{
    color:#00c2ff;
}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#00c2ff;

    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}

#carrito{
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

#carrito:hover{

    color:#00c2ff;

    transform:scale(1.1);

}

.contenedor{
    min-height: 70vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 80px 20px 40px;
}

.contenedor h1{

    font-size: 72px;
    font-weight: 700;

    margin-bottom: 20px;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.contenedor p{

    font-size: 22px;

    color: #cfcfcf;

    margin-bottom: 35px;

}

#comprarAhora{

    padding:16px 45px;

    background:#00c2ff;

    color:white;

    border:none;

    border-radius:12px;

    font-size:18px;

    font-weight:600;

    letter-spacing:1px;

    cursor:pointer;

    transition:all .3s ease;

    box-shadow:0 10px 30px rgba(0,194,255,.35);

    transition:.3s;

}

#comprarAhora:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,194,255,.35);

}

#comprarAhora:active{

    transform:scale(.98);

}

.flecha{
    margin-top:40px;
    font-size:45px;
    animation:subirbajar 1.5s infinite;
}

@keyframes subirbajar{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(12px);
    }

    100%{
        transform:translateY(0);
    }
}

.productos{
    padding:120px 60px;
    text-align:center;
}

.productos h2{
    font-size:40px;
    margin-bottom:50px;
}

.tarjetas{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.producto{
    background:#1a1a1a;
    border-radius:18px;
    overflow:hidden;

    transition:.35s;

    cursor:pointer;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.producto:hover{
    transform:translateY(-10px);

    border-color:#00c2ff;

    box-shadow:0 20px 40px rgba(0,194,255,.25);
}

.producto img{
    width:100%;
    height:340px;

    object-fit:cover;

    transition:.4s;
}

.producto:hover img{
    transform:scale(1.05);
}

.producto h3{
    font-size:22px;

    color:white;

    margin:18px 20px 8px;
}

.producto p{
    color:#00c2ff;

    font-size:24px;

    font-weight:bold;

    margin:0 20px 20px;
}

#panel-carrito{
    position:fixed;
    top:0;
    right:-400px;
    width:350px;
    height:100vh;
    background:#1b263b;
    padding:20px;
    transition:.4s;
    overflow-y:auto;
    z-index:2000;
}

#panel-carrito h2{
    margin-bottom:20px;
}

#lista-carrito p{
    margin:15px 0;
    border-bottom:1px solid #444;
    padding-bottom:10px;
}

#total-carrito{
    margin:20px 0;
}

#panel-carrito.abierto{
    right:0;
}

#cerrar-carrito,
#vaciar-carrito{
    width:100%;
    padding:12px;
    margin-top:10px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

#cerrar-carrito{
    background:#00c2ff;
    color:white;
}

#vaciar-carrito{
    background:#e63946;
    color:white;
}

.comprar{
    width:calc(100% - 40px);

    margin:0 20px 20px;

    padding:14px;

    border:none;

    border-radius:12px;

    background:#00c2ff;

    color:white;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.comprar:hover{
    background:#00a8de;

    transform:scale(1.03);
}

.comprar:hover{
    background:#0099cc;
    transform:scale(1.03);
}

.producto h3{
    font-size:22px;
    margin-top:15px;
    margin-bottom:10px;
}

.producto p{
    font-size:20px;
    font-weight:bold;
    color:#00c2ff;
    margin-bottom:20px;
}

.producto button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    background:#00c2ff;
    color:white;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.producto button:hover{
    background:#0099cc;
    transform:translateY(-2px);
}

.producto{
    cursor:pointer;
}

.producto:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:0 20px 40px rgba(0,194,255,.25);
}

.producto img{
    transition:.4s;
}

.producto:hover img{
    transform:scale(1.05);
}

.detalle-producto{
    max-width:1200px;
    margin:150px auto 50px;
    padding:0 40px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;

    flex-wrap:wrap;
}

.imagen-producto{
    flex:1;
    min-width:350px;
}

.imagen-producto img{
    width:100%;
    border-radius:20px;
}

.info-producto{
    flex:1;
    min-width:350px;
}

.info-producto h1{
    font-size:42px;
    margin-bottom:20px;
}

.info-producto h2{
    color:#00c2ff;
    font-size:34px;
    margin-bottom:25px;
}

.info-producto p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.info-producto button{
    padding:15px 40px;
    background:#00c2ff;
    color:white;
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.info-producto button:hover{
    background:#0099cc;
    transform:translateY(-3px);
}

.tallas{
    margin-bottom:30px;
}

.tallas h3{
    margin-bottom:15px;
    font-size:20px;
}

.tallas button{
    width:55px;
    height:55px;
    margin-right:10px;
    border:2px solid #00c2ff;
    background:transparent;
    color:white;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:bold;
    transition:.3s;
}

.tallas button:hover{
    background:#00c2ff;
    color:white;
}

.tallas button.activa{
    background:#00c2ff;
    color:white;
    border-color:#00c2ff;
}

.miniaturas{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.miniatura{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.miniatura:hover{
    border-color: #007bff;
    transform: scale(1.05);
}

.miniatura.activa{
    border: 2px solid #007bff;
}

.colores{
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.color{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.color:hover{
    transform: scale(1.1);
}

.negro{
    background: #000;
}

.blanco{
    background: #fff;
    border: 2px solid #ccc;
}

.gris{
    background: #777;
}

.color.activo{
    border: 3px solid #00c2ff;
    box-shadow: 0 0 0 3px rgba(0,194,255,.25);
    transform: scale(1.1);
}

#lista-carrito li{

    list-style: none;
    background: #1f2937;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    color: white;

}

#lista-carrito button{

    width: 30px;
    height: 30px;
    border: none;
    border-radius: 6px;
    background: #00cfff;
    color: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;

}

#lista-carrito span{

    display: inline-block;
    width: 35px;
    text-align: center;
    font-weight: bold;

}

.item-carrito{

    display: flex;
    align-items: center;
    gap: 15px;

}

.imagen-carrito{

    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;

}

.info-carrito{

    flex: 1;

}

.controles-carrito{

    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;

}

.controles-carrito button{

    width: 30px;
    height: 30px;
    border: none;
    border-radius: 6px;
    background: #00cfff;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;

}

.cabecera-producto{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.favorito{
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: .3s;
}

.favorito:hover{
    color: red;
}

.colores{

    display: flex;
    gap: 15px;
    margin: 20px 0;

}

.color{

    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid white;
    cursor: pointer;

}

.negro{

    background: black;

}

.blanco{

    background: white;

}

.gris{

    background: gray;

}

.valoracion{

    color: gold;
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;

}

.valoracion span{

    color: white;
    font-size: 16px;
    margin-left: 10px;

}

.informacion-compra{

    margin-top: 25px;
    padding: 20px;
    background: #1f2937;
    border-radius: 10px;

}

.informacion-compra p{

    margin: 10px 0;
    font-size: 15px;

}

.cantidad-producto{
    display:flex;
    align-items:center;
    gap:15px;
    margin:20px 0;
}

.cantidad-producto button{
    width:40px;
    height:40px;
    font-size:22px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.cantidad-producto span{
    font-size:20px;
    font-weight:bold;
}

.productos-relacionados{
    margin-top:60px;
}

.productos-relacionados h2{
    margin-bottom:20px;
}

.grid-relacionados{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card-relacionado{
    background:#1f2937;
    border-radius:12px;
    padding:15px;
    text-align:center;
    transition:0.3s;
}

.card-relacionado:hover{
    transform:translateY(-5px);
}

.card-relacionado img{
    width:100%;
    border-radius:10px;
}

.card-relacionado h3{
    margin:15px 0 10px;
}

.card-relacionado p{
    font-weight:bold;
}

.imagen-principal {

    overflow: hidden;
    border-radius: 15px;

}

.imagen-principal img {

    width: 100%;
    transition: transform .35s ease;
    cursor: zoom-in;

}

.imagen-principal img:hover {

    transform: scale(1.15);

}

.acciones-producto{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:20px;
}

#favorito{
    width:55px;
    height:55px;
    border:none;
    border-radius:12px;
    font-size:24px;
    cursor:pointer;
    transition:.3s;
}

#favorito.activo{
    background:#ff4d6d;
    color:white;
}

.checkout{

    max-width:700px;

    margin:60px auto;

    padding:30px;

    background:#1f2937;

    border-radius:15px;

}

.checkout h1{

    text-align:center;

    margin-bottom:30px;

}

.checkout form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.checkout input{

    padding:15px;

    border:none;

    border-radius:10px;

    font-size:16px;

}

.checkout button{

    padding:16px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-size:18px;

}

#finalizar-compra{

    width:100%;

    margin-top:15px;

    padding:15px;

    border:none;

    border-radius:10px;

    background:#16a34a;

    color:white;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

#finalizar-compra:hover{

    background:#15803d;

}

.buscador-filtros{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;

    max-width: 1200px;
    margin: 100px auto 30px;
    padding: 0 20px;
}

.buscador{
    width: 500px;
    flex: none;
}

#buscarProducto{
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #444;
    border-radius: 10px;
    background: #1b1b1b;
    color: white;
    font-size: 16px;
    outline: none;
}

#buscarProducto::placeholder{
    color: #999;
}

.ordenar{
    display: flex;
    gap: 10px;
}

.ordenar select{
    padding: 12px;
    border-radius: 10px;
    background: #1b1b1b;
    color: white;
    border: 2px solid #444;
}

.producto{
    position: relative;
    overflow: hidden;
}

.producto::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    transition:.6s;
}

.producto:hover::before{
    left:150%;
}

.etiqueta{
    position:absolute;
    top:15px;
    left:15px;
    background:#00c2ff;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;
    z-index:10;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}

.oferta{
    background:#e63946;
}

.precio{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
    margin:15px 0;
}

.precio-anterior{
    color:#888;
    text-decoration:line-through;
    font-size:15px;
}

.precio-actual{
    color:#00c2ff;
    font-size:24px;
    font-weight:700;
}

.subtitulo{
    color:#00c2ff;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.descripcion-coleccion{
    max-width:650px;
    margin:20px auto 50px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.7;
}

.productos h2{
    font-size:48px;
    margin-top:15px;
    margin-bottom:20px;
}

.destacados{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:25px;

    max-width:1400px;

    margin:80px auto;

    padding:0 30px;

}

.destacado{

    background:#1b263b;

    border-radius:20px;

    padding:40px;

    min-height:250px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    transition:.35s;

    cursor:pointer;

}

.destacado:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,194,255,.2);

}

.destacado.grande{

    min-height:350px;

}

.destacado h2{

    font-size:42px;

    margin-bottom:15px;

}

.destacado h3{

    font-size:30px;

}

.destacado p{

    color:#cfcfcf;

    margin-bottom:20px;

}

.destacado button{

    width:200px;

    padding:14px;

    border:none;

    border-radius:12px;

    background:#00c2ff;

    color:white;

    cursor:pointer;

    font-weight:bold;

}

.animacion{

    opacity:0;

    transform:translateY(40px);

    animation:aparecer .8s ease forwards;

}

.animacion:nth-child(1){
    animation-delay:.2s;
}

.animacion:nth-child(2){
    animation-delay:.4s;
}

.animacion:nth-child(3){
    animation-delay:.6s;
}

@keyframes aparecer{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

footer{

    margin-top:100px;

    background:#0b0b0b;

    padding:60px 30px;

    text-align:center;

    border-top:1px solid #222;

}

.footer-logo{

    font-size:34px;

    font-weight:700;

    color:#00c2ff;

    margin-bottom:25px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.footer-links a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#00c2ff;

}

footer p{

    color:#888;

    font-size:14px;

}

.caracteristicas{

    margin-top:35px;

    padding:25px;

    background:#1f2937;

    border-radius:15px;

}

.caracteristicas h3{

    margin-bottom:15px;

    font-size:22px;

}

.caracteristicas ul{

    list-style:none;

    padding:0;

}

.caracteristicas li{

    margin:12px 0;

    color:#d5d5d5;

    font-size:16px;

}

.stock{
    margin:20px 0;
    color:#00c2ff;
    font-size:16px;
    font-weight:bold;
}

.guia-tallas{
    margin-top:10px;
    margin-bottom:25px;
}

.guia-tallas a{
    color:#00c2ff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.guia-tallas a:hover{
    text-decoration:underline;
}

.logo img{
    height:110px;
    width:auto;
    display:block;
}

@keyframes aparecer{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.producto{

    animation:aparecer .6s ease forwards;

}

.logo img{

    transition:.3s;

}

.logo img:hover{

    transform:scale(1.05);

}

/* =========================
   VENTANA DE PAGO
========================= */

.ventana-pago {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.80);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 9999;

    padding: 20px;
}

.ventana-pago.mostrar {
    display: flex;
}


/* CONTENIDO */

.pago-contenido {

    position: relative;

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

    background: #111;

    border: 2px solid #19d9ff;

    border-radius: 20px;

    padding: 30px;

    box-shadow:
        0 0 25px rgba(25, 217, 255, 0.35);

    text-align: center;

    box-sizing: border-box;
}


/* TÍTULO */

.pago-contenido h2 {

    color: white;

    margin-top: 0;
    margin-bottom: 10px;

    font-size: 28px;
}


/* TEXTO */

.pago-contenido p {

    color: #ccc;

    margin-bottom: 20px;

}


/* CERRAR */

.cerrar-pago {

    position: absolute;

    top: 12px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: none;

    border-radius: 50%;

    background: #222;

    color: white;

    font-size: 18px;

    cursor: pointer;

    transition: 0.2s;
}

.cerrar-pago:hover {

    background: #ff4444;

    transform: scale(1.1);
}


/* INPUTS */

.pago-contenido input {

    width: 100%;

    box-sizing: border-box;

    padding: 14px;

    margin-bottom: 12px;

    border-radius: 10px;

    border: 1px solid #555;

    background: #222;

    color: white;

    font-size: 16px;

    outline: none;
}


.pago-contenido input:focus {

    border-color: #19d9ff;

    box-shadow:
        0 0 8px rgba(25, 217, 255, 0.3);
}


/* FILA FECHA + CVV */

.fila-tarjeta {

    display: flex;

    gap: 10px;
}

.fila-tarjeta input {

    flex: 1;
}


/* BOTÓN */

.pago-contenido button:not(.cerrar-pago) {

    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 10px;

    background: #19d9ff;

    color: #000;

    font-size: 17px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}


.pago-contenido button:not(.cerrar-pago):hover {

    transform: translateY(-2px);

    box-shadow:
        0 0 15px rgba(25, 217, 255, 0.6);
}


/* MENSAJE DE ERROR */

.mensaje-pago {

    color: #ff5555 !important;

    min-height: 20px;

    margin-top: 15px;
}


/* PAYPAL */

#pagoPaypal {

    width: 100%;
}


/* =========================
   MÓVIL
========================= */

@media (max-width: 500px) {

    .pago-contenido {

        padding: 25px 18px;

        border-radius: 15px;
    }

    .pago-contenido h2 {

        font-size: 24px;
    }

    .fila-tarjeta {

        flex-direction: column;

        gap: 0;
    }

}

/* =========================
   SEGUIMIENTO
========================= */

.seguimiento {
    position: relative;
    z-index: 1;
    padding: 140px 30px 60px;
    min-height: 100vh;
    box-sizing: border-box;
}

.seguimiento h1 {
    display: block;
    margin: 0 0 20px;
    font-size: 40px;
}

.seguimiento p {
    display: block;
}

.buscador-seguimiento {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.buscador-seguimiento input {
    padding: 14px;
    min-width: 300px;
    font-size: 16px;
}

.buscador-seguimiento button {
    padding: 14px 20px;
    cursor: pointer;
    font-size: 16px;
}

.resultado-pedido {
    margin-top: 40px;
}

/* =========================
   PROGRESO DEL PEDIDO
========================= */

.progreso-pedido {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 35px 0;
    width: 100%;
}

.paso {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
    min-width: 80px;
    text-align: center;
}

.paso.activo {
    opacity: 1;
}

.circulo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    font-size: 22px;
}

.paso.activo .circulo {
    background: #fff;
    color: #111;
}

.linea {
    width: 70px;
    height: 4px;
    background: #333;
}

.linea.activa {
    background: #fff;
}

.paso span {
    font-size: 13px;
}

/* =========================================================
   HSTAR ADMIN
========================================================= */

.admin {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 30px 80px;
    box-sizing: border-box;
}

/* TÍTULO */

.admin > h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: white;
}

.admin > p {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 40px;
}


/* =========================================================
   NAVEGACIÓN ADMIN
========================================================= */

.admin nav,
nav {
    box-sizing: border-box;
}


/* =========================================================
   ESTADÍSTICAS
========================================================= */

.admin-estadisticas {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.admin-card {
    background: linear-gradient(
        145deg,
        #151515,
        #0d0d0d
    );

    border: 1px solid #252525;

    border-radius: 20px;

    padding: 30px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    transition: .3s;
}

.admin-card:hover {
    transform: translateY(-5px);

    border-color: #00c2ff;

    box-shadow:
        0 15px 35px rgba(0,194,255,.15);
}

.admin-card h2 {
    margin: 0 0 15px;

    font-size: 22px;

    color: #ccc;
}

.admin-card strong {
    display: block;

    font-size: 38px;

    color: #00c2ff;
}


/* =========================================================
   PEDIDOS
========================================================= */

.admin-pedidos {
    width: 100%;
}

.admin-pedidos > h2 {
    font-size: 32px;

    margin-bottom: 25px;
}


/* =========================================================
   BUSCADOR
========================================================= */

.buscador-pedidos {
    margin-bottom: 30px;
}

.buscador-pedidos input {
    width: 100%;
    max-width: 600px;

    box-sizing: border-box;

    padding: 15px 18px;

    border-radius: 12px;

    border: 1px solid #333;

    background: #151515;

    color: white;

    font-size: 16px;

    outline: none;

    transition: .3s;
}

.buscador-pedidos input:focus {
    border-color: #00c2ff;

    box-shadow:
        0 0 12px rgba(0,194,255,.20);
}

.buscador-pedidos input::placeholder {
    color: #777;
}


/* =========================================================
   TARJETA DE PEDIDO
========================================================= */

.pedido-admin {
    background: #111;

    border: 1px solid #292929;

    border-radius: 20px;

    padding: 30px;

    margin-bottom: 30px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    transition: .3s;
}

.pedido-admin:hover {
    border-color: #00c2ff;

    box-shadow:
        0 15px 40px rgba(0,194,255,.10);
}


/* NÚMERO PEDIDO */

.pedido-admin h2 {
    color: white;

    font-size: 25px;

    margin-top: 0;

    margin-bottom: 20px;
}


/* INFORMACIÓN */

.pedido-admin p {
    color: #ccc;

    margin: 9px 0;

    line-height: 1.5;
}

.pedido-admin strong {
    color: white;
}


/* =========================================================
   ESTADO
========================================================= */

.estado-pedido {
    padding: 9px 12px;

    margin-left: 8px;

    border-radius: 8px;

    border: 1px solid #444;

    background: #181818;

    color: white;

    cursor: pointer;

    font-size: 14px;
}

.estado-pedido:focus {
    outline: none;

    border-color: #00c2ff;
}


/* =========================================================
   SEGUIMIENTO
========================================================= */

.seguimiento-admin {
    margin-top: 25px;

    padding: 20px;

    background: #181818;

    border-radius: 15px;

    border: 1px solid #292929;
}

.seguimiento-admin p {
    margin-top: 5px;
}

.transportista-pedido,
.numero-seguimiento-pedido {
    width: 100%;

    max-width: 400px;

    box-sizing: border-box;

    padding: 12px;

    margin-bottom: 12px;

    border-radius: 9px;

    border: 1px solid #444;

    background: #0e0e0e;

    color: white;

    font-size: 15px;

    outline: none;
}

.transportista-pedido:focus,
.numero-seguimiento-pedido:focus {
    border-color: #00c2ff;

    box-shadow:
        0 0 8px rgba(0,194,255,.20);
}


/* BOTÓN GUARDAR */

.guardar-seguimiento {
    display: block;

    margin-top: 5px;

    padding: 12px 18px;

    border: none;

    border-radius: 10px;

    background: #00c2ff;

    color: #000;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;
}

.guardar-seguimiento:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 15px rgba(0,194,255,.40);
}


/* =========================================================
   PRODUCTOS DEL PEDIDO
========================================================= */

.pedido-admin h3 {
    margin-top: 30px;

    margin-bottom: 15px;

    font-size: 22px;

    color: white;
}

.producto-admin {
    background: #181818;

    border-left: 3px solid #00c2ff;

    padding: 18px;

    margin-bottom: 12px;

    border-radius: 10px;
}

.producto-admin strong {
    font-size: 18px;

    color: white;
}

.producto-admin p {
    margin: 5px 0;

    color: #aaa;

    font-size: 14px;
}


/* =========================================================
   TOTAL DEL PEDIDO
========================================================= */

.pedido-admin > h2:last-of-type {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #292929;

    color: #00c2ff;

    font-size: 28px;
}


/* =========================================================
   BOTÓN ELIMINAR
========================================================= */

.acciones-pedido {
    margin-top: 25px;
}

.eliminar-pedido {
    padding: 11px 18px;

    border: none;

    border-radius: 10px;

    background: #e63946;

    color: white;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;
}

.eliminar-pedido:hover {
    background: #ff4d5a;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(230,57,70,.25);
}


/* =========================================================
   MENSAJE SIN PEDIDOS
========================================================= */

#listaPedidos > p {
    padding: 30px;

    background: #111;

    border-radius: 15px;

    border: 1px solid #292929;

    color: #888;

    text-align: center;
}


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

.login-admin {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    box-sizing: border-box;
}

.login-box {
    width: 100%;

    max-width: 450px;

    background: #111;

    border: 1px solid #292929;

    border-radius: 20px;

    padding: 40px;

    box-sizing: border-box;

    box-shadow:
        0 20px 50px rgba(0,0,0,.4);

    text-align: center;
}

.login-box h1 {
    color: white;

    margin-top: 0;

    margin-bottom: 10px;
}

.login-box h2 {
    color: #aaa;

    margin-bottom: 30px;
}

.login-box input {
    width: 100%;

    box-sizing: border-box;

    padding: 14px;

    margin-bottom: 15px;

    border-radius: 10px;

    border: 1px solid #444;

    background: #1b1b1b;

    color: white;

    font-size: 16px;

    outline: none;
}

.login-box input:focus {
    border-color: #00c2ff;

    box-shadow:
        0 0 10px rgba(0,194,255,.2);
}

.login-box button {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 10px;

    background: #00c2ff;

    color: #000;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;
}

.login-box button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 15px rgba(0,194,255,.4);
}

#errorLogin {
    color: #ff4d5a;

    margin-top: 15px;

    min-height: 20px;
}


/* =========================================================
   MÓVIL ADMIN
========================================================= */

@media (max-width: 700px) {

    .admin {
        padding:
            110px
            15px
            50px;
    }

    .admin > h1 {
        font-size: 34px;
    }

    .admin-estadisticas {
        grid-template-columns: 1fr;
    }

    .admin-card {
        padding: 22px;
    }

    .pedido-admin {
        padding: 20px;
    }

    .pedido-admin h2 {
        font-size: 21px;
    }

    .seguimiento-admin {
        padding: 15px;
    }

    .estado-pedido {
        margin-left: 0;

        margin-top: 8px;
    }

    .transportista-pedido,
    .numero-seguimiento-pedido {
        max-width: 100%;
    }

    .guardar-seguimiento,
    .eliminar-pedido {
        width: 100%;
    }

    .login-box {
        padding: 25px 20px;
    }

}

/* =========================================================
   HSTAR ADMIN + SEGUIMIENTO
   DISEÑO PROFESIONAL
========================================================= */


/* =========================================================
   PANEL ADMIN
========================================================= */

.admin {

    max-width: 1400px;

    margin: 0 auto;

    padding: 130px 30px 80px;

}


/* TÍTULO */

.admin > h1 {

    font-size: 48px;

    margin-bottom: 10px;

}


.admin > p {

    color: #999;

    font-size: 18px;

    margin-bottom: 45px;

}


/* =========================================================
   ESTADÍSTICAS
========================================================= */

.admin-estadisticas {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;

    margin-bottom: 50px;

}


.admin-card {

    position: relative;

    background:
        linear-gradient(
            145deg,
            #111827,
            #0d1117
        );

    border: 1px solid #222;

    border-radius: 20px;

    padding: 30px;

    overflow: hidden;

    transition: .3s;

}


.admin-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    background: #00c2ff;

    opacity: .08;

    border-radius: 50%;

    right: -50px;

    top: -50px;

}


.admin-card:hover {

    transform: translateY(-5px);

    border-color: #00c2ff;

    box-shadow:
        0 15px 40px
        rgba(0, 194, 255, .12);

}


.admin-card h2 {

    margin: 0 0 15px;

    font-size: 20px;

    color: #ccc;

}


.admin-card strong {

    display: block;

    font-size: 42px;

    color: #00c2ff;

}


/* =========================================================
   PEDIDOS
========================================================= */

.admin-pedidos {

    margin-top: 30px;

}


.admin-pedidos > h2 {

    font-size: 32px;

    margin-bottom: 25px;

}


/* =========================================================
   BUSCADOR
========================================================= */

.buscador-pedidos {

    margin-bottom: 30px;

}


.buscador-pedidos input {

    width: 100%;

    max-width: 600px;

    box-sizing: border-box;

    padding: 16px 20px;

    border-radius: 14px;

    border: 1px solid #333;

    background: #111;

    color: white;

    font-size: 16px;

    outline: none;

    transition: .3s;

}


.buscador-pedidos input:focus {

    border-color: #00c2ff;

    box-shadow:
        0 0 15px
        rgba(0, 194, 255, .15);

}


/* =========================================================
   TARJETA PEDIDO
========================================================= */

.pedido-admin {

    background:
        linear-gradient(
            145deg,
            #111827,
            #0d1117
        );

    border: 1px solid #242424;

    border-radius: 22px;

    padding: 30px;

    margin-bottom: 25px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.25);

    transition: .3s;

}


.pedido-admin:hover {

    border-color: #00c2ff;

    box-shadow:
        0 15px 45px
        rgba(0,194,255,.10);

}


.pedido-admin h2 {

    color: white;

    margin-top: 0;

}


.pedido-admin p {

    color: #ccc;

    line-height: 1.6;

}


/* =========================================================
   ESTADO
========================================================= */

.estado-pedido {

    padding: 10px 14px;

    border-radius: 10px;

    border: 1px solid #444;

    background: #161616;

    color: white;

    font-size: 15px;

    cursor: pointer;

    outline: none;

}


.estado-pedido:focus {

    border-color: #00c2ff;

}


/* =========================================================
   SEGUIMIENTO ADMIN
========================================================= */

.seguimiento-admin {

    margin-top: 25px;

    padding: 22px;

    background: #0b0f14;

    border: 1px solid #222;

    border-radius: 16px;

}


.seguimiento-admin h3 {

    margin-top: 0;

    color: #00c2ff;

}


.seguimiento-admin p {

    margin-bottom: 7px;

    color: #aaa;

}


.seguimiento-admin input {

    width: 100%;

    max-width: 500px;

    box-sizing: border-box;

    padding: 12px 14px;

    margin-bottom: 15px;

    border-radius: 10px;

    border: 1px solid #333;

    background: #151515;

    color: white;

    outline: none;

}


.seguimiento-admin input:focus {

    border-color: #00c2ff;

}


/* BOTÓN GUARDAR */

.guardar-seguimiento {

    padding: 12px 18px;

    border: none;

    border-radius: 10px;

    background: #00c2ff;

    color: #000;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;

}


.guardar-seguimiento:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0,194,255,.25);

}


/* =========================================================
   PRODUCTOS ADMIN
========================================================= */

.producto-admin {

    background: #151a21;

    border: 1px solid #252525;

    border-radius: 14px;

    padding: 18px;

    margin: 12px 0;

}


.producto-admin strong {

    color: white;

    font-size: 18px;

}


.producto-admin p {

    margin: 5px 0;

    color: #aaa;

}


/* =========================================================
   TOTAL
========================================================= */

.pedido-admin > h2:last-of-type {

    color: #00c2ff;

    font-size: 28px;

    margin-top: 25px;

}


/* =========================================================
   ELIMINAR
========================================================= */

.acciones-pedido {

    margin-top: 25px;

}


.eliminar-pedido {

    padding: 11px 18px;

    border: 1px solid #ff4444;

    border-radius: 10px;

    background: transparent;

    color: #ff5555;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;

}


.eliminar-pedido:hover {

    background: #ff4444;

    color: white;

}


/* =========================================================
   SEGUIMIENTO CLIENTE
========================================================= */

.seguimiento {

    max-width: 1100px;

    margin: 0 auto;

    padding: 140px 25px 80px;

}


.seguimiento h1 {

    font-size: 45px;

    margin-bottom: 10px;

}


.seguimiento > p {

    color: #999;

    font-size: 18px;

}


/* =========================================================
   BUSCADOR SEGUIMIENTO
========================================================= */

.buscador-seguimiento {

    display: flex;

    gap: 12px;

    margin: 35px 0;

    flex-wrap: wrap;

}


.buscador-seguimiento input {

    flex: 1;

    min-width: 260px;

    padding: 15px 18px;

    border-radius: 12px;

    border: 1px solid #333;

    background: #111;

    color: white;

    font-size: 16px;

    outline: none;

}


.buscador-seguimiento input:focus {

    border-color: #00c2ff;

}


.buscador-seguimiento button {

    padding: 15px 25px;

    border: none;

    border-radius: 12px;

    background: #00c2ff;

    color: #000;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;

}


.buscador-seguimiento button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0,194,255,.25);

}


/* =========================================================
   TARJETA SEGUIMIENTO
========================================================= */

.pedido-seguimiento {

    background:
        linear-gradient(
            145deg,
            #111827,
            #0d1117
        );

    border: 1px solid #242424;

    border-radius: 22px;

    padding: 30px;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25);

}


.pedido-seguimiento > h2:first-child {

    color: #00c2ff;

    font-size: 28px;

}


/* =========================================================
   PROGRESO
========================================================= */

.progreso-seguimiento {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin: 40px 0;

    overflow-x: auto;

    padding: 10px;

}


.paso-seguimiento {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    min-width: 80px;

    text-align: center;

    opacity: .3;

    transition: .3s;

}


.paso-seguimiento.actual {

    opacity: 1;

}


.paso-seguimiento.completado {

    opacity: .75;

}


.circulo-seguimiento {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #222;

    font-size: 22px;

    border: 2px solid #333;

}


.paso-seguimiento.actual
.circulo-seguimiento {

    background: #00c2ff;

    border-color: #00c2ff;

    box-shadow:
        0 0 20px
        rgba(0,194,255,.4);

}


.paso-seguimiento.completado
.circulo-seguimiento {

    border-color: #00c2ff;

}


.paso-seguimiento span {

    font-size: 13px;

    color: #ccc;

}


.linea-seguimiento {

    width: 60px;

    height: 3px;

    background: #333;

    flex-shrink: 0;

}


.linea-seguimiento.activa {

    background: #00c2ff;

}


/* =========================================================
   INFORMACIÓN ENVÍO
========================================================= */

.informacion-envio {

    margin: 30px 0;

    padding: 25px;

    background: #0b0f14;

    border: 1px solid #252525;

    border-radius: 16px;

}


.informacion-envio h2 {

    color: #00c2ff;

    margin-top: 0;

}


.numero-tracking {

    margin-top: 15px;

}


.numero-tracking span {

    display: inline-block;

    padding: 12px 16px;

    margin: 8px 10px 8px 0;

    border-radius: 10px;

    background: #171717;

    border: 1px solid #333;

    color: white;

    font-weight: bold;

    letter-spacing: 1px;

}


#copiarTracking {

    padding: 11px 16px;

    border: none;

    border-radius: 9px;

    background: #00c2ff;

    color: #000;

    font-weight: bold;

    cursor: pointer;

}


/* =========================================================
   PRODUCTOS SEGUIMIENTO
========================================================= */

.producto-seguimiento {

    background: #151a21;

    border: 1px solid #252525;

    border-radius: 14px;

    padding: 20px;

    margin: 12px 0;

}


.producto-seguimiento strong {

    font-size: 18px;

    color: white;

}


.producto-seguimiento p {

    color: #aaa;

    margin: 6px 0;

}


/* =========================================================
   PEDIDO NO ENCONTRADO
========================================================= */

.pedido-no-encontrado {

    padding: 30px;

    border-radius: 16px;

    background: #180f10;

    border: 1px solid #552020;

}


.pedido-no-encontrado h2 {

    color: #ff5555;

}


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

@media (max-width: 768px) {

    .admin {

        padding:
            110px
            15px
            50px;

    }


    .admin > h1 {

        font-size: 34px;

    }


    .admin-estadisticas {

        grid-template-columns: 1fr;

    }


    .admin-card strong {

        font-size: 34px;

    }


    .pedido-admin {

        padding: 20px;

    }


    .seguimiento {

        padding:
            110px
            15px
            50px;

    }


    .seguimiento h1 {

        font-size: 34px;

    }


    .pedido-seguimiento {

        padding: 20px;

    }


    .progreso-seguimiento {

        justify-content: flex-start;

    }


    .linea-seguimiento {

        width: 35px;

    }


    .buscador-seguimiento {

        flex-direction: column;

    }


    .buscador-seguimiento input {

        width: 100%;

    }


    .buscador-seguimiento button {

        width: 100%;

    }

}


/* =========================================================
   ANIMACIÓN
========================================================= */

.pedido-admin,
.pedido-seguimiento,
.admin-card {

    animation:
        aparecerAdmin
        .5s
        ease
        forwards;

}


@keyframes aparecerAdmin {

    from {

        opacity: 0;

        transform:
            translateY(15px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   HSTAR ADMIN + SEGUIMIENTO
   DISEÑO PROFESIONAL
========================================================= */


/* =========================================================
   PANEL ADMIN
========================================================= */

.admin {

    max-width: 1400px;

    margin: 0 auto;

    padding: 130px 30px 80px;

}


/* TÍTULO */

.admin > h1 {

    font-size: 48px;

    margin-bottom: 10px;

}


.admin > p {

    color: #999;

    font-size: 18px;

    margin-bottom: 45px;

}


/* =========================================================
   ESTADÍSTICAS
========================================================= */

.admin-estadisticas {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;

    margin-bottom: 50px;

}


.admin-card {

    position: relative;

    background:
        linear-gradient(
            145deg,
            #111827,
            #0d1117
        );

    border: 1px solid #222;

    border-radius: 20px;

    padding: 30px;

    overflow: hidden;

    transition: .3s;

}


.admin-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    background: #00c2ff;

    opacity: .08;

    border-radius: 50%;

    right: -50px;

    top: -50px;

}


.admin-card:hover {

    transform: translateY(-5px);

    border-color: #00c2ff;

    box-shadow:
        0 15px 40px
        rgba(0, 194, 255, .12);

}


.admin-card h2 {

    margin: 0 0 15px;

    font-size: 20px;

    color: #ccc;

}


.admin-card strong {

    display: block;

    font-size: 42px;

    color: #00c2ff;

}


/* =========================================================
   PEDIDOS
========================================================= */

.admin-pedidos {

    margin-top: 30px;

}


.admin-pedidos > h2 {

    font-size: 32px;

    margin-bottom: 25px;

}


/* =========================================================
   BUSCADOR
========================================================= */

.buscador-pedidos {

    margin-bottom: 30px;

}


.buscador-pedidos input {

    width: 100%;

    max-width: 600px;

    box-sizing: border-box;

    padding: 16px 20px;

    border-radius: 14px;

    border: 1px solid #333;

    background: #111;

    color: white;

    font-size: 16px;

    outline: none;

    transition: .3s;

}


.buscador-pedidos input:focus {

    border-color: #00c2ff;

    box-shadow:
        0 0 15px
        rgba(0, 194, 255, .15);

}


/* =========================================================
   TARJETA PEDIDO
========================================================= */

.pedido-admin {

    background:
        linear-gradient(
            145deg,
            #111827,
            #0d1117
        );

    border: 1px solid #242424;

    border-radius: 22px;

    padding: 30px;

    margin-bottom: 25px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.25);

    transition: .3s;

}


.pedido-admin:hover {

    border-color: #00c2ff;

    box-shadow:
        0 15px 45px
        rgba(0,194,255,.10);

}


.pedido-admin h2 {

    color: white;

    margin-top: 0;

}


.pedido-admin p {

    color: #ccc;

    line-height: 1.6;

}


/* =========================================================
   ESTADO
========================================================= */

.estado-pedido {

    padding: 10px 14px;

    border-radius: 10px;

    border: 1px solid #444;

    background: #161616;

    color: white;

    font-size: 15px;

    cursor: pointer;

    outline: none;

}


.estado-pedido:focus {

    border-color: #00c2ff;

}


/* =========================================================
   SEGUIMIENTO ADMIN
========================================================= */

.seguimiento-admin {

    margin-top: 25px;

    padding: 22px;

    background: #0b0f14;

    border: 1px solid #222;

    border-radius: 16px;

}


.seguimiento-admin h3 {

    margin-top: 0;

    color: #00c2ff;

}


.seguimiento-admin p {

    margin-bottom: 7px;

    color: #aaa;

}


.seguimiento-admin input {

    width: 100%;

    max-width: 500px;

    box-sizing: border-box;

    padding: 12px 14px;

    margin-bottom: 15px;

    border-radius: 10px;

    border: 1px solid #333;

    background: #151515;

    color: white;

    outline: none;

}


.seguimiento-admin input:focus {

    border-color: #00c2ff;

}


/* BOTÓN GUARDAR */

.guardar-seguimiento {

    padding: 12px 18px;

    border: none;

    border-radius: 10px;

    background: #00c2ff;

    color: #000;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;

}


.guardar-seguimiento:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0,194,255,.25);

}


/* =========================================================
   PRODUCTOS ADMIN
========================================================= */

.producto-admin {

    background: #151a21;

    border: 1px solid #252525;

    border-radius: 14px;

    padding: 18px;

    margin: 12px 0;

}


.producto-admin strong {

    color: white;

    font-size: 18px;

}


.producto-admin p {

    margin: 5px 0;

    color: #aaa;

}


/* =========================================================
   TOTAL
========================================================= */

.pedido-admin > h2:last-of-type {

    color: #00c2ff;

    font-size: 28px;

    margin-top: 25px;

}


/* =========================================================
   ELIMINAR
========================================================= */

.acciones-pedido {

    margin-top: 25px;

}


.eliminar-pedido {

    padding: 11px 18px;

    border: 1px solid #ff4444;

    border-radius: 10px;

    background: transparent;

    color: #ff5555;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;

}


.eliminar-pedido:hover {

    background: #ff4444;

    color: white;

}


/* =========================================================
   SEGUIMIENTO CLIENTE
========================================================= */

.seguimiento {

    max-width: 1100px;

    margin: 0 auto;

    padding: 140px 25px 80px;

}


.seguimiento h1 {

    font-size: 45px;

    margin-bottom: 10px;

}


.seguimiento > p {

    color: #999;

    font-size: 18px;

}


/* =========================================================
   BUSCADOR SEGUIMIENTO
========================================================= */

.buscador-seguimiento {

    display: flex;

    gap: 12px;

    margin: 35px 0;

    flex-wrap: wrap;

}


.buscador-seguimiento input {

    flex: 1;

    min-width: 260px;

    padding: 15px 18px;

    border-radius: 12px;

    border: 1px solid #333;

    background: #111;

    color: white;

    font-size: 16px;

    outline: none;

}


.buscador-seguimiento input:focus {

    border-color: #00c2ff;

}


.buscador-seguimiento button {

    padding: 15px 25px;

    border: none;

    border-radius: 12px;

    background: #00c2ff;

    color: #000;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;

}


.buscador-seguimiento button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0,194,255,.25);

}


/* =========================================================
   TARJETA SEGUIMIENTO
========================================================= */

.pedido-seguimiento {

    background:
        linear-gradient(
            145deg,
            #111827,
            #0d1117
        );

    border: 1px solid #242424;

    border-radius: 22px;

    padding: 30px;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25);

}


.pedido-seguimiento > h2:first-child {

    color: #00c2ff;

    font-size: 28px;

}


/* =========================================================
   PROGRESO
========================================================= */

.progreso-seguimiento {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin: 40px 0;

    overflow-x: auto;

    padding: 10px;

}


.paso-seguimiento {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    min-width: 80px;

    text-align: center;

    opacity: .3;

    transition: .3s;

}


.paso-seguimiento.actual {

    opacity: 1;

}


.paso-seguimiento.completado {

    opacity: .75;

}


.circulo-seguimiento {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #222;

    font-size: 22px;

    border: 2px solid #333;

}


.paso-seguimiento.actual
.circulo-seguimiento {

    background: #00c2ff;

    border-color: #00c2ff;

    box-shadow:
        0 0 20px
        rgba(0,194,255,.4);

}


.paso-seguimiento.completado
.circulo-seguimiento {

    border-color: #00c2ff;

}


.paso-seguimiento span {

    font-size: 13px;

    color: #ccc;

}


.linea-seguimiento {

    width: 60px;

    height: 3px;

    background: #333;

    flex-shrink: 0;

}


.linea-seguimiento.activa {

    background: #00c2ff;

}


/* =========================================================
   INFORMACIÓN ENVÍO
========================================================= */

.informacion-envio {

    margin: 30px 0;

    padding: 25px;

    background: #0b0f14;

    border: 1px solid #252525;

    border-radius: 16px;

}


.informacion-envio h2 {

    color: #00c2ff;

    margin-top: 0;

}


.numero-tracking {

    margin-top: 15px;

}


.numero-tracking span {

    display: inline-block;

    padding: 12px 16px;

    margin: 8px 10px 8px 0;

    border-radius: 10px;

    background: #171717;

    border: 1px solid #333;

    color: white;

    font-weight: bold;

    letter-spacing: 1px;

}


#copiarTracking {

    padding: 11px 16px;

    border: none;

    border-radius: 9px;

    background: #00c2ff;

    color: #000;

    font-weight: bold;

    cursor: pointer;

}


/* =========================================================
   PRODUCTOS SEGUIMIENTO
========================================================= */

.producto-seguimiento {

    background: #151a21;

    border: 1px solid #252525;

    border-radius: 14px;

    padding: 20px;

    margin: 12px 0;

}


.producto-seguimiento strong {

    font-size: 18px;

    color: white;

}


.producto-seguimiento p {

    color: #aaa;

    margin: 6px 0;

}


/* =========================================================
   PEDIDO NO ENCONTRADO
========================================================= */

.pedido-no-encontrado {

    padding: 30px;

    border-radius: 16px;

    background: #180f10;

    border: 1px solid #552020;

}


.pedido-no-encontrado h2 {

    color: #ff5555;

}


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

@media (max-width: 768px) {

    .admin {

        padding:
            110px
            15px
            50px;

    }


    .admin > h1 {

        font-size: 34px;

    }


    .admin-estadisticas {

        grid-template-columns: 1fr;

    }


    .admin-card strong {

        font-size: 34px;

    }


    .pedido-admin {

        padding: 20px;

    }


    .seguimiento {

        padding:
            110px
            15px
            50px;

    }


    .seguimiento h1 {

        font-size: 34px;

    }


    .pedido-seguimiento {

        padding: 20px;

    }


    .progreso-seguimiento {

        justify-content: flex-start;

    }


    .linea-seguimiento {

        width: 35px;

    }


    .buscador-seguimiento {

        flex-direction: column;

    }


    .buscador-seguimiento input {

        width: 100%;

    }


    .buscador-seguimiento button {

        width: 100%;

    }

}


/* =========================================================
   ANIMACIÓN
========================================================= */

.pedido-admin,
.pedido-seguimiento,
.admin-card {

    animation:
        aparecerAdmin
        .5s
        ease
        forwards;

}


@keyframes aparecerAdmin {

    from {

        opacity: 0;

        transform:
            translateY(15px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}

/* ==================================================
   PANEL ADMIN - DISEÑO PROFESIONAL
================================================== */

.admin {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 30px 80px;
    box-sizing: border-box;
}


/* =========================
   TÍTULO
========================= */

.admin > h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.admin > p {
    color: #aaa;
    font-size: 17px;
    margin-bottom: 40px;
}


/* =========================
   ESTADÍSTICAS
========================= */

.admin-estadisticas {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;

    margin-bottom: 50px;
}


/* =========================
   TARJETAS
========================= */

.admin-card {

    position: relative;

    min-height: 170px;

    padding: 30px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #162033
        );

    border: 1px solid
        rgba(0, 194, 255, 0.25);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.35);

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.admin-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    bottom: -90px;

    border-radius: 50%;

    background:
        rgba(0, 194, 255, 0.15);

    pointer-events: none;
}


.admin-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 20px 50px
        rgba(0, 194, 255, 0.15);
}


/* =========================
   TÍTULO TARJETA
========================= */

.admin-card h2 {

    position: relative;

    z-index: 2;

    margin: 0 0 20px;

    color: #fff;

    font-size: 22px;
}


/* =========================
   NÚMERO
========================= */

.admin-card strong {

    position: relative;

    z-index: 2;

    display: block;

    color: #00c2ff;

    font-size: 48px;

    line-height: 1;

}


/* ==================================================
   PEDIDOS
================================================== */

.admin-pedidos {

    margin-top: 20px;
}


/* =========================
   TÍTULO
========================= */

.admin-pedidos > h2 {

    font-size: 32px;

    margin-bottom: 25px;
}


/* ==================================================
   BUSCADOR
================================================== */

.buscador-pedidos {

    margin-bottom: 30px;
}


.buscador-pedidos input {

    width: 100%;

    max-width: 600px;

    box-sizing: border-box;

    padding: 16px 20px;

    border-radius: 14px;

    border: 1px solid #333;

    background: #111827;

    color: white;

    font-size: 16px;

    outline: none;

    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}


.buscador-pedidos input::placeholder {

    color: #777;
}


.buscador-pedidos input:focus {

    border-color: #00c2ff;

    box-shadow:
        0 0 15px
        rgba(0, 194, 255, 0.2);
}


/* ==================================================
   PEDIDO
================================================== */

.pedido-admin {

    position: relative;

    margin-bottom: 30px;

    padding: 30px;

    border-radius: 20px;

    background: #111827;

    border: 1px solid #263449;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.25);

    transition:
        border-color 0.3s,
        transform 0.3s;
}


.pedido-admin:hover {

    border-color:
        rgba(0, 194, 255, 0.45);

    transform:
        translateY(-3px);
}


/* =========================
   NÚMERO PEDIDO
========================= */

.pedido-admin > h2 {

    color: #00c2ff;

    font-size: 24px;

    margin-top: 0;

    margin-bottom: 25px;
}


/* =========================
   INFORMACIÓN
========================= */

.pedido-admin > p {

    color: #ddd;

    margin: 10px 0;

    line-height: 1.5;
}


.pedido-admin > p strong {

    color: white;
}


/* ==================================================
   ESTADO
================================================== */

.estado-pedido {

    margin-left: 8px;

    padding: 9px 12px;

    border-radius: 10px;

    border: 1px solid #444;

    background: #1f2937;

    color: white;

    cursor: pointer;

    outline: none;
}


.estado-pedido:focus {

    border-color: #00c2ff;

    box-shadow:
        0 0 10px
        rgba(0, 194, 255, 0.2);
}


/* ==================================================
   SEGUIMIENTO ADMIN
================================================== */

.seguimiento-admin {

    margin-top: 30px;

    padding: 25px;

    border-radius: 16px;

    background: #0b1220;

    border: 1px solid #243247;
}


.seguimiento-admin h3 {

    margin-top: 0;

    color: #00c2ff;

    font-size: 21px;
}


.seguimiento-admin p {

    color: #aaa;

    margin-bottom: 8px;
}


.seguimiento-admin input {

    width: 100%;

    max-width: 500px;

    box-sizing: border-box;

    padding: 12px 14px;

    margin-bottom: 15px;

    border-radius: 10px;

    border: 1px solid #444;

    background: #161f2d;

    color: white;

    outline: none;
}


.seguimiento-admin input:focus {

    border-color: #00c2ff;
}


.guardar-seguimiento {

    padding: 12px 18px;

    border: none;

    border-radius: 10px;

    background: #00c2ff;

    color: #001018;

    font-weight: bold;

    cursor: pointer;

    transition: 0.25s;
}


.guardar-seguimiento:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0, 194, 255, 0.25);
}


/* ==================================================
   PRODUCTOS
================================================== */

.producto-admin {

    margin-top: 15px;

    padding: 18px;

    border-radius: 12px;

    background: #182234;

    border: 1px solid #263449;
}


.producto-admin strong {

    color: #fff;

    font-size: 18px;
}


.producto-admin p {

    color: #aaa;

    margin: 7px 0;
}


/* ==================================================
   TOTAL
================================================== */

.pedido-admin > h2:last-of-type {

    margin-top: 25px;

    color: #fff;
}


.pedido-admin > h2:last-of-type {

    color: #00c2ff;
}


/* ==================================================
   ELIMINAR
================================================== */

.acciones-pedido {

    margin-top: 25px;
}


.eliminar-pedido {

    padding: 11px 16px;

    border: 1px solid #7f1d1d;

    border-radius: 10px;

    background: #3b1111;

    color: #ff7777;

    font-weight: bold;

    cursor: pointer;

    transition: 0.25s;
}


.eliminar-pedido:hover {

    background: #641515;

    color: white;

    transform:
        translateY(-2px);
}


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

@media (max-width: 700px) {

    .admin {

        padding:
            110px 15px 50px;
    }


    .admin > h1 {

        font-size: 32px;
    }


    .admin-estadisticas {

        grid-template-columns: 1fr;
    }


    .admin-card {

        min-height: 140px;

        padding: 25px;
    }


    .admin-card strong {

        font-size: 40px;
    }


    .pedido-admin {

        padding: 20px;
    }


    .pedido-admin > h2 {

        font-size: 20px;
    }


    .estado-pedido {

        display: block;

        margin: 10px 0 0;

        width: 100%;
    }


    .guardar-seguimiento {

        width: 100%;
    }

}

/* ==================================================
   INVENTARIO HSTAR
================================================== */

.inventario {
    padding: 140px 30px 80px;
    max-width: 1400px;
    margin: auto;
}

.inventario h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.inventario-subtitulo {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 40px;
}


/* ==================================================
   FORMULARIO
================================================== */

.inventario-formulario {
    background: #111827;
    border: 1px solid #26384d;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.inventario-formulario h2 {
    margin-top: 0;
    color: #00c2ff;
}


#formInventario {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}


#formInventario input {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #444;
    background: #0d1117;
    color: white;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}


#formInventario input:focus {
    border-color: #00c2ff;
}


#formInventario button {
    grid-column: 1 / -1;

    padding: 15px;

    border: none;

    border-radius: 10px;

    background: #00c2ff;

    color: #000;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: .2s;
}


#formInventario button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 20px rgba(0,194,255,.4);
}


/* ==================================================
   LISTA
================================================== */

.inventario-lista {
    background: #0f172a;

    border: 1px solid #26384d;

    border-radius: 20px;

    padding: 30px;
}


.inventario-titulo {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}


.inventario-titulo h2 {
    margin: 0;
}


#contadorInventario {
    color: #00c2ff;

    font-weight: bold;
}


/* ==================================================
   PRODUCTO
================================================== */

.producto-inventario {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 25px;

    margin-bottom: 20px;

    background: #162033;

    border: 1px solid #26384d;

    border-radius: 15px;

    transition: .25s;
}


.producto-inventario:hover {
    transform: translateY(-3px);

    border-color: #00c2ff;

    box-shadow:
        0 10px 30px rgba(0,194,255,.12);
}


.producto-inventario-info {
    flex: 1;
}


.producto-inventario-info h3 {
    margin-top: 0;

    font-size: 24px;

    color: white;
}


.producto-inventario-info p {
    margin: 8px 0;

    color: #bbb;
}


/* ==================================================
   STOCK
================================================== */

.producto-inventario-stock {
    min-width: 220px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    justify-content: center;
}


.producto-inventario-stock label {
    color: #aaa;

    font-size: 14px;
}


.input-stock {
    padding: 12px;

    border-radius: 8px;

    border: 1px solid #555;

    background: #0d1117;

    color: white;

    font-size: 16px;
}


.guardar-stock {
    padding: 12px;

    border: none;

    border-radius: 8px;

    background: #00c2ff;

    color: #000;

    font-weight: bold;

    cursor: pointer;
}


.guardar-stock:hover {
    box-shadow:
        0 0 15px rgba(0,194,255,.4);
}


.eliminar-inventario {
    padding: 10px;

    border: none;

    border-radius: 8px;

    background: #e63946;

    color: white;

    font-weight: bold;

    cursor: pointer;
}


.eliminar-inventario:hover {
    background: #ff4d5a;
}


/* ==================================================
   ESTADOS STOCK
================================================== */

.estado-stock {
    font-weight: bold;
}


.stock-disponible {
    color: #2ecc71 !important;
}


.stock-bajo {
    color: #f39c12 !important;
}


.stock-agotado {
    color: #e63946 !important;
}


/* ==================================================
   VACÍO
================================================== */

.inventario-vacio {
    text-align: center;

    padding: 60px 20px;

    color: #aaa;
}


.inventario-vacio h3 {
    color: white;

    font-size: 24px;
}


/* ==================================================
   MÓVIL
================================================== */

@media (max-width: 900px) {

    #formInventario {
        grid-template-columns: 1fr 1fr;
    }


    .producto-inventario {
        flex-direction: column;
    }


    .producto-inventario-stock {
        width: 100%;
    }

}


@media (max-width: 600px) {

    .inventario {
        padding: 120px 15px 50px;
    }


    .inventario h1 {
        font-size: 34px;
    }


    #formInventario {
        grid-template-columns: 1fr;
    }


    .inventario-formulario,
    .inventario-lista {
        padding: 20px;
    }

}