/**
 * POS Store - Frontend Styles
 *
 * @package POS_Store
 * @since   4.0.0
 */

/* Stock status */
.pos-stock {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
}

.pos-stock.in-stock {
    background: #d4edda;
    color: #155724;
}

.pos-stock.low-stock {
    background: #fff3cd;
    color: #856404;
}

.pos-stock.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

/* Store selector */
.pos-store-selector {
    margin: 15px 0;
}

.pos-store-selector label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.pos-store-selector select {
    width: 100%;
    max-width: 300px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pos-store-selector .store-info {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.pos-store-selector .store-stock {
    margin-top: 8px;
}

/* Store selection in cart */
.pos-store-cart-item {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

/* Bundle items display */
.pos-bundle-items {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.pos-bundle-items h4 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #333;
}

.pos-bundle-items ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pos-bundle-items li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.pos-bundle-items li:last-child {
    border-bottom: none;
}

.pos-bundle-item-stock {
    margin-left: auto;
    font-size: 12px;
}

/* Product page store stock table */
.pos-store-stock-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.pos-store-stock-table th,
.pos-store-stock-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pos-store-stock-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.pos-store-stock-table tr:hover {
    background: #fafafa;
}

/* Order details store info */
.woocommerce-order-items .pos-store-info {
    color: #666;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .pos-store-selector select {
        max-width: 100%;
    }
    
    .pos-store-stock-table {
        font-size: 13px;
    }
    
    .pos-store-stock-table th,
    .pos-store-stock-table td {
        padding: 8px 5px;
    }
}

