/* Dostupnost v detailu produktu */
.branch-stock-list {
    margin-top: 10px;
    padding: 10px 14px;
    background: #f7f8f9;
    border: 1px solid #e7e9eb;
    border-radius: 6px;
    font-size: 13px;
}
.branch-stock-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #9a9fa5;
    font-weight: 600;
    margin-bottom: 6px;
}
.branch-stock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    border-top: 1px solid #ebedef;
}
.branch-stock-row:first-of-type {
    border-top: none;
}
.branch-name {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
}
.branch-name::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c7cbcf;
    flex-shrink: 0;
}
.branch-amount {
    font-weight: 600;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 12px;
}
.branch-amount.in-stock {
    color: #2c6b0a;
    background: #e4f2db;
}
.branch-amount.out-of-stock {
    color: #a02a24;
    background: #f7e2e0;
}
