/* Shared Bagel Station components */
.bs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--bs-touch-target);
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: var(--bs-radius-sm);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.bs-button:hover { transform: translateY(-2px); box-shadow: var(--bs-shadow-sm); }
.bs-button:focus-visible { outline: 4px solid rgba(212,162,63,.30); outline-offset: 3px; }
.bs-button-gold {
    border-color: #94651f;
    background: linear-gradient(180deg, #e2b14d, var(--bs-gold-600));
    color: #2b190d;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.42), var(--bs-shadow-sm);
}
.bs-button-outline {
    border-color: var(--bs-brown-900);
    background: var(--bs-cream-50);
    color: var(--bs-brown-900);
}
.bs-button-danger {
    border-color: var(--bs-danger);
    background: var(--bs-cream-50);
    color: var(--bs-danger);
}
.bs-button-large { min-height: 64px; padding-inline: 34px; font-size: 1.15rem; }
.bs-station-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 13px;
    border: 1px solid rgba(74,46,29,.32);
    border-radius: 5px;
    color: var(--bs-brown-900);
    background: linear-gradient(180deg, #e2b14d, var(--bs-gold-600));
    box-shadow: 0 6px 15px rgba(48,26,12,.18);
    font-family: var(--bs-font-heading);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.bs-rail-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 18px 0;
    color: var(--bs-gold-700);
}
.bs-rail-divider::before,
.bs-rail-divider::after {
    content: "";
    width: 130px;
    max-width: 28vw;
    height: 2px;
    background: repeating-linear-gradient(90deg, currentColor 0, currentColor 18px, transparent 18px, transparent 25px);
}
.bs-rail-divider span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(168,117,31,.55);
    border-radius: 50%;
    background: var(--bs-cream-50);
    font-size: .72rem;
}
.bs-panel {
    position: relative;
    border: 1px solid rgba(154,106,36,.40);
    border-radius: var(--bs-radius-md);
    color: var(--bs-ink);
    background: linear-gradient(180deg, rgba(255,250,240,.98), rgba(244,228,195,.98));
    box-shadow: var(--bs-shadow-md);
}
.bs-modal-card {
    overflow: hidden;
    border: 2px solid var(--bs-gold-500);
    border-radius: var(--bs-radius-lg);
    color: var(--bs-ink);
    background: var(--bs-cream-100);
    box-shadow: var(--bs-shadow-lg);
}
.bs-modal-title {
    margin: 0;
    color: var(--bs-brown-900);
    font-family: var(--bs-font-heading);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    text-transform: uppercase;
}
.bs-input {
    width: 100%;
    min-height: 60px;
    padding: 14px 18px;
    border: 2px solid rgba(74,46,29,.25);
    border-radius: var(--bs-radius-sm);
    color: var(--bs-ink);
    background: var(--bs-white);
}
.bs-input:focus { border-color: var(--bs-gold-700); outline: none; box-shadow: 0 0 0 4px rgba(212,162,63,.18); }


.bs-button:disabled,
.bs-button[aria-disabled="true"] {
    opacity: .48;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
