p {
    margin-top: 0;
    margin-bottom: 0.2rem;
    text-align: left;
}

.product-card {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
    border: 1px solid #141415;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.product-info {
    padding: 20px;
}

.product-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #000;
}

.btn-agregar {
    background-color: #c32420;
    color: #fff;
}

.badge-stock {
    margin-left: auto;
    background-color: #c32420;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.badge-danger {
    background-color: #dc3545;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-success {
    background-color: #28a745;
}

/* Responsive adjustments para productos */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 15px;
    }
    
    .product-info {
        padding: 15px;
    }
}