/* CBS Food Hall shared styles */

.cbs-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 0.35rem;
    background: linear-gradient(180deg, #f76707 0%, var(--cbs-accent) 45%, #c44d00 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.35);
    cursor: pointer;
    text-decoration: none;
}

.cbs-btn-primary:hover:not(:disabled) {
    filter: brightness(1.05);
    color: #fff;
}

.cbs-btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.cbs-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--cbs-border);
    border-radius: 0.35rem;
    background: transparent;
    color: var(--cbs-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
}

.cbs-btn-secondary:hover {
    background: var(--cbs-surface-2);
    color: var(--cbs-text);
}

.cbs-page-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cbs-page-header__logo {
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    color: var(--cbs-muted);
    margin-bottom: 0.5rem;
}

.cbs-page-header__title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    margin: 0;
    line-height: 1.15;
}

.cbs-page-header__subtitle {
    color: var(--cbs-muted);
    font-size: 0.85rem;
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cbs-concept-badge {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    border-radius: 0.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.scan-modal-backdrop {
    background: rgba(0, 0, 0, 0.75);
}

.scan-modal-content {
    background: var(--cbs-surface);
    color: var(--cbs-text);
    border: 1px solid var(--cbs-border);
}

.scan-fab {
    position: fixed;
    right: 1rem;
    bottom: 5.5rem;
    z-index: 1035;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    border: none;
    background: var(--cbs-accent);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

@media (min-width: 768px) {
    .scan-fab {
        bottom: 1.5rem;
    }
}

.scan-cart-pill {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5.5rem;
    z-index: 1035;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--cbs-surface);
    border: 1px solid var(--cbs-accent);
    color: var(--cbs-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
    .scan-cart-pill {
        bottom: 1.5rem;
        left: auto;
        right: 5rem;
        transform: none;
    }
}
