/* Enterprise Buyer Strip - UI-PR-7 */
.buyer-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 185, 129, 0.03);
}

.buyer-strip__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 0;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.buyer-strip__label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.buyer-strip__links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.buyer-strip__link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.buyer-strip__link:hover {
    color: #10b981;
    border-bottom-color: #10b981;
}

.buyer-strip__copy {
    margin-left: auto;
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.buyer-strip__copy:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 820px) {
    .buyer-strip__inner {
        gap: 0.75rem;
    }
    .buyer-strip__links {
        gap: 0.75rem;
    }
    .buyer-strip__copy {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}
