.wharf-ontap-lozenges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
}

.wharf-ontap-label {
    font-weight: 700;
    font-size: 1rem;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

.wharf-ontap-pill {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(28, 53, 36, 0.85);
    border: 1px solid #d4a843;
    border-radius: 999px;
    color: #d4a843;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.wharf-ontap-pill:hover {
    background: #d4a843;
    color: #1c3524;
    transform: translateY(-1px);
    text-decoration: none;
}

.wharf-ontap-pill:active {
    transform: translateY(0);
}

/* Responsive: stack vertically on small screens */
@media (max-width: 600px) {
    .wharf-ontap-lozenges {
        justify-content: center;
    }

    .wharf-ontap-label {
        width: 100%;
        text-align: center;
        margin-bottom: 4px;
    }
}
