.product-card { 
    transition: all 0.3s ease; 
    border: 1px solid #e0e0e0; 
    border-radius: 8px; 
    overflow: hidden; 
}
.product-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important; 
    border-color: #f2b01e; 
}

.card-img-container { 
    height: 200px; 
    padding: 1.5rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: #fff; 
    border-bottom: 1px solid #f5f5f5; 
}
.card-img-container img { 
    max-height: 100%; 
    max-width: 100%; 
    object-fit: contain; 
}

.product-title { 
    color: #f2b01e; 
    font-size: 1.25rem; 
    font-weight: 700; 
    line-height: 1.2; 
}

.spec-item { 
    display: flex; 
    /* justify-content: space-between; */
    padding: 0.5rem 0; 
    border-bottom: 1px solid #f5f5f5; 
    font-size: 0.9rem; 
    color: #555; 
}
.spec-item span {
    margin-right: 8px; /* Espacio entre "Potencia:" y el valor */
    display: inline-block;
}
.spec-item:last-child { 
    border-bottom: none; 
}
.spec-item strong { 
    color: #2c2c2c; 
}

/* --- Botones --- */
.btn-wsp { 
    background-color: #25D366; 
    color: #fff !important; 
    font-weight: 600; 
    border: none; 
    border-radius: 6px; 
    padding: 10px 16px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}
.btn-wsp:hover { 
    background-color: #20b858; 
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}

.btn-ficha { 
    background-color: transparent; 
    color: #2c2c2c !important; 
    font-weight: 600; 
    border: 1px solid #cccccc; 
    border-radius: 6px; 
    padding: 10px 16px;
    transition: all 0.3s ease; 
}
.btn-ficha:hover { 
    border-color: #2c2c2c; 
    background-color: #2c2c2c; 
    color: #f2b01e !important; 
  }

/* Columna que envuelve a la tarjeta */
[role="listitem"] {
    margin-bottom: 1.5rem;
}

/* Asegura que el contenedor de la fila tenga espacio para el movimiento del hover */
.row[role="list"] {
    padding-top: 10px;
    padding-bottom: 15px;
}