body{
    background:#111827;
    color:#f3f4f6;
}

.hero{
    background:linear-gradient(135deg,#050505,#0f172a,#1e1b4b);
    border-radius:24px;
    padding:15px 20px;
    color:white;
    box-shadow:0 0 25px rgba(0,255,255,.10);
}

.hero-logo{
    max-height:180px;
}

.navbar{
    border-bottom:2px solid #19d3d3;
    box-shadow:0 3px 10px rgba(0,0,0,.3);
}

.navbar-brand img{
    height:55px;
}

.navbar .container{
    display:flex;
    align-items:center;
}

.navbar form{
    margin-left:80px;
    margin-right:auto;
}

/* CARDS */
.card{
    background:#1f2937;
    color:white;
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:all .25s ease;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,255,255,.15);
}

.product-card{
    position:relative;
}

.product-card-compact{
    max-width:150px;
}

.card-img-top,
.product-img{
    height:95px !important;
    max-height:95px !important;
    width:100%;
    object-fit:contain !important;
    background:#fff;
    padding:8px;
}

.card-title,
.product-title{
    color:white;
    min-height:auto;
    font-size:.9rem;
    line-height:1;
    margin-bottom:5px;
}

.card-text{
    color:#d1d5db;
}

.product-price{
    font-size:1.1rem;
    margin-bottom:12px;
}

.product-category{
    font-size:.75rem;
}

.product-body{
    padding:14px;
}

.product-status{
    position:absolute;
    top:10px;
    left:10px;
    font-size:.8rem;
    padding:7px 9px;
    box-shadow:0 4px 10px rgba(0,0,0,.35);
}

/* CATEGORIAS */
.list-group-item{
    background:#1f2937;
    color:white;
    border-color:#374151;
}

.list-group-item:hover{
    background:#374151;
    color:#19d3d3;
}

/* PRECIOS */
.price,
.text-success{
    color:#00e676 !important;
}

/* BOTONES */
.btn-warning{
    font-weight:bold;
}

.btn-outline-info{
    border-width:2px;
    font-weight:600;
}

/* ADMIN */
.admin-card{
    border-left:5px solid #ffc107;
}

/* FORMULARIOS */
.mobile-form input,
.mobile-form select,
.mobile-form textarea{
    font-size:18px;
    padding:14px;
}

/* TITULOS */
h1,h2,h3,h4{
    font-weight:700;
}

h2{
    color:#ffffff;
    border-left:4px solid #00e5ff;
    padding-left:15px;
    margin-bottom:20px;
}

/* PRODUCTO INDIVIDUAL */
.producto-img-principal{
    width:100%;
    max-height:420px;
    object-fit:contain;
    background:white;
    cursor:pointer;
}

.producto-detalle{
    align-items:flex-start;
}

.producto-detalle .col-md-6{
    margin-bottom:20px;
}

.producto-thumb,
.thumb{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.2s;
    background:white;
}

.producto-thumb:hover,
.thumb:hover{
    border-color:#00e5ff;
    transform:scale(1.05);
}

.producto-titulo{
    font-size:2.5rem;
    color:#ffffff;
}

.producto-precio{
    color:#00c853;
    border-left:4px solid #00e5ff;
    padding-left:15px;
    font-size:2rem;
}

.producto-descripcion{
    font-size:1.1rem;
    margin-top:25px;
}

.producto-inventario{
    font-size:1.1rem;
    color:#d1d5db;
}

/* GALERIA */
.galeria-producto{
    position:relative;
}

.btn-galeria{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.7);
    color:white;
    font-size:28px;
    cursor:pointer;
    z-index:10;
}

.btn-galeria:hover{
    background:#00e5ff;
    color:black;
}

.izquierda{
    left:15px;
}

.derecha{
    right:15px;
}

/* WHATSAPP */
.whatsapp{
    position:fixed;
    right:18px;
    bottom:35px;
    background:#25d366;
    color:white;
    padding:14px 18px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    z-index:999;
    box-shadow:0 0 15px rgba(37,211,102,.5);
}

.whatsapp:hover{
    color:white;
    transform:scale(1.05);
}

/* FOOTER */
.footer-gamer{
    background:#0b0f19;
    color:#d1d5db;
    padding:10px 0 15px;
    border-top:2px solid #19d3d3;
    margin-top:15px !important;
}

.footer-gamer h5{
    color:#19d3d3;
    margin-bottom:10px;
}

.footer-gamer p{
    margin-bottom:5px;
    line-height:1.35;
}

.footer-gamer .mb-4{
    margin-bottom:1rem !important;
}

.footer-gamer hr{
    border-color:#374151;
    margin:12px 0;
}

.footer-copy{
    margin-top:10px;
}

.footer-copy small{
    display:block;
    margin-top:4px;
}

/* LIGHTBOX */
.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    z-index:99999;
    justify-content:center;
    align-items:center;
}

.lightbox-img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}

.cerrar{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

.lightbox-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:white;
    font-size:35px;
    cursor:pointer;
}

.lightbox-btn:hover{
    background:#00e5ff;
    color:black;
}

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

    .navbar form{
        margin-left:0;
        margin-top:15px;
        width:100%;
    }

    .hero{
        padding:20px;
    }

    .hero-logo{
        max-height:150px;
    }

    h1{
        font-size:2rem;
        line-height:1.15;
    }

    h2{
        font-size:1.6rem;
    }

    .list-group-item{
        padding:10px 12px;
        font-size:.95rem;
    }

    .product-card{
        max-width:none;
        width:100%;
        margin:auto;
    }

    .card-img-top,
    .product-img{
        height:70px !important;
        max-height:70px !important;
        padding:4px;
    }

    .card-body,
    .product-body{
        padding:8px;
    }

    .product-title,
    .card-title{
        font-size:.75rem;
        line-height:1.1;
        min-height:34px;
        margin-bottom:6px;
    }

    .fs-5,
    .product-price{
        font-size:1rem !important;
        margin-bottom:8px;
    }

    .btn-sm{
        font-size:.7rem;
        padding:3px 6px;
    }

    .producto-titulo{
        font-size:1.8rem;
    }

    .producto-precio{
        font-size:1.5rem;
    }

    .producto-img-principal{
        max-height:300px;
    }

    .footer-gamer{
        padding:10px 0 10px;
        margin-top:20px !important;
        text-align:center;
    }

    .footer-gamer h5{
        font-size:1.1rem;
        margin-bottom:7px;
    }

    .footer-gamer p{
        font-size:.9rem;
        margin-bottom:3px;
        line-height:1.25;
    }

    .footer-gamer .mb-4{
        margin-bottom:.7rem !important;
    }

    .footer-gamer hr{
        margin:8px 0;
    }

    .footer-copy{
        margin-top:6px;
    }

    .footer-copy small{
        font-size:.8rem;
        line-height:1.2;
    }

    .whatsapp{
        right:10px;
        bottom:12px;
        padding:9px 13px;
        font-size:.85rem;
        transform:scale(.9);
        transform-origin:bottom right;
    }
}

/* AJUSTE FINAL TARJETAS WEB */
.product-card{
    max-width:165px;
}

.productos-grid{
    column-gap:10px;
    row-gap:22px;
}

.product-card .btn-sm{
    font-size:.75rem;
    padding:5px 7px;
    white-space:nowrap;
}

.product-card .btn-outline-warning:disabled{
    min-width:86px;
}

/* TÍTULO CATÁLOGO */
section h1{
    font-size:2.8rem;
    line-height:1.1;
}

/* MÓVIL */
@media(max-width:768px){

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

    .product-card .btn-sm{
        font-size:.68rem;
        padding:3px 5px;
    }

    .product-card .btn-outline-warning:disabled{
        min-width:72px;
    }

    section h1{
        font-size:1.9rem;
    }
}