.b-producto-card{
    display:flex;
    flex-direction:column;
    gap:1rem;
    height:346px;
}

/* MAIN */

.b-producto-main{
    display:flex;
    gap:10px;
    min-height:220px;
}

/* INFO */

.b-producto-info{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.b-producto-nombre{
    font-size:1.4rem;
    line-height:19px;
    margin:0;
}

.b-producto-desc{
    font-size:.95rem;
    line-height:16PX;
    opacity:.8;
    margin:0;
}

.b-producto-precio{
    font-size:1.5rem;
    font-weight:700;
}

/* IMAGEN */

.b-producto-image{
    width:45%;
    border-radius:11px;
    overflow:hidden;
}

.b-producto-main-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* NAV */

.b-producto-nav{
    display:flex;
    gap:1rem;
    height:109px;
}

/* THUMB */

.b-producto-thumb{
    position:relative;
    flex:1;
    border:none;
    padding:0;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    background:none;
}

.b-producto-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.b-producto-thumb:hover img{
    transform:scale(1.08);
}

/* OVERLAY */

.b-thumb-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-weight:600;
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(2px);
}

.btn-comprar{
    padding: 1px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #0a0a0a;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 11px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn-comprar:hover{
    color: #ffffff;
    background: #0a0a0a;
    border: #0a0a0a;
    margin: 0 0 1px 0;
}
.btn-comprar:active{
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}