/* Product Bar - compact inline filter bar */
.product-bar-wrap {
    display: inline-block;
    max-width: 100%;
}

.product-bar-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 6px 0;
    background: transparent;
    border: none;
    box-sizing: border-box;
}

/* Selects: base styles */
.product-bar-select {
    flex: 0 0 auto;
    width: 80px;
    height: 34px;
    padding: 0 24px 0 10px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    background: #fff;
    border: 1.5px solid #9ca3af;
    border-radius: 8px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    cursor: pointer;
    line-height: 31px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.pb-type {
    width: 80px;
}

.pb-course {
    width: 120px;
}

.product-bar-select:focus {
    outline: none;
    border-color: #374151;
}

.product-bar-select option {
    color: #111827;
}

.product-bar-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #9ca3af;
}

.product-bar-cart-block {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    margin-left: 2px;
}

.product-bar-cart-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    cursor: default;
}

.product-bar-cart-icon-wrap.is-clickable {
    cursor: pointer;
}

.product-bar-cart-icon-wrap.is-clickable:hover {
    color: #000;
}

.product-bar-cart-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.product-bar-cart-check {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.product-bar-cart-check.has-selection {
    opacity: 1;
}

.product-bar-cart-check::after {
    content: '';
    position: absolute;
    left: 4.5px;
    top: 2.5px;
    width: 3px;
    height: 6px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.product-bar-price {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

/* Mobile: keep inline, shrink all dropdowns equally */
@media (max-width: 480px) {
    .product-bar-inner {
        gap: 5px;
    }

    .product-bar-select,
    .pb-type,
    .pb-course {
        width: 60px;
        min-width: 0;
        padding: 0 20px 0 8px;
        font-size: 12px;
    }

    .product-bar-price {
        font-size: 12px;
    }
}
