/* AutoBro Product Improvements */

/* Global product prices - larger everywhere */
.item .price span,
.list-items .price span,
.price span {
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 10px;
}

/* Larger quantity buttons everywhere */
.qty-wrapper button {
    font-size: 16px !important;
    font-weight: bold !important;
    padding: 8px 12px !important;
    min-width: 35px !important;
}

/* Larger quantity input everywhere */
.qty-wrapper--input {
    font-size: 16px !important;
    font-weight: 800 !important;
    min-width: 60px !important;
    text-align: center !important;
    padding: 8px !important;
}

/* Larger add to cart button everywhere */
.btn.xs-btn {
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 12px 16px !important;
    min-height: 45px !important;
}

/* Better spacing for all product items */
.item-details {
    padding: 15px 10px !important;
}

.qty-wrapper {
    margin-bottom: 10px !important;
}


/* Stock availability colors */
.in_stock {
    color: #28a745 !important;
    font-weight: bold !important;
}

.in_stock_magazin {
    color: #17a2b8 !important;
    font-weight: bold !important;
}

.not_in_stock {
    color: #dc3545 !important;
    font-weight: bold !important;
}

.in_supplier_stock {
    color: #ffc107 !important;
    font-weight: bold !important;
}

/* Media query override for mobile */
@media (max-width: 768px) {
    .item .price span,
    .list-items .price span,
    .price span {
        font-size: 22px !important;
    }
    
    .btn.xs-btn {
        font-size: 14px !important;
        padding: 10px 14px !important;
    }
}